‎2014 Sep 26 10:40 AM
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?
‎2014 Sep 26 10:47 AM
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
‎2014 Sep 26 10:53 AM
If I do not want to use object oriented ABAP, is there any other way?
‎2014 Sep 26 10:57 AM
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.