‎2007 Aug 27 6:47 AM
‎2007 Aug 27 6:49 AM
Goto the Screen layout & drag the radio buttons on screen. Assign them name & a group. Group should be same for both the radio buttons. Activate the screen.
‎2007 Aug 27 6:51 AM
‎2007 Aug 27 6:55 AM
hi,
try like this.
goto screen -> drag and drop radio buttons and activate ->
goto flow logic -> decomment PBO event -> double click -> declare in pbo event or if u want to use globally then declare in TOP INCLUDE as
parameters: r1 type radiobutton group g1,
r2 type radionbutton group g1.
...................
if helpful reward some points.
with regards,
Suresh Aluri.
‎2007 Aug 27 7:00 AM
‎2007 Aug 27 6:59 AM
HI,
Assign some function code to the radio button.
LOOP AT SCREEN.
if rad1 = 'X'.
if SCREEN-NAME = 'FIELD3' OR SCREEN-NAME 'FIELD4'.
screen-input = 0.
modify screen.
endif.
if SCREEN-NAME = 'FIELD1' OR SCREEN-NAME 'FIELD2'.
screen-input = 1.
modify screen.
endif.
ENDLOOP.
LOOP AT SCREEN.
if rad2 = 'X'.
if SCREEN-NAME = 'FIELD3' OR SCREEN-NAME 'FIELD4'.
screen-input = 1.
modify screen.
endif.
if SCREEN-NAME = 'FIELD1' OR SCREEN-NAME 'FIELD2'.
screen-input = 0.
modify screen.
endif.
ENDLOOP.
Regards,
ravish
<b>plz dont forget to reward points if helpful</b>
‎2007 Aug 27 7:02 AM
Hi Mahesh..
<b> In the Screen Painter :</b>
Create two Radionbuttons on the Screen (names: RB1, RB2).
To Group the Radio buttons Select the Radiobuttons by dragging around them.
Menu path: Edit->Grouping->Radiobutton group->define.
This will group the Radio buttons.
<b>In TOP include:</b>
Declare variables for radiobuttons.
DATA: RB1, RB2.
<b>In module pool:</b>
Checking the Value of Radiobutton.
CASE 'X'.
WHEN RB1.
WHEN RB2.
ENDCASE.
<b>Reward if Helpful</b>
‎2009 Nov 17 8:12 AM
‎2007 Aug 27 7:05 AM
Hi
If you need to do an join between severals tables, you should create a views with these tables.
So if you have:
SELECT * FROM VBAK WHERE VBELN IN S_VBELN.
SELECT * FROM VBAP WHERE VBELN = VBAK-VBELN.
...........................................
U can create Z_ORDERS_VIEW using VBAK and VBAP and your statament will be:
SELECT * FROM Z_ORDERS_VIEW WHERE VBELN IN S_VBELN.
Max
reward points if helpful
‎2007 Aug 27 7:07 AM
Hi
Click on the Radio Button Icon and Click on the Screen.
Create at least two Radio Buttons
Name the Radio Buttons and Activate it.