Hi,
How do I click on radiobutton p_app and cause the p_lfile open field grey out? and click p_pre radiobutton and cuase the p_afile open grey out?
My current code does not work.
Thanks,
Helen
SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
PARAMETERS : p_app RADIOBUTTON GROUP g1 DEFAULT 'X'
USER-COMMAND run,
p_pre RADIOBUTTON GROUP g1.
SELECTION-SCREEN : END OF BLOCK b1.
Block for Application / Presentation server File input Parameter
SELECTION-SCREEN : BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
PARAMETERS : p_afile TYPE rlgrap-filename,
p_lfile LIKE rlgrap-filename.
SELECTION-SCREEN : END OF BLOCK b2.