Application Development 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: 

Regarding selection text

Former Member
0 Kudos

Hi Experts,

My selection screen code goes like this:

ELECTION-SCREEN BEGIN OF BLOCK A1 WITH frame TITLE text-100.

selection-screen begin of line.

SELECTION-SCREEN POSITION 11.

PARAMETERS: p_pres1 TYPE c RADIOBUTTON GROUP b MODIF ID 001.

selection-screen end of line.

selection-screen begin of line.

SELECTION-SCREEN POSITION 11.

PARAMETERS: p_appl TYPE c RADIOBUTTON GROUP b MODIF ID 001.

selection-screen end of line.

selection-screen begin of line.

SELECTION-SCREEN POSITION 11.

PARAMETERS: p_file TYPE localfile MODIF ID 001 .

selection-screen end of line.

SELECTION-SCREEN END OF BLOCK A1.

The radiobuttons and the filename are getting displayed but their selection texts are not getting displayed alongwith them.

Is it because I have shifted their position.

How to get the selection text displayed at the appropriate position?

Regards,

Sangeeta.

<REMOVED BY MODERATOR>

Edited by: Alvaro Tejada Galindo on Jan 29, 2008 9:43 AM

4 REPLIES 4

Former Member
0 Kudos

Hi,

Did you activate after defining the Selection texts?

Ashok

Former Member
0 Kudos

I think you might have forgot to activate the Text Symbols. Activate them.

Regards,

Satish

Former Member
0 Kudos

Hi Sangeeta,

You need to write one line code for displaying the text:

SELECTION-SCREEN BEGIN OF BLOCK A1 WITH frame TITLE text-100.

selection-screen begin of line.

SELECTION-SCREEN POSITION 11.

PARAMETERS: p_pres1 TYPE c RADIOBUTTON GROUP b MODIF ID 001.

SELECTION-SCREEN COMMENT 12(len) text-001 FOR FIELD p_pres1.

where len is the length of text-001.

selection-screen end of line.

Cheers!!

Lokesh

Former Member
0 Kudos

Write .. selection screen comment ...