Options

Page filter through Code in RTC

gemini_shootergemini_shooter Member Posts: 149
edited 2010-12-22 in NAV Three Tier
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 Page

Questions
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

  • Options
    elrobertoelroberto Member Posts: 11
    create a record var for the source table of the page you want to open.
    filter the rec the way you want and run the page with the record.
    MyNewRec.SETRANGE("No.","Job No.");
    IF MyNewRec.FIND('-') THEN
      PAGE.RUN(PAGE::"The Name of your Page",MyNewRec);
    
  • Options
    gemini_shootergemini_shooter Member Posts: 149
    Thanks :D
Sign In or Register to comment.