Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

selection-screen

Former Member
0 Likes
471

Hi ,

In SELECTION-SCREEN, is it not possible to add two COMMENT statements between BEGIN OF LINE and END OF LINE.

Thanks & Regards

Santhosh

3 REPLIES 3
Read only

Former Member
0 Likes
449

Hi,

SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN POSITION 1.
SELECTION-SCREEN COMMENT (10) text-401.
SELECTION-SCREEN POSITION 33.
PARAMETERS:     p_woche LIKE s076-spwoc.  
SELECTION-SCREEN POSITION 60.
SELECTION-SCREEN COMMENT (10) text-301.
PARAMETERS: p_aend  RADIOBUTTON GROUP gru5.
SELECTION-SCREEN END OF LINE.

This should work fine. Try this out !!!

Read only

Former Member
0 Likes
449

HI Santosh

Ya u can add..check this sample coding

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT (10) text-401.

PARAMETERS: werks LIKE p-werks.

SELECTION-SCREEN POSITION 50.

SELECTION-SCREEN COMMENT (10) text-301.

PARAMETERS: p_bukrs RADIOBUTTON GROUP group1.

SELECTION-SCREEN END OF LINE.

Reward Me Points

By

Pari

Read only

Former Member
0 Likes
449

hi check this..like this you can give two statements and the length must be important here ...if the length is small we can give two three....

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(15) text-003.

SELECTION-SCREEN POSITION 17.

PARAMETER: p_appsvr DEFAULT 'X' RADIOBUTTON GROUP radi

USER-COMMAND file.

SELECTION-SCREEN COMMENT 20(20) text-001.

*--Download to Presentation server

SELECTION-SCREEN POSITION 17.

PARAMETER: p_presvr RADIOBUTTON GROUP radi.

SELECTION-SCREEN COMMENT 20(20) text-002.

SELECTION-SCREEN END OF LINE.

reagrds,

venkat .