Can anyone help me! ](*,)
When someone runs a form, they have the possibility to print a report. They get a window where they can set a filter. Does anyone know how to set a default value for that filter. (default value = current record in the form)
0
Comments
VarRec.SETFILTER(...);
...
VarRec.SETFILTER(...);
REPORT.RUN(NumReport,Bool1,Bool2,VarRec);
Can I use something like NaamReport.RUN(...); or NaamReport.RUNMODAL();
with NaamReport = C/AL Globals > NaamReport + Datatype:Report + Subtype: my report
recordnaam.SETFILTER(...);
reportnaam.SETTABLEVIEW(recordnaam);
...
reportnaam.RUN();
Thx for your help