Options

TEMPORARY TABLE RECORDS - VIEW ON RTC PAGE

Ravi_ThakkarRavi_Thakkar Member Posts: 392
edited 2011-06-20 in NAV Three Tier
Hello All,

I am having one Codeunit Object in which Temporary Table GLEntryTmp get the Records.
Now, the requirement is to view the Temporary table Records on the RTC Page from the same codeunit.

e.g.

Codeunit:
OnRun()
GetTempTableRecords(GLEntryTmp);
GLEntriesPage.SETTABLEVIEW(GLEntryTmp);
GLEntriesPage.RUNMODAL;

But it is displaying a blank page.

Please, suggest.
Ravi_Thakkar
Ahmedabad, Gujarat, India
E Mail : ravi.thakkar@hotmail.com

Comments

  • Options
    kinekine Member Posts: 12,562
    SETTABLEVIEW is passing only filters, not records...

    What about
    GetTempTableRecords(GLEntryTmp);
    PAGE.RUNMODAL(PAGE::"My Page",GLEntryTmp);
    
    Kamil Sacek
    MVP - Dynamics NAV
    My BLOG
    NAVERTICA a.s.
Sign In or Register to comment.