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

Screens

Former Member
0 Likes
1,317

I must use the field from one screen structure to write code in another screen module program.what should I do for that?

I must use the field from one screen structure to write code in another screen module program.what should I do for that?

9 REPLIES 9
Read only

Former Member
0 Likes
1,296

Hi,

Declare a variable in the TOP include of the program, in the screen Move the Field value to the variable which you declared in the TOP include, so this value will available every where, so in another screen using this variable you can write the logic ..

Regards

Sudheer

Read only

0 Likes
1,296

Where is the TOP include of the program ? Can U help me?

Read only

0 Likes
1,296

Check where all the data declaration are done. It might be a include too.

Is it a standard program?

Regards,

Prakash.

Read only

0 Likes
1,296

Yes it is a Standard program.

WHAT DO I DO NOW?

Read only

0 Likes
1,296

What is that program name?

Regards,

Prakash.

Read only

0 Likes
1,296

Can You please give me your email so that I can mention it in detail to you and I will post the full points for you.

Thank you

Read only

0 Likes
1,296
Read only

0 Likes
1,296

Thanks Prakash.

Please check your mail.

Read only

Former Member
0 Likes
1,296

Hi,

screen 100.

use

export itab to memory id 'TEST'.

screen 200

import itab from memory id 'TEST'.

itab should of same type and length in both emport and

export

Regards

amole