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

BDC INSERT or BAPI.How to achieve this ?

Former Member
0 Likes
718

Dear experts,

We have certain BDC source codes which uses the logic of reading cells from an excel file and automatically posting data on standard transaction screens like MM01 or MM03.

But one has to keep pressing enter to do this.Reason is that

code is autogenerated by recording.

Is there any standard way out using BDC insert by which we can insert data in same fashion but without pressing simultaneous Enter key.

Further we thought to use BAPI but it is not compulsory that BAPI exists for mangaing all tasks achieved by BDC.

I am stuck at this point how to perform database insertions of any standard transaction of my choice or perform any data transfer ex one plant to another plant by using BDC Insert or any method.But it should prevent me from pressing enter key again and again.

Thanx in advance.

Dear experts,

We have certain BDC source codes which uses the logic of reading cells from an excel file and automatically posting data on standard transaction screens like MM01 or MM03.

But one has to keep pressing enter to do this.Reason is that

code is autogenerated by recording.

Is there any standard way out using BDC insert by which we can insert data in same fashion but without pressing simultaneous Enter key.

Further we thought to use BAPI but it is not compulsory that BAPI exists for mangaing all tasks achieved by BDC.

I am stuck at this point how to perform database insertions of any standard transaction of my choice or perform any data transfer ex one plant to another plant by using BDC Insert or any method.But it should prevent me from pressing enter key again and again.

Thanx in advance.

4 REPLIES 4
Read only

Former Member
0 Likes
679

Hi Aditya

Use Call Transaction in background mode , it will automatically execute the whole process

~hitesh

Read only

Former Member
0 Likes
679

HI,

In BDC, in call transaction method, there is a option called mode, now in ur scenario it is in Mode "A",

change the mode to either N or E.

Posible Modes :

A Display all screens

E Display errors

N Background processing

With Rgds,

S.Bharani

Read only

0 Likes
679

I am not using call transaction.Instead the code uses

perform bdc_transaction using 'MM01'.

Read only

Former Member
0 Likes
679

what to ???