‎2008 Aug 29 1:38 PM
Hi All,
I requre help for displaying a parameter of visible length 75 characters in selection screen. By default it is displaying 45 characters.
Thanks in advance.
Regards,
Rohit Goel
‎2008 Aug 29 1:41 PM
Hello,
Use the line screen element to do it. Follow an example and you can get the positions like described in the SAP Help Documentation
SELECTION-SCREEN: BEGIN OF LINE,
PUSHBUTTON 2(10) push USER-COMMAND fcode,
POSITION 16.
PARAMETERS para TYPE c LENGTH 20.
SELECTION-SCREEN: COMMENT 40(40) text,
END OF LINE.
INITIALIZATION.
push = 'Push'.
text = '<--- Fill field, then push button!'.
Regards.
‎2008 Aug 29 1:49 PM
Hi Dude,
Try This Syntax,
PARAMETERS: p1 length 75 TYPE c.
Hope this helps u.
‎2008 Aug 29 2:08 PM
Hi,
DATA: w_test(150) TYPE c.
PARAMETERS: p_test LIKE w_test VISIBLE LENGTH 150.Regards
Adil