method initialize
AT SELECTION-SCREEN ON VALUE-REQUEST FOR abc.
me->GET_FILE_NAME_PRESENTATION(
CHANGING
abc = abc)
endmethod.
I call the above method as
obj->initialize
changing
abc
I get error as statement endmethod missing.Can we not use at selection-screen statement inside a method?