I have a table as C:\TEMPFILES\abc and I passed my table data into a cursor like this.
And then I used my table and passed some records to another table.
And I used these codes.
when I run my form I got this error.
'_ACPGRN' must be created with INSERT...INTO TABLE
What is this and how can I fix this?
Code:
SELECT * FROM abc INTO CURSOR _ACPgrn
And then I used my table and passed some records to another table.
Code:
SELECT cUser,cBatchNo,cFact ,cSupplier,cType, cAdNumber , dAdDate ,cPayNumber , cBatchCurr ,nAdValue FROM C:\TEMPFILES\abc ;
GROUP BY cUser,cBatchNo,cFact ,cSupplier,cType, cAdNumber , dAdDate ,cPayNumber , cBatchCurr ,nAdValue INTO CURSOR ACP
And I used these codes.
Code:
SELECT * FROM _ACPgrn INTO TABLE C:\TEMPFILES\BatchV
SELECT nBatchId,cBatchNo FROM BatchV GROUP BY nBatchId,cBatchNo INTO CURSOR _Batchv
when I run my form I got this error.
'_ACPGRN' must be created with INSERT...INTO TABLE
What is this and how can I fix this?