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: 

SET and GET statements

Former Member
0 Kudos

Hi,

In Program RM07MCHW, there is a statement 'GET PARAMETER ID 'ZUP' FIELD do_modify.'. I am trying to see where 'ZUP' is getting SET.

Please help me out in finding how I can figure SET statement for corresponding GET statement.

Thanks,

Savitha

3 REPLIES 3

former_member188685
Active Contributor
0 Kudos

That parameter will be set in the user profile

in THE PARAMETERS tab.

It is for modification purpose.

But that parameter id is not Exists actually.

former_member70391
Contributor
0 Kudos

Hi Savitha,

It is stored in table TPARA.

Example:

REPORT ZTEST01.

data: d_tot(10) type C value '30'.

set parameter id 'ZZZ' field d_tot.

-


REPORT ZTEST02.

data: do_tot(10) type c.

get parameter id 'ZZZ' field do_tot.

write: do_tot.

former_member188685
Active Contributor
0 Kudos

Which ever program calls the program RM07MCHW

using submit option.

in that we have to set that parameter

set parameter id 'ZUP' field falg.