‎2008 Mar 25 5:48 AM
Shall I know function module for vendor master while uploading data in BAPI ? Whether the remote function module and the normal function module are the same?
thanks
‎2008 Mar 25 6:01 AM
Hi
You can use this BAPI BAPI_VENDOR_EDIT
or
FM VENDOR_UPDATE or VENDOR_ASSORTMENT_UPDATE1 to update vendor.
Thanks
Vasudha
‎2008 Mar 25 6:06 AM
Hi,
You can use any of the below to update vendor master data in BAPI :-
BAPI_VENDOR_EDIT (BAPI)
or
VENDOR_UPDATE (FM)
To upload data through BAPI :-
BAPI_VENDOR_CREATE (BAPI)
Function modules are procedures that are defined in function groups (special ABAP programs with type F) and can be called from any ABAP program. Function groups act as containers for function modules that logically belong together,Function modules allow you to encapsulate and reuse global functions in the R/3 System. They are stored in a central library,Unlike subroutines, you do not define function modules in the source code of your program.
1. Normal function module is used to excute in the exiting server.
But remote function module is used to execute in other server other than existing server.
2. Generally normal function module contains excepetions.
But remote function module contains messages in the return table.
3. Generally after executing normal funciton module commit work is not required.
But for remote funciton module you have to call the commit work expicitly.
regards,
preet
reward if helpful..