2008 Dec 11 9:38 AM
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
2008 Dec 11 9:52 AM
2008 Dec 11 10:00 AM
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
2008 Dec 11 10:10 AM
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.
2008 Dec 11 10:12 AM
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
2008 Dec 11 10:19 AM
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