There is a requirement from my one of my reader.
Today I will discuss on how we can dynamically open page by using table ID only.
As you are aware to open Page we require PageID and Table record.
PAGE.RUN(Number [, Record] [, Field])
For this we will use RecordRef and minimum requirement is table have Page ID for Lookup and Drilldown defined else we will get error when try to open the page.
Create a Function name it say ShowRecords.
Define 2 Variables as:
Name rRef
DataType RecordRef
Name varRecRef
DataType Variant
We require VARIANT because PAGE don’t accept RecordRef datatype.
PAGE.RUN(Number [, Record] [, Field])
Also define Parameter to the function to receive Table ID.
In function you write below code:
rRef.CLOSE;
CLEAR(rRef);
//rRef.OPEN(No [, Temp] [, CompanyName])
rRef.OPEN(TableID,FALSE,COMPANYNAME);
//You can apply filters also if required before accessing the Page
varRecRef := rRef;
//PAGE.RUN(Number [, Record] [, Field])
PAGE.RUN(0,varRecRef);
Now where you require you can call your function as ShowRecords(18)
This will Open Customer List Page to show the records from table.
I will show good use of same in my upcoming post. One use can be to design Navigate Page but few limitations will apply, wait for my next post.
That’s all for this post, I will come up with more details in my upcoming posts, till then keep exploring and learning.