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 processing using call transaction

Former Member
0 Likes
701


Hi,

The requirement is to post data from SAP PI to SAP ECC through ABAP Proxy/RFC.

Since there is no standard function module/BAPI available for our requirement we need to follow the BDC approach.

Question is how are we achieving this in ABAP server Proxy code?

Is the FM 'RFC_CALL_TRANSACTION_USING' of any use?

3 REPLIES 3
Read only

rajucd81
Participant
0 Likes
611


Hi Ashirbani,

You can do BDC code in Proxy method, usually the BDC will be having two main subroutines to fill the BDCDATA internal table, but here we should write those subroutines as methods and call them as per the recording of the business transaction. Pls check below link, it'll be useful for your requirement

Thanks

Raju C D

Read only

Former Member
0 Likes
611


If I do not want to use object oriented ABAP, is there any other way?

Read only

0 Likes
611

You can do it, you write all BDC code in a custom Function Module and call that FM in the Proxy method .

I think it is easy if you follow the given blog.., there is not much OOABAP involved in that development.