‎2007 Oct 03 9:45 PM
Hi Gurus,
I have written the following code:
************************************************************************
Selection Screen *
************************************************************************
selection-screen begin of block b1 with frame title text-001.
parameters: p_ifname like rlgrap-filename obligatory.
selection-screen end of block b1.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_ifname.
CALL FUNCTION 'F4_FILENAME' "allows user to select path/file
EXPORTING
program_name = 'z_prog'
dynpro_number = syst-dynnr
field_name = 'p_ifname'
IMPORTING
file_name = p_ifname.
but I am getting the following syntax error " <b>"TYPE LINE" or "LIKE LINE" expected, not "BEGIN" . . . . . </b> "
Can you please help me to resolve this issue.
Thanks
Rajeev Gupta
‎2007 Oct 03 9:48 PM
You have probably left off a period at the end of the line just preceding the code you posted.
Rob
‎2007 Oct 03 9:48 PM
You have probably left off a period at the end of the line just preceding the code you posted.
Rob