SAP EXIT_SAPLEC60_002 Function Module for BPO: Function Module for Pre-Assignment of Default Values to Fields









EXIT_SAPLEC60_002 is a standard exit saplec60 002 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for BPO: Function Module for Pre-Assignment of Default Values to Fields processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for exit saplec60 002 FM, simply by entering the name EXIT_SAPLEC60_002 into the relevant SAP transaction such as SE37 or SE38.

Function Group: XEC6
Program Name: SAPLXEC6
Main Program: SAPLXEC6
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function EXIT_SAPLEC60_002 pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'EXIT_SAPLEC60_002'"BPO: Function Module for Pre-Assignment of Default Values to Fields
CHANGING
X_EUMZD = "Screen Data
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
ISU_FIND_MOVEINDOC Internal: Determine Move-In Document
ISU_FIND_MOVEOUTDOC Internal: Determine Move-Out Document
ISU_REMOVAL_CONTRACT_SWITCH Contract Change with Invoicing
ISU_REMOVAL_CREATE_FOR_PARTNER Internal: Move-In/Out for Business Partner
ISU_REMOVAL_CREATE_FOR_PREMISE Internal: Create Move-In/Out for Premise
ISU_REMOVAL_CUST_INPUT Internal: Exit 007 Call
ISU_REMOVAL_ENV_FOR_PARTNER Internal: Displays Environment for a Business Partner
ISU_REMOVAL_ENV_FOR_PREMISE Internal: Displays Environment for a Premise
ISU_REMOVAL_FO_CONTROL Move-In/Out for Front Office
ISU_REMOVAL_IDENT INTERNAL: Searches for Specific Initial Parameter Data to Display Move-Out
ISU_REMOVAL_INSERT Internal: Insert Contract
ISU_REMOVAL_INSERT_CANCEL Internal: Reverse Insterted Contract
ISU_REMOVAL_MOVEIN_CANCEL Internal: Reverse Move-In
ISU_REMOVAL_MOVEIN_CHANGE Internal: Change Move-In
ISU_REMOVAL_MOVEIN_CREATE Internal: Create Move-In
ISU_REMOVAL_MOVEIN_DISPLAY Internal: Display Move-In
ISU_REMOVAL_MOVEOUT_CANCEL Internal: Reverse Move-Out
ISU_REMOVAL_MOVEOUT_CHANGE Internal: Change Move-Out
ISU_REMOVAL_MOVEOUT_CREATE Internal: Change Move-Out
ISU_REMOVAL_MOVEOUT_DISPLAY Internal: Display Move-Out
ISU_REMOVAL_PROD_DLT Internal: Change Product Allocation
ISU_REMVL_CONTRSWITCH_CREATE Create Contract Change Without Invoicing (Move-Out Wrapper)
ISU_REMVL_CONTRSWITCH_REVERSE Reverse Contract Change (With and Without Invoicing)
ISU_REMVL_SUBROGATION_CREATE Create Customer Change
ISU_REMVL_SUBROGATION_REVERSE Reverse Customer Change
ISU_SET_PREC_CONTRACTGUID

CHANGING Parameters details for EXIT_SAPLEC60_002

X_EUMZD - Screen Data

Data type: ISU06_REMOVAL
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for EXIT_SAPLEC60_002 Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_x_eumzd  TYPE ISU06_REMOVAL. "   

  CALL FUNCTION 'EXIT_SAPLEC60_002'  "BPO: Function Module for Pre-Assignment of Default Values to Fields
    CHANGING
         X_EUMZD = lv_x_eumzd
. " EXIT_SAPLEC60_002




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLEC60_002

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!