‎2005 Nov 23 6:52 AM
Hi all
Following is the selection screen code through which I am trying to assign dynamic parameter name to PARAMETERS, but it is giving sytax error.
SELECTION-SCREEN BEGIN OF BLOCK B WITH FRAME.
Loop at i_text.
CHKIDX = SY-TABIX.
CONCATENATE 'CHKTEXT' chkidx into CHKTXT.
condense chktxt no-gaps.
ASSIGN (chktxt) TO <char>.
PARAMETERS: <char> AS CHECKBOX DEFAULT 'X'.
endloop.
SELECTION-SCREEN END OF BLOCK B.
Please advice whether i can define dynamic parameter in selection screen.
Thanks
Ravindra Suvarna
‎2005 Nov 23 6:57 AM
you cant define dynamic txt for labeling the parameter in selection screen..but there is another way out..
you can declare all the required parameter on screen, but make visible only those which r required in that perticular condition or user action..
Message was edited by: Anid
‎2005 Nov 23 7:27 AM
hi,
pls look F1 for :
SELECT-OPTIONS sel FOR (f).
Andreas