SAP /SAPAPO/TS_DM_LOCK Function Module for S&DP: Lock Data
/SAPAPO/TS_DM_LOCK is a standard /sapapo/ts dm lock SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for S&DP: Lock Data 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 /sapapo/ts dm lock FM, simply by entering the name /SAPAPO/TS_DM_LOCK into the relevant SAP transaction such as SE37 or SE38.
Function Group: /SAPAPO/OO_TS_DM
Program Name: /SAPAPO/SAPLOO_TS_DM
Main Program: /SAPAPO/SAPLOO_TS_DM
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function /SAPAPO/TS_DM_LOCK 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 '/SAPAPO/TS_DM_LOCK'"S&DP: Lock Data.
EXPORTING
IV_PAREAID = "Planungsbereich
IT_SELECTION = "Referenzstruktur für Selektionsbedingungen für Merkmale
* IT_GROUP_BY = "Tabellentyp: Gruppierung auf Merkmale
* IT_KEYFIGURE = "Tabelle der Kennzahlen
* IS_MDVIEW_LOCK = "Struktur für sperren von Kennzahlen in die Mappe / Datensich
* IV_SYR = "boolsche Variable (X=true, -=false, space=unknown)
* IV_APPLICATION = "Administration Lock Application
IMPORTING
EV_SUCCESS = "'X'=Erfolg;' ' kein Erfolg
EV_USER = "Benutzername in einem Sperreintrag
ES_LOCK_STR = "Struktur für die Sperrinformation
EXCEPTIONS
PAREAID_INVALID = 1 COMMUNICATION_FAILURE = 2 SYSTEM_FAILURE = 3 FOREIGN_LOCK = 4 LC_LOCK_ERROR = 5 ADM_LOCK_CONFLICT = 6
IMPORTING Parameters details for /SAPAPO/TS_DM_LOCK
IV_PAREAID - Planungsbereich
Data type: /SAPAPO/TS_PAREAIDOptional: No
Call by Reference: No ( called with pass by value option)
IT_SELECTION - Referenzstruktur für Selektionsbedingungen für Merkmale
Data type: /SAPAPO/TS_IOBJ_SELECTION_TABOptional: No
Call by Reference: Yes
IT_GROUP_BY - Tabellentyp: Gruppierung auf Merkmale
Data type: /SAPAPO/TS_GROUP_BY_TABOptional: Yes
Call by Reference: Yes
IT_KEYFIGURE - Tabelle der Kennzahlen
Data type: /SAPAPO/TS_KEYFS_EXT_TAB_SORTOptional: Yes
Call by Reference: Yes
IS_MDVIEW_LOCK - Struktur für sperren von Kennzahlen in die Mappe / Datensich
Data type: /SAPAPO/TS_MDVIEW_LOCKOptional: Yes
Call by Reference: Yes
IV_SYR - boolsche Variable (X=true, -=false, space=unknown)
Data type: BOOLEANOptional: Yes
Call by Reference: Yes
IV_APPLICATION - Administration Lock Application
Data type: /SAPAPO/ADM_APPLOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for /SAPAPO/TS_DM_LOCK
EV_SUCCESS - 'X'=Erfolg;' ' kein Erfolg
Data type: AS4FLAGOptional: No
Call by Reference: No ( called with pass by value option)
EV_USER - Benutzername in einem Sperreintrag
Data type: EQEUNAMEOptional: No
Call by Reference: Yes
ES_LOCK_STR - Struktur für die Sperrinformation
Data type: /SAPAPO/TS_LC_LOCK_STROptional: No
Call by Reference: Yes
EXCEPTIONS details
PAREAID_INVALID - Planungsbereich wurde nicht gefunden
Data type:Optional: No
Call by Reference: Yes
COMMUNICATION_FAILURE - siehe RFC-Dokumentation
Data type:Optional: No
Call by Reference: Yes
SYSTEM_FAILURE - siehe RFC-Dokumentation
Data type:Optional: No
Call by Reference: Yes
FOREIGN_LOCK - Objekt ist bereits gesperrt
Data type:Optional: No
Call by Reference: Yes
LC_LOCK_ERROR - Fehler bei sperren von Daten in LC
Data type:Optional: No
Call by Reference: Yes
ADM_LOCK_CONFLICT - Administration locking conflict
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for /SAPAPO/TS_DM_LOCK 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_ev_success | TYPE AS4FLAG, " | |||
| lv_iv_pareaid | TYPE /SAPAPO/TS_PAREAID, " | |||
| lv_pareaid_invalid | TYPE /SAPAPO/TS_PAREAID, " | |||
| lv_ev_user | TYPE EQEUNAME, " | |||
| lv_it_selection | TYPE /SAPAPO/TS_IOBJ_SELECTION_TAB, " | |||
| lv_communication_failure | TYPE /SAPAPO/TS_IOBJ_SELECTION_TAB, " | |||
| lv_es_lock_str | TYPE /SAPAPO/TS_LC_LOCK_STR, " | |||
| lv_it_group_by | TYPE /SAPAPO/TS_GROUP_BY_TAB, " | |||
| lv_system_failure | TYPE /SAPAPO/TS_GROUP_BY_TAB, " | |||
| lv_foreign_lock | TYPE /SAPAPO/TS_GROUP_BY_TAB, " | |||
| lv_it_keyfigure | TYPE /SAPAPO/TS_KEYFS_EXT_TAB_SORT, " | |||
| lv_lc_lock_error | TYPE /SAPAPO/TS_KEYFS_EXT_TAB_SORT, " | |||
| lv_is_mdview_lock | TYPE /SAPAPO/TS_MDVIEW_LOCK, " | |||
| lv_iv_syr | TYPE BOOLEAN, " | |||
| lv_adm_lock_conflict | TYPE BOOLEAN, " | |||
| lv_iv_application | TYPE /SAPAPO/ADM_APPL. " |
|   CALL FUNCTION '/SAPAPO/TS_DM_LOCK' "S&DP: Lock Data |
| EXPORTING | ||
| IV_PAREAID | = lv_iv_pareaid | |
| IT_SELECTION | = lv_it_selection | |
| IT_GROUP_BY | = lv_it_group_by | |
| IT_KEYFIGURE | = lv_it_keyfigure | |
| IS_MDVIEW_LOCK | = lv_is_mdview_lock | |
| IV_SYR | = lv_iv_syr | |
| IV_APPLICATION | = lv_iv_application | |
| IMPORTING | ||
| EV_SUCCESS | = lv_ev_success | |
| EV_USER | = lv_ev_user | |
| ES_LOCK_STR | = lv_es_lock_str | |
| EXCEPTIONS | ||
| PAREAID_INVALID = 1 | ||
| COMMUNICATION_FAILURE = 2 | ||
| SYSTEM_FAILURE = 3 | ||
| FOREIGN_LOCK = 4 | ||
| LC_LOCK_ERROR = 5 | ||
| ADM_LOCK_CONFLICT = 6 | ||
| . " /SAPAPO/TS_DM_LOCK | ||
ABAP code using 7.40 inline data declarations to call FM /SAPAPO/TS_DM_LOCK
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