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: 

Ho w to get values from Dialogue program screen.

senthil_kumar29
Participant
0 Kudos

Hello Friends,

I am calling a pop up window as a dialog screen and getting few values from it.

How to get the values for this screen fields in main program.

Cheers,

Senthil

4 REPLIES 4

Former Member
0 Kudos

Hi,

Provide some parameter id for the field in the screen element properties, Tick the checkboxes set/get parameters.

Use GET PARAMETER PARAMETER ID .... and pass to a variable.

Regards,

Satish

0 Kudos

Hi Thank you Ur answer.

am using SET n GET Parameter to access input values from a screen. But when I use it, the values are not transfered back n forth. Getting initial values.

Your expertise would be appreciated.

Cheers,

Senthil

Former Member
0 Kudos

Hi Senthil,

If u r using internal table for populating data into screen.The values are present in the internal table itself.U have to use internal table directly in ur program.

If u r using database fields in the screen.We have to SELECT query to retrive those values.

Award points if helpful.

Kiran Kumar.G

+ Have a Nice Day..+

Former Member
0 Kudos

Hi,

If you have used fields from an SE11 table/structure then, in top include,

tables: <tablename>.

then you will be able to get the values automatically to the table fields..

like if you have used field1 on the screen from the table tab1, then the value will be available in

tab1-field1 at runtime.

If you are using an input fiedl other than from table, then in top include declare a varible with the same name of the input field. you will get the value there.

Regards,

Renjith Michael.