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: 

how to move the subscreen popup screen values to the the same screen?

Former Member
0 Kudos

Hi Guys,

when i click CREATE in screen 200 it will open the screen 300 and there is a popup screen is there on the application toobar and it has the values.

In the screen 300 there are 2 fields which needs to be filled up with the values of the popup screen values.

can anybody suggest me about the coding please?

Thanks

2 REPLIES 2

Former Member
0 Kudos

HI,

supose you have two fields X and Y in screen 200 and in 300 you have another field Z from screen 300 you want to pass the value of z to X and you want to pass square of Z to Y if user clicks on a pushbutton say 'PASS'. then in PAI of 300 write..

CASE OK_CODE.

when 'PASS'.

X = Z.

Y = Z ** 2.

CALL SCREEN 200.

ENDCASE.

It will populate the value into 200 and screen 200 will be called.

Hope it's cleared. If doubt revert back..

<b>Kindly reward points for helpfull answers.</b>

Thanks and Regards

Tanweer Zaki

Former Member
0 Kudos

i got the answer from previous blogs