QCTestResult1.INIT; QCTestResult1."Test Certificate No":="Test Certificate No"; QCTestResult1."GRN No.":="GRN No."; QCTestResult1."Line No.":="Line No."; QCTestResult1."Item No.":="Item No."; QCTestResult1."Parameter Code":="Parameter Code"; QCTestResult1."Test Method Code":="Test Method Code"; QCTestResult1."Parameter Name":="Parameter Name"; QCTestResult1."Test Method Name":="Test Method Name"; QCTestResult1.Specification:=Specification; QCTestResult1.Result:=Result; QCTestResult1.Approved:=Approved; QCTestResult1.Rejected:=Rejected; QCTestResult1.INSERT(TRUE);[code]where QCTestResult is record variable of that table in which data want to store of page.problem is that one one line data pull not multiple line of page how we can get all lines from page into table.
Answers
Where is Repeat Until then?
All table columns are same?
Blog - rockwithnav.wordpress.com/
Twitter - https://twitter.com/RockwithNav
Facebook - https://facebook.com/rockwithnav/
table have same column as pages
What type of page do you have?
Do you have a repeater on that page, or how else is the data on your page relevant to more than one record to be modified?
Does your page have SourceTableTemporary=Yes?
Maybe tell us more about your use case and how you intended to go about it.
i have created one table (QC Test Result) in which i have to store data came from page.i have added same field in table.
i have created custom page .page having action (approved)on click of action data from page shown have to transfer to table.
if i used code without repeater it will send data but only single line from page.
if i used repeat..untill then it not sending data at all.
now i want send all lines from page to table.