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

Store select-options preferences

Former Member
0 Likes
807

Hi.

How can i store a select-option's user selection in a database table???

I can not use a variant, i need to use a Z Database Table.

Which has to be the structure of this table??

How can i do this???

Thanks

Hi.

How can i store a select-option's user selection in a database table???

I can not use a variant, i need to use a Z Database Table.

Which has to be the structure of this table??

How can i do this???

Thanks

4 REPLIES 4
Read only

Former Member
0 Likes
772

create a table with 4 fields SIGN , OPTION, LOW , HIGH

INSERT ZTABLE FROM TABLE S_FIELD.

Read only

Former Member
0 Likes
772

Hi,

Select-Option : MATNR type mara-matnr.

Ranges : MATNR for MARA-MATNR.

r_matnr = s_matnr.

EXPORT R_MATNR to R_MATNR MEMORY ID 'ZID'.

while retrieving

IMPORT R_MATNR from R_MATNR MEMORY ID 'ZID'.

else store it into a DB table of same structure.

Best regards,

Prashant

Read only

Former Member
0 Likes
772

check the tables <b>TVARV</b> and <b>TVARVC</b> which can be used to store select-options and parameters along with their names and can be maintained in the transaction <b>STVARV</b>

Read only

Former Member
0 Likes
772

Look at structure RSSELECT.

Rob