I am designing a simple list page which links a custom list records to a job. So it is a custom table with the follow fields:
Job No. --> Look up to Job Table
Doc No. --> Text type field
I have a button to open this table but it only should open if a Boolean field (Setup Documents) is true on Job card. When you open it should should only the records for that job.
So setting this logic in classic was successful,
but I am facing a challenge in RTC
So in RTC on the On Action of the new button, I coded this:
IF NOT IsSetupDocuments THEN BEGIN
ERROR(ltxt001);
END ELSE BEGIN
CLEAR(lpagJobDocs);
lpagJobDocs.RUN;
END;
-- IsSetupDocuments is a function that returns the Boolean field (Setup Documents)-- lpagJobDocs is a local page variable on the OnAction Trigger of the Job PageQuestions
1. Is the above a good way to call a page using a local variable record?
2. How can I filter the records on the page for that particular job?
Comments
filter the rec the way you want and run the page with the record.