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

set parameter ID and Get Paramter ID

Former Member
0 Likes
1,926

Hi

I am doing module pool program.In which i am using set parmeter id and get parameter id to get the value in my table control.

each time when i use set parameter ID i shd get the value and it is inserting in table control, when i try for the scond time for set ID it is taking the new value

my Query is

if i use the Set ID fst time it shd insert the value in fst line of tc and got clear and for scond time it shd take latest value and insert in second line

Please suggest me wat to do.

Regards

Rasheed

Hi

I am doing module pool program.In which i am using set parmeter id and get parameter id to get the value in my table control.

each time when i use set parameter ID i shd get the value and it is inserting in table control, when i try for the scond time for set ID it is taking the new value

my Query is

if i use the Set ID fst time it shd insert the value in fst line of tc and got clear and for scond time it shd take latest value and insert in second line

Please suggest me wat to do.

Regards

Rasheed

5 REPLIES 5
Read only

Former Member
0 Likes
1,219

Dear Rasheed,

1)

2) example in interactiv lists:

SET PARAMETER ID 'BLN' FIELD refbn.

SET PARAMETER ID 'BUK' FIELD refbk.

SET PARAMETER ID 'GJR' FIELD refgj.

CALL TRANSACTION 'FB03' AND SKIP FIRST SCREEN.

Regards,

Flavya

Read only

0 Likes
1,219

Hi Flavya ,

Thanks for ur link,I think u didnt understand my question properly.

I know how to write the code which u had given to me.

Thanks

Read only

Former Member
0 Likes
1,219

Hi Rasheed,

In my opinion since Parameter IDs are defined on Data element level it may not be possible to fill different values at diffferent places for the same variable. If i understand correctly you wish to fill one by one table control each time you do a SET parameter ID.

Probably you can add logic of your own to store these values in an internal table to display.

Read only

0 Likes
1,219

Hi Ankesh,

Yes i am feeling same here i need to add some logis to get these values set ID and get ID r not working

Thanks for the input

Regards

Read only

0 Likes
1,219

EXPORT v_ucomm TO MEMORY ID 'ZTEST01'.

OR

SET PARAMETER ID 'ZTEST01' FIELD v_ucomm.

(Code in FM RV_MESSAGE_UPDATE)

IMPORT v_ucomm FROM MEMORY ID 'ZTEST01'.

OR

GET PARAMETER ID 'ZTEST01' FIELD v_ucomm

Might help you