Has anybody a solution for this ? I have a Single Instance - Codeunit with a global temporary Record. Because i want to show its content in a Subform I cannot use the standard way with FORM.RUN […] to show a tabular list based on the temporary Record. I tried to to assign the temporary record to “Rec” in the Initialization-Part of the Form but it always shows me the content of the Table and not of my temporary Record. I also tried to assign it first to a local temporary Record in the form and then to Rec (I tried it with “:=” and with “Rec.Copy()” !) but this doesn’t work, too [:(]
It works if you use FORM.RUNMODAL…