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

module pool sample

Former Member
0 Likes
391

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
Read only

Former Member
0 Likes
366

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
Read only

gopi_narendra
Active Contributor
0 Likes
366

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

Read only

Former Member
0 Likes
367

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