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

Multiple Entries Update in one BAPI Call

Former Member
0 Likes
1,478

Hi ,

For Article master update through BAPI  BAPI_MATERIAL_MAINTAINDATA_RT, usually most of the usage is call it through a loop and each article to call once.

Loop at article_list

  BAPI_MATERIAL_MAINTAINDATA_RT.

Endloop

Is it possible to call it once only through the append of different articles in the headdata / plantdata structures?

Loop at article_list

  Prepare_data_file

Endloop

BAPI_MATERIAL_MAINTAINDATA_RT

Please help

Connie

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,333

Hi Connie

At my knowledge, NO. This BAPI is for one article at a time.

It seems that there is no BAPI for several articles at a time

Dinh

Hi ,

For Article master update through BAPI  BAPI_MATERIAL_MAINTAINDATA_RT, usually most of the usage is call it through a loop and each article to call once.

Loop at article_list

  BAPI_MATERIAL_MAINTAINDATA_RT.

Endloop

Is it possible to call it once only through the append of different articles in the headdata / plantdata structures?

Loop at article_list

  Prepare_data_file

Endloop

BAPI_MATERIAL_MAINTAINDATA_RT

Please help

Connie

6 REPLIES 6
Read only

Former Member
0 Likes
1,334

Hi Connie

At my knowledge, NO. This BAPI is for one article at a time.

It seems that there is no BAPI for several articles at a time

Dinh

Read only

0 Likes
1,333

Hi Dinh,

Thanks. .I also checked out and found the answer is NO also.

But I suppress the write log in headdata parameter in the structure and the speed becomes faster.

Thanks

Connie

Read only

0 Likes
1,333

Hi Dinh,

Thanks. .I also checked out and found the answer is NO also.

But I suppress the write log in headdata parameter in the structure and the speed becomes faster.

Thanks

Connie

Read only

Former Member
0 Likes
1,333

Hi Connie,

Just let us know y u want multiple entries update in 1 call ... is there any specific reason ?

As per Bapi given BAPI by you , You can create one Article at 1 time , coz ur passing all details of one Bapi .

Regards,

yukti

Read only

0 Likes
1,333

Hi,

Just want to test if the performance can be faster or not.

Connie

Read only

0 Likes
1,333

If you want to improve the performance you can call this in BAPI in paralell, that will increase the performance substantially.

If you are intrigued, you can check how to use starting new task in BAPI.