Hello, i don't understand of what is going on with syntax of "CALL DIALOG" in my code base.
Code look like:DATA status1(1) TYPE C.
DATA status2(1) TYPE C.
status1 = 'U'.
status2 = 'U'.
CALL DIALOG 'FM_ANZEIGE' EXPORTING foo FROM t1-foo status1 status2.
my question is: what is the purpose for status1 status2.
I have not found it in documentation for CALL DIALOG keyword https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-us/abapcall_dialog.htmsyntax of exporting is like this EXPORTING p1 FROM a1 p2 FROM a2 ... no aditional for status1 etc.