‎2009 Jan 23 7:05 AM
how do i inrease the number of characters in variable name of selection screen.... default is 8..
‎2009 Jan 23 7:14 AM
Hi Kumar,
You can't increase the number of characters.
8 is the maximum number not a default number.
Best Regards,
Victor.
‎2009 Jan 23 7:15 AM
‎2009 Jan 23 7:25 AM
srry...actually its the label... can the lenght of the label be changed?
‎2009 Jan 23 7:27 AM
hi,
use the below statements..
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(33) text-s06.
PARAMETERS: p_ifile TYPE rlgrap-filename OBLIGATORY. "Input file name
SELECTION-SCREEN END OF LINE.
‎2009 Jan 23 7:27 AM
‎2009 Jan 23 7:33 AM
Hi,
Selction-screen element's label you can have max "30 Char" .
so goto>selection texts> <give the max 30 char label>
Regards,
Neha
‎2009 Jan 23 7:28 AM
hi,
u can use comment in selectio screen
PARAMETERS : px_freml AS CHECKBOX.
SELECTION-SCREEN: COMMENT 5(27) text-100 FOR FIELD px_freml.
‎2009 May 10 2:53 PM