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: 

module pool sample

Former Member
0 Kudos

Hi all.

i am taking

O Customer |___________|
O Material |___________|
   
    |Display|

<b>my questions are</b>.

<b>1)</b> if i select Customer radio button, the textbox for material has to be invisible. if i select Material radio button, the textbox for customer has be invisible.

<b>2)</b> in the module pool, while checking sytax warning me about the radio button unkown, the textbox unkown.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi,

to avoid that first delare the variables in your program , activate ur program and then one button will be there in your screen to import the variables from your program to screen , click that and import radio buttons to screen

2 REPLIES 2

gopi_narendra
Active Contributor
0 Kudos

in the PBO of screen write a module as below

if radiobtn1 = 'X'

loop at screen.

if field-name = 'textbox2.

screen-input = 0.

modify screen.

endif.

endloop.

similarly use it for the second condition also

Former Member
0 Kudos

hi,

to avoid that first delare the variables in your program , activate ur program and then one button will be there in your screen to import the variables from your program to screen , click that and import radio buttons to screen