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

Is it possible to pass multiple values for bapi import parameter

Former Member
0 Likes
1,068

Hi;

I have created the simple bapi..Now is it possible to give multiple values for bapi import parameter.that is if the car is my import parameter then for car i want to give 3 values to that car import parameters...can anyone throw some light on this..

Thanks and Regards,

sapdev10

Moderator message: Hi Omkar, please search for available information/documentation before asking, we will continue to delete your reincarnations as long as you keep ignoring moderator messages and forum rules.

locked by: Thomas Zloch on Oct 13, 2010 10:15 AM

3 REPLIES 3
Read only

Former Member
0 Likes
713

Hello,

Then you have declare the parameter as an internal table so that you can pass multiple values. Also you have to change the BAPI logic to process the data collectively.

Regards,

Karthik D

Read only

Former Member
0 Likes
713

Hi,

yeh you can pass multiple values to BAPI , but for that you will have to call BAPI in a loop.

eg. if Itab contains multiple CAR, then

loop at itab.

call the bapi.

import

CAR = itab-car

export

call bapi_transaction_commit

endloop.

Read only

deepak_dhamat
Active Contributor
0 Likes
713

hi ,

you can use RANGES : r_matkl FOR mara-matkl . in bapi

but not as import parameter .

Regards

Deepak.