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

parameter beside a radiobutton

SwarnaliBasu
Participant
0 Likes
2,483

HI

I have a radio button group, is there anyway by which I can insert a paramater just next to the radiobutton?

PARAMETERS:P_NONE RADIOBUTTON GROUP LOG DEFAULT 'X', "None

P_MPAY RADIOBUTTON GROUP LOG, "Missing payment card details

P_DATE LIKE FPLTC-DATBI, "Choose a Date for expiry

P_EPAY RADIOBUTTON GROUP LOG, "Expired payment cards

P_DDATE RADIOBUTTON GROUP LOG. "Material delivery date beyond

here I want the P_date should come beside P_epay and not above.

Please help

HI

I have a radio button group, is there anyway by which I can insert a paramater just next to the radiobutton?

PARAMETERS:P_NONE RADIOBUTTON GROUP LOG DEFAULT 'X', "None

P_MPAY RADIOBUTTON GROUP LOG, "Missing payment card details

P_DATE LIKE FPLTC-DATBI, "Choose a Date for expiry

P_EPAY RADIOBUTTON GROUP LOG, "Expired payment cards

P_DDATE RADIOBUTTON GROUP LOG. "Material delivery date beyond

here I want the P_date should come beside P_epay and not above.

Please help

11 REPLIES 11
Read only

Former Member
0 Likes
1,967

Try like this:

SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS : P_DATE LIKE FPLTC-DATBI.

PARAMETERS: P_EPAY RADIOBUTTON GROUP LOG.

SELECTION-SCREEN END OF LINE.

Read only

Former Member
0 Likes
1,967

Try this.


PARAMETERS: p_none RADIOBUTTON GROUP log DEFAULT 'X', "None
            p_mpay RADIOBUTTON GROUP log. "Missing payment card details

SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(10) text1.
SELECTION-SCREEN POSITION 15.
PARAMETERS: p_epay RADIOBUTTON GROUP log . "Expired payment cards

SELECTION-SCREEN COMMENT 25(10) text2.
SELECTION-SCREEN POSITION 35.
PARAMETERS: p_date LIKE fpltc-datbi. "Choose a Date for expiry
SELECTION-SCREEN END OF LINE.

PARAMETERS: p_ddate RADIOBUTTON GROUP log. "Material delivery date beyond

INITIALIZATION.
text1 = 'epay'.
text2 = 'edate'.

Edited by: Manish Kumar on Jun 24, 2010 11:15 AM

Read only

0 Likes
1,967

HI Manish

If I try this option , the output comes as

epay 'radiobutton symbol ' edate'text box'

but the output should be

'radiobutton symbol' epay edate 'text box'

I hope u understand

Read only

0 Likes
1,967

Hi Swarnali,

For this,

GOTO Tcode se51, Give the program name and screen number as 1000.

Click on the Layout.

Then adjust the selection screen fields as you like and activate it.

Now,

Goto to Tcode. se38 and click on F8.

Here, you can see the changed selection screen.

Regards,

Md Ziauddin.

Read only

0 Likes
1,967

HI

This solution completely changed the layout as the selct options right side button vanishes,please help.

Read only

0 Likes
1,967

user this code its work

PARAMETERS:P_NONE RADIOBUTTON GROUP LOG DEFAULT 'X', "None

P_MPAY RADIOBUTTON GROUP LOG, "Missing payment card details

P_DATE LIKE FPLTC-DATBI. "Choose a Date for expiry

SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS: P_EPAY RADIOBUTTON GROUP LOG. "Expired payment cards

selection-screen comment 10(5) text-001.

PARAMETERS:P_DDATE RADIOBUTTON GROUP LOG. "Material delivery date beyond

selection-screen comment 30(5) text-001.

SELECTION-SCREEN end OF LINE.

Read only

Former Member
0 Likes
1,967

Hi,

You can try to implement the logic like this it will work.

PARAMETERS:P_NONE RADIOBUTTON GROUP LOG DEFAULT 'X', "None

SELECTION-SCREEN:POSITION 3.

SELECTION-SCREEN:COMMENT (25) text-xxx, POSITION 28.

PARAMETERS P_DATE LIKE FPLTC-DATBI.

Thanks,

Preetham

Read only

SwarnaliBasu
Participant
0 Likes
1,967

Thanks MD ZIAUDDIN, it solved my problem

Edited by: swarnali_IBM on Jun 24, 2010 11:46 AM

Read only

0 Likes
1,967

Hi Swarnali,

Don't change the screen layout directly.

Generate your program and check ur changes again.

Read only

SwarnaliBasu
Participant
0 Likes
1,967

solution changes the GUI completely. so not resolved

Read only

Former Member
0 Likes
1,967

Moderator message - Please do not ask or answer basic questions - thread locked Rob