SAP PLM_DMS_CHECK_NODE Function Module for Prüft die Existenz des jeweiligen Knotens
PLM_DMS_CHECK_NODE is a standard plm dms check node SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Prüft die Existenz des jeweiligen Knotens 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 plm dms check node FM, simply by entering the name PLM_DMS_CHECK_NODE into the relevant SAP transaction such as SE37 or SE38.
Function Group: PLM_DMS_46_KM_INTERFACE
Program Name: SAPLPLM_DMS_46_KM_INTERFACE
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function PLM_DMS_CHECK_NODE 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 'PLM_DMS_CHECK_NODE'"Prüft die Existenz des jeweiligen Knotens.
EXPORTING
* PFX_VARI = "Selektionsvariante
* PFX_LANGU = "R/3-System, aktuelle Sprache
* PSX_DMS_DOC_KEY = "DVS: Dokumentschlüssel
* PFX_FILE_ID = "Logisches Informationsobjekt
IMPORTING
RETURN = "Returnparameter
IMPORTING Parameters details for PLM_DMS_CHECK_NODE
PFX_VARI - Selektionsvariante
Data type: DMS_SELECTIONS-VARIOptional: Yes
Call by Reference: No ( called with pass by value option)
PFX_LANGU - R/3-System, aktuelle Sprache
Data type: SY-LANGUOptional: Yes
Call by Reference: No ( called with pass by value option)
PSX_DMS_DOC_KEY - DVS: Dokumentschlüssel
Data type: DMS_DOC_KEYOptional: Yes
Call by Reference: No ( called with pass by value option)
PFX_FILE_ID - Logisches Informationsobjekt
Data type: DMS_DOC2LOIO-LO_OBJIDOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for PLM_DMS_CHECK_NODE
RETURN - Returnparameter
Data type: BAPIRET2Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for PLM_DMS_CHECK_NODE 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_return | TYPE BAPIRET2, " | |||
| lv_pfx_vari | TYPE DMS_SELECTIONS-VARI, " | |||
| lv_pfx_langu | TYPE SY-LANGU, " | |||
| lv_psx_dms_doc_key | TYPE DMS_DOC_KEY, " | |||
| lv_pfx_file_id | TYPE DMS_DOC2LOIO-LO_OBJID. " |
|   CALL FUNCTION 'PLM_DMS_CHECK_NODE' "Prüft die Existenz des jeweiligen Knotens |
| EXPORTING | ||
| PFX_VARI | = lv_pfx_vari | |
| PFX_LANGU | = lv_pfx_langu | |
| PSX_DMS_DOC_KEY | = lv_psx_dms_doc_key | |
| PFX_FILE_ID | = lv_pfx_file_id | |
| IMPORTING | ||
| RETURN | = lv_return | |
| . " PLM_DMS_CHECK_NODE | ||
ABAP code using 7.40 inline data declarations to call FM PLM_DMS_CHECK_NODE
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 VARI FROM DMS_SELECTIONS INTO @DATA(ld_pfx_vari). | ||||
| "SELECT single LANGU FROM SY INTO @DATA(ld_pfx_langu). | ||||
| "SELECT single LO_OBJID FROM DMS_DOC2LOIO INTO @DATA(ld_pfx_file_id). | ||||
Search for further information about these or an SAP related objects