when i transform a form of particular customer the No. field of customer should be updated in filter page of report....
Can anyone help me ,....
I have attached the screenshots of those
When calling a report from a form, first create a variable for the table and set a filter on the customer no.
Is it the customer table that is the primary table for the report? If so, it would look something like:
Cust.RESET;
Cust.SETRANGE("No.",custno);
Cust.FINDFIRST;
Report.RUNMODAL(reportno,TRUE,FALSE,Cust);
Answers
Is it the customer table that is the primary table for the report? If so, it would look something like:
Cust.RESET;
Cust.SETRANGE("No.",custno);
Cust.FINDFIRST;
Report.RUNMODAL(reportno,TRUE,FALSE,Cust);
I tried you code but i get the error message as follows,
after trying that code i get the following error can anyone suggest me a suitable way for that........
Thanks