Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Copying the current field-values in vars and storing their content in a newly created records
But in the other hand it takes some more effort to retrieve the contents from this 'array'.
Local loCust
Scatter name loCust
With loCust
Insert into customer (cust_id, Company, Contact) ;
values ("New", .company, .contact)
endwith
LOCAL loCust
SCATTER NAME loCust
REMOVEPROPERTY(loCust, "CustID")
INSERT INTO Customer FROM NAME loCust
But pls. explain that "New"-value
for primairy key I use to have integers.
LOCAL loCust
SCATTER NAME loCust FIELDS Company, Contact
INSERT INTO Customer FROM NAME loCust