‎2008 Mar 22 6:57 AM
Thanks to all sdn viewers & solvers...
i work with wipro .. but new to conversions ..
How ABAP OBJECTS R CONVERTED TO BDC TO BAPI
whats procedure step by step ? what r advantages over it ?
Note: if u send detailed material to convert bapi to bdc it will b helpful . reward points will b for all answers.
i hope sdn solve my problem
‎2008 Mar 24 4:39 AM
Hi,
As far as I know, a few transaction have BAPIs associated which can be used instead of doing a BDC. For example, the BAPI, BAPI_ACC_DOCUMENT_POST can be used instead of doing a BDC on complex transactions like FB01 and FB01L. The parameters have to be filled properly and the result of the posting (messages) will be returned to you in the table RETURN.
If this has been of any help, please rewards some points. If you want a specific answer, please do let me know the exact requirement.
Thanks
Edited by: Rahul Raj on Mar 24, 2008 5:39 AM
‎2008 Mar 24 4:39 AM
Hi,
As far as I know, a few transaction have BAPIs associated which can be used instead of doing a BDC. For example, the BAPI, BAPI_ACC_DOCUMENT_POST can be used instead of doing a BDC on complex transactions like FB01 and FB01L. The parameters have to be filled properly and the result of the posting (messages) will be returned to you in the table RETURN.
If this has been of any help, please rewards some points. If you want a specific answer, please do let me know the exact requirement.
Thanks
Edited by: Rahul Raj on Mar 24, 2008 5:39 AM
‎2008 Mar 24 5:10 AM
i gave reward points .. i need little bit clear..
where can i find all details to learn clearly abt converting bdc data to bapii plz tell me
‎2008 Mar 24 5:35 AM
Hi ejagadeesh,
You can do a recording to create a BDC program for you business object using transaction SHDB.
Almost for all business objects SAP has already provided BAPIs but there are few which dont have a BAPI. At this time you need to go for BDC.
If there is a BAPI for your object then go for BAPI since it is more better than BDC when compared with performance and difficulty wise.
You just read the documentation available for BAPIs in the BAPI transaction corresponding to ur BAPi to know about it.
LINK: [http://abapprogramming.blogspot.com/search/label/ABAP%20BDC%20COMPLETE]
[http://abapprogramming.blogspot.com/search/label/BAPI%27S%20IN%20ABAP]
I hope it is helpful
Reward Points
Thanks,
Prasanna
‎2008 Mar 24 6:09 AM
You will have to define a function module in SE37 which is remote enabled. It should have all the parameters which will be passed to the BDC structure. And the messages should be collected in structure of type BAPIRETURN.
Here is more on it.