cancel
Showing results for 
Search instead for 
Did you mean: 

HOW TO PASS SELECT-OPTIONS TO BAPI...IS THERE ANY OPTIONS ?

0 Kudos

iS THERE ANY WAY TO PASS SELECT-OPTIONS TO BAPI AS INPUT......LET ME GIVE U THE SCENARIO.....

I wants to display the details for a given range of inputs...here input is select-options ......

How to achieve this using BAPI .

Regards,

Ashok

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Try to call ..GET_LIST BAPI if exists and then call your BAPI (let say ..GET_DETAIL) for each entry in loop.

Or you can implement your own function (not BAPI) with range type input parameter (type BAPISELECT for example).

Former Member
0 Kudos

Hi,

  Try using field-Symbols, Assign the obtained range table from the select options to

Field symbol of type table and pass this field symbol to the BAPI.

Can you mention the type of parameter in the BAPI for which you are passing this RANGE TABLE?

Hope the above answer helps you.