2007 May 28 4:38 PM
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
2007 May 28 4:42 PM
create a table with 4 fields SIGN , OPTION, LOW , HIGH
INSERT ZTABLE FROM TABLE S_FIELD.
2007 May 28 4:46 PM
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
2007 May 28 4:48 PM
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>
2007 May 28 4:49 PM