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

hi

Former Member
0 Likes
350

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

2 REPLIES 2
Read only

Former Member
0 Likes
328

Hi

You can use this BAPI BAPI_VENDOR_EDIT

or

FM VENDOR_UPDATE or VENDOR_ASSORTMENT_UPDATE1 to update vendor.

Thanks

Vasudha

Read only

Former Member
0 Likes
328

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..