SAP EXIT_SAPLEC50_005 Function Module for IS-U move-in: customer-defined checks









EXIT_SAPLEC50_005 is a standard exit saplec50 005 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-U move-in: customer-defined checks 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 saplec50 005 FM, simply by entering the name EXIT_SAPLEC50_005 into the relevant SAP transaction such as SE37 or SE38.

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



Function EXIT_SAPLEC50_005 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_SAPLEC50_005'"IS-U move-in: customer-defined checks
EXPORTING
X_MOVEIN_EXT = "Current Move-in Data

IMPORTING
Y_FIELD = "Name of Field for Cursor Positioning
Y_LINE = "Number of Loop Line for Cursor Positioning

EXCEPTIONS
INPUT_ERROR = 1
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
ISU_DB_EEIN_UPDATE_MAIN PRIVATE: Move-In Document and Contract Installation Allocation UPDATE
ISU_MI_BPCA_ACCOUNT_ENQUEUE INTERNAL: Put Contract Account for Move-In Document in Queue
ISU_MI_BPCA_VALID_DATE_GET INTERNAL: Determine Valid Change Date for Business Partner / Contract Acct
ISU_MI_BP_FOREIGN_INIT_CALL INTERNAL: Initialization of Business Partner
ISU_MI_CURRENCY_FILL INTERNAL: Fill Currency Field
ISU_MI_ENQUEUE_WAIT_SET
ISU_MI_METDOCS_PRINT INTERNAL: Print Meter Reading Documents in Move-In
ISU_MI_SUBOJECTS_PAI_AFTER INTERNAL: Run PAI_AFTER Module for Subobjects of Move-In
ISU_MI_SUBOJECTS_PAI_BEFORE INTERNAL: Run PAI_BEFORE Module for Subobjects of Move-In
ISU_MI_SUBOJECTS_PBO INTERNAL: Run PBO Module for Subobjects of Move-In
ISU_MOVE_IN_GET_ATTR_FROM_EXT PRIVATE: Make Move-In Attributes Available Externally
ISU_MOVE_IN_GET_BCONTCONF INTERN: Determine Class + Act. f. First Customer Contact to Report Move-In
ISU_O_MOVE_IN_CLOSE INTERNAL: Exits Object Processing
ISU_O_MOVE_IN_INPUT INTERNAL: Check Entries in Move-In
ISU_O_MOVE_IN_OPEN INTERNAL: Opens Processing of an Object
ISU_O_MOVE_IN_WORK INTERNAL: Calls Screen Dialog for Move-In Document
ISU_S_MOVE_IN_CANCEL INTERNAL: Reverse Move-In Document
ISU_S_MOVE_IN_CHANGE INTERNAL: Change Move-In Document
ISU_S_MOVE_IN_CREATE INTERNAL: Create Move-In Document
ISU_S_MOVE_IN_DATE_CHANGE INTERNAL: Change Move-In Date of a Move-In Document
ISU_S_MOVE_IN_DEREG_CLSTR_READ INTERNAL: Move-In/Deregulation: Determine Utility Units
ISU_S_MOVE_IN_DISPLAY INTERNAL: Display Move-In Document
ISU_S_MOVE_IN_INSTLN_ADD INTERNAL: Add Installations to Move-In Document
ISU_S_MOVE_IN_METDOCS_CHNGDATE INTERNAL: Change Move-In Document for Meter Reading Data
ISU_S_MOVE_IN_MR_STATUS_DETERM INTERNAL: Determine Status of Meter Reading Document at Installation Level
ISU_S_MOVE_IN_PROVIDE INTERNAL: Prepares Move-In Document for Processing
ISU_S_MOVE_IN_WLETTER_CREATE INTERNAL: Create Welcome Letter in Move-In

IMPORTING Parameters details for EXIT_SAPLEC50_005

X_MOVEIN_EXT - Current Move-in Data

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

EXPORTING Parameters details for EXIT_SAPLEC50_005

Y_FIELD - Name of Field for Cursor Positioning

Data type: GFC_PRGFLD-FELDNAME
Optional: No
Call by Reference: Yes

Y_LINE - Number of Loop Line for Cursor Positioning

Data type: SY-STEPL
Optional: No
Call by Reference: Yes

EXCEPTIONS details

INPUT_ERROR - Error detected during check

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for EXIT_SAPLEC50_005 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_y_field  TYPE GFC_PRGFLD-FELDNAME, "   
lv_input_error  TYPE GFC_PRGFLD, "   
lv_x_movein_ext  TYPE ISU06_MOVEIN_EXT, "   
lv_y_line  TYPE SY-STEPL. "   

  CALL FUNCTION 'EXIT_SAPLEC50_005'  "IS-U move-in: customer-defined checks
    EXPORTING
         X_MOVEIN_EXT = lv_x_movein_ext
    IMPORTING
         Y_FIELD = lv_y_field
         Y_LINE = lv_y_line
    EXCEPTIONS
        INPUT_ERROR = 1
. " EXIT_SAPLEC50_005




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLEC50_005

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.

"SELECT single FELDNAME FROM GFC_PRGFLD INTO @DATA(ld_y_field).
 
 
 
"SELECT single STEPL FROM SY INTO @DATA(ld_y_line).
 


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!