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

select-options & memory id

Former Member
0 Likes
4,563

Hi together,

I´m using 'memory id' for parameters and select-options in order to retrieve the last set of entries.

Obviously 'memory id' only saves the 'low'-value of my select-options. How can I save/retrieve the 'high'-value?

Thanks for any help

1 ACCEPTED SOLUTION
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
2,089

Hi,

Select options is a table which can hold multiple entries . So using parameter ID here is of no use. May be you can use Export/Import .


REPORT abc.
DATA:v_matnr type mara-matnr.
SELECT-OPTIONS:s_matnr FOR v_matnr.
AT SELECTION-SCREEN OUTPUT.
  IMPORT s_matnr FROM MEMORY ID 'MAT'.
START-OF-SELECTION.
  EXPORT s_matnr TO MEMORY ID 'MAT'.

2 REPLIES 2
Read only

Former Member
0 Likes
2,089

I was able to resolve the puzzle.

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
2,090

Hi,

Select options is a table which can hold multiple entries . So using parameter ID here is of no use. May be you can use Export/Import .


REPORT abc.
DATA:v_matnr type mara-matnr.
SELECT-OPTIONS:s_matnr FOR v_matnr.
AT SELECTION-SCREEN OUTPUT.
  IMPORT s_matnr FROM MEMORY ID 'MAT'.
START-OF-SELECTION.
  EXPORT s_matnr TO MEMORY ID 'MAT'.