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

Tablestrip

Former Member
0 Likes
563

Hi experts,

I have a table strip which is containing 3 fields. If one of them is changing then I want to make a search on that value.

So I have a field s_jahr. If it is changing then the program executes a module called m_search.

If I want to use s_jahr in the module itself it doesn't recognize s_jahr. How can I pass the value of the screen field (s_jahr) into the module?

1 ACCEPTED SOLUTION
Read only

RaymondGiuseppi
Active Contributor
0 Likes
527

Declare s_jahr in the common global data include (-TOP) of the main module/function group program. (Declare some structures, include in TOP, with all fields of your screen so the dynpro and program may communicate through these structure)

Regards

3 REPLIES 3
Read only

RaymondGiuseppi
Active Contributor
0 Likes
528

Declare s_jahr in the common global data include (-TOP) of the main module/function group program. (Declare some structures, include in TOP, with all fields of your screen so the dynpro and program may communicate through these structure)

Regards

Read only

Former Member
0 Likes
527

I guess you mean table control and not table strip.

You will have the value in the screen field name you have defined for s_jahr in the screen. Also make sure that you have declared that field in your program as well.

i.e s_jahr is the name of the screen field, then s_jahr should also be declared in your program.

regards,

Advait

Read only

Former Member
0 Likes
527

Thanks