2010 Jun 24 9:57 AM
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
2010 Jun 24 10:07 AM
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.
2010 Jun 24 10:14 AM
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
2010 Jun 24 10:25 AM
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
2010 Jun 24 10:35 AM
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.
2010 Jun 24 1:10 PM
HI
This solution completely changed the layout as the selct options right side button vanishes,please help.
2010 Jun 24 10:19 AM
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.
2010 Jun 24 10:29 AM
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
2010 Jun 24 10:45 AM
Thanks MD ZIAUDDIN, it solved my problem
Edited by: swarnali_IBM on Jun 24, 2010 11:46 AM
2010 Jun 24 11:33 AM
Hi Swarnali,
Don't change the screen layout directly.
Generate your program and check ur changes again.
2010 Jun 24 1:11 PM
2010 Jun 24 3:24 PM
Moderator message - Please do not ask or answer basic questions - thread locked Rob
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |