Hi There,
I have to create BAPI GetList, which has 18 Table-Import Parameters. Those Table Parameters have been created like Ranges ( Sign, Option, Low and High ). How can I know, what der User has given as Input and after this Check wnat to select from Tables for Inputs of Ranges.
Pls give me Support!
Thanks a lot!
Bye
Besi
Hi Besi,
how about defining user input fields like BAPI input fields?
select-options: s_parm1 for table-field1,
s_parm2 for table-field2,
...
call function bapi_x_get_list
tables
parm1 = s_parm1
parm2 = s_parm2
...
You will not know, what user has selected, but result of BAPI should match exactly user requirements. If you don't want to define all 18 table parameters on selection-screen, you can define some parameters with ranges s_parm3 for table-field3. That will not be part of selection screen, but can be part of function call.
Please ask again, when you have problems to translate user selection into bapi parameter.
Regards,
Christian
Add a comment