Application Development 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: 

Enhancements

Former Member
0 Kudos

Hi

Can anybody tell me when to use User exits, BAPI,BADI, function modules for system enhancements.

Wht functionalities we get when we use field exits.

Thanks and Regards

1 REPLY 1

Former Member
0 Kudos

hi reddy,

Here are some points for ur questions . But these are only basics not the full concept

<u>user exit </u> :

There are some requirements in standard programs for which a generic solution cannot be provided, as it much dependent on how the user wants to do it. For eg, PO number validation in sales order (standard order). This is not a necessity and is not done by SAP. But if the user wants to check for this then it has to be done by means of these exits. The user exit points are already defined by SAP and these exits will be called at these predefined points. All we have to do is put our code inside that exit.

<u>Field exit</u> are generally used for field validation in any SAP transaction . For example u can prevent the user to enter the value "BOX" for the field UNIT OF MEASURE , while creating a material in MM01.

BADI :

Business Add-Ins are a new SAP enhancement technique based on ABAP Objects. They can be inserted into the SAP System to accommodate user requirements too specific to be included in the standard delivery.

BAPI:

Bapis are business API'S and are based on ABAP objects . They are remote enabled function modules , whicl can be called from external system to create datas or to retrive datas from SAP .

Function module :

They r some predefined objects in SAP and we can also define fun. modules . All it does is some sort of calculations or operations for the business needs . All we have to do is to call these modules in our code instead of writing the entire code to perform the operation.

I hope i have given atleast minimum points on ur queries.

with best regards,

Kasi.