SAP EXIT_SAPLEC50_006 Function Module for IS-U Move-in: Determination of Transfer Contract









EXIT_SAPLEC50_006 is a standard exit saplec50 006 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: Determination of Transfer Contract 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 006 FM, simply by entering the name EXIT_SAPLEC50_006 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_006 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_006'"IS-U Move-in: Determination of Transfer Contract
EXPORTING
X_MOVEIN_EXT_V = "Current Move-in data on Contract Level
XT_EAUS = "
XT_EAUSV = "

IMPORTING
Y_TRANSVER = "Transfer Contract
Y_NO_TRANSFER = "Indicator: No Transfer
.



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_006

X_MOVEIN_EXT_V - Current Move-in data on Contract Level

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

XT_EAUS -

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

XT_EAUSV -

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

EXPORTING Parameters details for EXIT_SAPLEC50_006

Y_TRANSVER - Transfer Contract

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

Y_NO_TRANSFER - Indicator: No Transfer

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

Copy and paste ABAP code example for EXIT_SAPLEC50_006 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_transver  TYPE EVER-TRANSVER, "   
lv_x_movein_ext_v  TYPE ISU06_MOVEIN_EXT_V, "   
lv_xt_eaus  TYPE ISU06_T_EAUS, "   
lv_y_no_transfer  TYPE REGEN-KENNZX, "   
lv_xt_eausv  TYPE ISU06_T_EAUSV. "   

  CALL FUNCTION 'EXIT_SAPLEC50_006'  "IS-U Move-in: Determination of Transfer Contract
    EXPORTING
         X_MOVEIN_EXT_V = lv_x_movein_ext_v
         XT_EAUS = lv_xt_eaus
         XT_EAUSV = lv_xt_eausv
    IMPORTING
         Y_TRANSVER = lv_y_transver
         Y_NO_TRANSFER = lv_y_no_transfer
. " EXIT_SAPLEC50_006




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLEC50_006

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 TRANSVER FROM EVER INTO @DATA(ld_y_transver).
 
 
 
"SELECT single KENNZX FROM REGEN INTO @DATA(ld_y_no_transfer).
 
 


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!