SAP S_TCC_ALE_SET_DEST_AND_STATUS Function Module for Set ALE Destination and Partner Profile Status
S_TCC_ALE_SET_DEST_AND_STATUS is a standard s tcc ale set dest and status SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Set ALE Destination and Partner Profile Status 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 s tcc ale set dest and status FM, simply by entering the name S_TCC_ALE_SET_DEST_AND_STATUS into the relevant SAP transaction such as SE37 or SE38.
Function Group: S_LMCFG_SERVICES
Program Name: SAPLS_LMCFG_SERVICES
Main Program: SAPLS_LMCFG_SERVICES
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function S_TCC_ALE_SET_DEST_AND_STATUS 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 'S_TCC_ALE_SET_DEST_AND_STATUS'"Set ALE Destination and Partner Profile Status.
EXPORTING
IP_LOGSYS_NEW = "New Logical System
IP_LOGSYS_OLD = "Old Logical System
IP_PARTNER = "Partner number
* IP_PARTNER_TYPE = 'LS' "Partner Type
* IP_STATUS = 'A' "Status of partner profile
TABLES
RETURN = "Return Parameter
IMPORTING Parameters details for S_TCC_ALE_SET_DEST_AND_STATUS
IP_LOGSYS_NEW - New Logical System
Data type: LOGSYSOptional: No
Call by Reference: No ( called with pass by value option)
IP_LOGSYS_OLD - Old Logical System
Data type: LOGSYSOptional: No
Call by Reference: No ( called with pass by value option)
IP_PARTNER - Partner number
Data type: EDIPPARNUMOptional: No
Call by Reference: No ( called with pass by value option)
IP_PARTNER_TYPE - Partner Type
Data type: EDIPPARTYPDefault: 'LS'
Optional: No
Call by Reference: No ( called with pass by value option)
IP_STATUS - Status of partner profile
Data type: EDIPMATLVLDefault: 'A'
Optional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for S_TCC_ALE_SET_DEST_AND_STATUS
RETURN - Return Parameter
Data type: BAPIRET2Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for S_TCC_ALE_SET_DEST_AND_STATUS 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: | ||||
| lt_return | TYPE STANDARD TABLE OF BAPIRET2, " | |||
| lv_ip_logsys_new | TYPE LOGSYS, " | |||
| lv_ip_logsys_old | TYPE LOGSYS, " | |||
| lv_ip_partner | TYPE EDIPPARNUM, " | |||
| lv_ip_partner_type | TYPE EDIPPARTYP, " 'LS' | |||
| lv_ip_status | TYPE EDIPMATLVL. " 'A' |
|   CALL FUNCTION 'S_TCC_ALE_SET_DEST_AND_STATUS' "Set ALE Destination and Partner Profile Status |
| EXPORTING | ||
| IP_LOGSYS_NEW | = lv_ip_logsys_new | |
| IP_LOGSYS_OLD | = lv_ip_logsys_old | |
| IP_PARTNER | = lv_ip_partner | |
| IP_PARTNER_TYPE | = lv_ip_partner_type | |
| IP_STATUS | = lv_ip_status | |
| TABLES | ||
| RETURN | = lt_return | |
| . " S_TCC_ALE_SET_DEST_AND_STATUS | ||
ABAP code using 7.40 inline data declarations to call FM S_TCC_ALE_SET_DEST_AND_STATUS
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.| DATA(ld_ip_partner_type) | = 'LS'. | |||
| DATA(ld_ip_status) | = 'A'. | |||
Search for further information about these or an SAP related objects