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: 

Pop Up Input Screen

Former Member
0 Kudos

Hi Experts,

I have this requirement:

Scenario: I have one table control, with two radio buttons say R1 and R2.

a) When R2 is selected, a button outside the table control should get activated.

b) On Click of that button, a POP-UP screen (Input Screen), which will be similar to a table

control should get displayed in order to take more inputs from the user. The Pop-Up Screen

will contain only two fields.

Please share your experience and suggest me the solution.

Thanks,

Chandan

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Chandan,

In PBO

-


If R1 = 'X'

LOOP at screen.

if screen-name = 'Your field"

Screen-Input = 0.

Screen-Invisible = 1.

Modify Screen.

Endloop.

-


IN PAI

-


Chain

FIELD R1.

FIeld r2.

Module Call_same_screen_again.

ENDCHAIN on chain-request.

-


Try this code hope it will solve your problem.

hope this will solve your problem.

cheers,

Suvendu

2 REPLIES 2

Former Member
0 Kudos

Hi Chandan,

In PBO

-


If R1 = 'X'

LOOP at screen.

if screen-name = 'Your field"

Screen-Input = 0.

Screen-Invisible = 1.

Modify Screen.

Endloop.

-


IN PAI

-


Chain

FIELD R1.

FIeld r2.

Module Call_same_screen_again.

ENDCHAIN on chain-request.

-


Try this code hope it will solve your problem.

hope this will solve your problem.

cheers,

Suvendu

Former Member
0 Kudos

Upon the click of radio button, you can enable or disable the screen fields by looping the screen and settign the parameters active / inactive.

For a popup screen, you can use a subscreen and call it.