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: 

select-options & memory id

Former Member
0 Kudos

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

kesavadas_thekkillath
Active Contributor
0 Kudos

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

Former Member
0 Kudos

I was able to resolve the puzzle.

kesavadas_thekkillath
Active Contributor
0 Kudos

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'.