Announcements
Hi all,
How do I create a page table and add the query in? Then, how do I deploy it to the Nav client?
Pls help.
Thank you.
*This post is locked for comments
Create your query, then create a table with the fieds of your query and a list page based on this table. On this list page, create a global variable that points to your query object. On this page, set SourceTableTemporary to Yes.
Then, in OnOpenPage, open the query and load the data into the temporary table:
YourQuery.OPEN;
WHILE YourQuery.READ then
begin
//assign the fields from the query to the table
INSERT;
end;
FINDFIRST; //returns to the first record.
The table you create acts only as a buffer, this is not counted on customer's license (it's temporary).
Hi ,
Are you trying to create a Role center ?
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our community stars!
Expanding mentorship, skilling, and AI innovation
These are the community rock stars!
Stay up to date on forum activity by subscribing.