Recieving form gets no records

rodrigopuelmarodrigopuelma Member Posts: 15
When the function Entry - G/L Dimension Overview is called from Form 20 the opening form 563 recieves an empty Rec.
I debugged and just before running FORM.RUN(FORM::"G/L Entries Dimension Overview",Rec) the variable Rec has 90 rows.
When I enter Form 563 the variable Rec there is empty. Any ideas?

Comments

  • rodrigopuelmarodrigopuelma Member Posts: 15
    I can add that the difference I see in the code when debugging is that the filter in variable Rec has the field G/L Account No in Form 20 but when the code enters Form 563 the filter value is gone.
  • krikikriki Member, Moderator Posts: 9,110
    Form 563 has property SourceTableTemporary=Yes, that means it shows data from a temptable and NOT from the real table.
    If you want to show data, you must first fill up a temptable with the records you want to see and then run the form with that temptable : FORM.RUN(FORM::"G/L Entries Dimension Overview",GLEntryTemp);
    Regards,Alain Krikilion
    No PM,please use the forum. || May the <SOLVED>-attribute be in your title!


Sign In or Register to comment.