‎2006 Oct 06 11:21 AM
Hi ,
Can anybody tell me how to create our own BAPI function modules .If possible send me step by step docs to my id
Mail : renjith_sapr3@yahoo.com
Regards
Renjith Kumar
‎2006 Oct 06 11:26 AM
hi,
pls refer to these links:
http://www.sapgenie.com/abap/bapi/example.htm
http://www.sap-img.com/bapi.htm
http://www.sap-img.com/abap/bapi-conventions.htm
Regards,
Preema
*Reward points if it helps
‎2006 Oct 06 11:23 AM
You just need to create a function module. People get mislead by thinking they are creating a BAPI when in fact it is a Function Module. Which is also RFC enabled.
You can create an actual BAPI but I never see the reason why.
‎2006 Oct 06 11:24 AM
Hi,
Check the below link.
<a href="http://www.sap-img.com/bapi.htm">BAPI Programming Tips and Tricks</a>
Thanks,
Ramakrishna
‎2006 Oct 06 11:26 AM
hi,
pls refer to these links:
http://www.sapgenie.com/abap/bapi/example.htm
http://www.sap-img.com/bapi.htm
http://www.sap-img.com/abap/bapi-conventions.htm
Regards,
Preema
*Reward points if it helps
‎2006 Oct 06 11:27 AM
hi,
BAPIs are nothing but just RFC enabled function modules.
You just require to do two extra things then from a general FM.
1. tick all the import parameters 'PASS BY VALUE' option.
2. in attaributes select Remote enable.
Hope this help you,
Regards,
Amit
‎2006 Oct 06 11:30 AM
Hi,
Steps for the creation of BAPI funtion module.
1. Create Data dictionary structures using SE11 .
remeber the naming convenstion must be
ZBAPI<XXXX>.
THESE structures you are supposed to use in Function module as IMPORT EXPORT TABLES CHANGING parameters.
2. Now create bAPI FUNCTION MODULE
Here also naming must be ZBAPI<XXXX>.
Select the type of function module as REMOTELY ENABLED .
wRITE THE SOURCE CODE according to the interface in the function module .
After activatin the function module RELEASE the function module
iN SE37 YOU WILL FIND THE MENU OPTION FOR THIS.
All the parameters int he interface of the function module must PASS BY VALUE method.
Regards,
Message was edited by: shishupalreddy ramreddy
‎2006 Oct 06 11:38 AM
Please check this link
Step by step procedure
http://www.erpgenie.com/sap/abap/bapi/example.htm
some other related link
http://help.sap.com/saphelp_nw04/helpdata/en/89/8a185c148e4f6582560a8d809210b4/frameset.htm
‎2006 Oct 06 12:08 PM