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: 

Doubt on Radiobutton Text

Former Member
0 Kudos

Hi Friends,

I have copied the Selection screen text from a Standard program with the standard text startng with "%ALV". i copied the same program into a Z program and copied also the selection screen text.but that radio button text is not dislayed in the output..

5 REPLIES 5

SantoshKallem
Active Contributor
0 Kudos

SELECTION-SCREEN:BEGIN OF LINE.

SELECTION-SCREEN COMMENT 3(35) TEXT-001.

PARAMETERS P_MPN RADIOBUTTON GROUP GR1.

SELECTION-SCREEN: END OF LINE.

double click on text-001, and write the text for it

regards.

santhosh reddy

Former Member
0 Kudos

Hi,

Check your text elements are activated.double click and see the text elements. if they are in inactive then it will not display the texts. and if they are in inactive then activate it.

and re run it and see.

Regards,

Omkar.

Former Member
0 Kudos

Hi,

In the application tool bar goto GOTO -


>text elements---> selection texts. Make the changes there.

U will get the odescription of radiobutton in the selection screen.

Regards,

Subha.

Former Member
0 Kudos

hi

after copying a program that text elemnts data won't refelect in that new program (copied )

go to that standard program and in utilities u will find text element data copy that data and past it in ur copied program

then it will display the values

i think for radiobuttons it will be like this

********SELECTION SCREEN DESIGN ***********

SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.

PARAMETER : P_WERKS LIKE MARC-WERKS MODIF ID S1.

SELECT-OPTIONS : S_EBELN FOR EKKO-EBELN NO INTERVALS MODIF ID S2.

SELECTION-SCREEN END OF BLOCK B1.

SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-004.

SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS : R1 RADIOBUTTON GROUP G1 DEFAULT 'X'.

SELECTION-SCREEN COMMENT 5(20)<b> TEXT-002</b> FOR FIELD R1.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS : R2 RADIOBUTTON GROUP G1.

SELECTION-SCREEN COMMENT 5(20) <b>TEXT-003</b> FOR FIELD R2.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN END OF BLOCK B2.

******END OF SELECTION SCREEN DESIGN****************

in copied program these values also not reflect you need double clcik these text and define here in new program

also

former_member186077
Active Participant
0 Kudos

goto -> Selection texts->against the name of the radio button field check if the description is present or not.

Regards,

Sriranjani.