SAP PVSDBENG_PNODE_GET Function Module for NOTRANSL: PVS-Knoten anwendungsunabhängige Daten von DB lesen
PVSDBENG_PNODE_GET is a standard pvsdbeng pnode get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: PVS-Knoten anwendungsunabhängige Daten von DB lesen 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 pvsdbeng pnode get FM, simply by entering the name PVSDBENG_PNODE_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: PVSDBENG
Program Name: SAPLPVSDBENG
Main Program: SAPLPVSDBENG
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function PVSDBENG_PNODE_GET 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 'PVSDBENG_PNODE_GET'"NOTRANSL: PVS-Knoten anwendungsunabhängige Daten von DB lesen.
EXPORTING
T_PNODE_IDENT = "Identification of Item Nodes
* IM_FLG_WITH_DEP_NODES = PPET_FALSE "Generic Type
* T_PALT_IDENT = "Identification of Alternatives
* T_LANGU_TAB = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* FLG_PNODID_SKIP = ' ' "Generic Type
* FLG_ALT_ALL = 'X' "Generic Type
* FLG_WITH_TEXT = 'X' "Generic Type
* FLG_WITH_POSVID = "Generic Type
* IM_FLG_WITH_PXARCID = PPET_FALSE "Generic Type
* IM_APPLOBJ_TYPE = "Application Object Type for iPPE
IMPORTING
T_PNODID = "
T_PNODTX = "
T_PALTID = "
T_PALTTX = "
T_POSVID = "
T_POSVTX = "
T_DEP_PNODID = "Nodes Identified in Context
T_DEP_PNODTX = "DE-EN-LANG-SWITCH-NO-TRANSLATION
T_PXARCID = "Archiving Flags
IMPORTING Parameters details for PVSDBENG_PNODE_GET
T_PNODE_IDENT - Identification of Item Nodes
Data type: PPET_PNODID_TABOptional: No
Call by Reference: No ( called with pass by value option)
IM_FLG_WITH_DEP_NODES - Generic Type
Data type: CDefault: PPET_FALSE
Optional: Yes
Call by Reference: Yes
T_PALT_IDENT - Identification of Alternatives
Data type: PPET_PALTID_TABOptional: Yes
Call by Reference: Yes
T_LANGU_TAB - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: PPET_LANGU_TABOptional: Yes
Call by Reference: No ( called with pass by value option)
FLG_PNODID_SKIP - Generic Type
Data type: CDefault: ' '
Optional: Yes
Call by Reference: Yes
FLG_ALT_ALL - Generic Type
Data type: CDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
FLG_WITH_TEXT - Generic Type
Data type: CDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
FLG_WITH_POSVID - Generic Type
Data type: COptional: Yes
Call by Reference: No ( called with pass by value option)
IM_FLG_WITH_PXARCID - Generic Type
Data type: CDefault: PPET_FALSE
Optional: Yes
Call by Reference: Yes
IM_APPLOBJ_TYPE - Application Object Type for iPPE
Data type: PVS_APPLOBJ_TYPEOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for PVSDBENG_PNODE_GET
T_PNODID -
Data type: PPET_PNODID_TABOptional: No
Call by Reference: Yes
T_PNODTX -
Data type: PPET_PNODTX_TABOptional: No
Call by Reference: Yes
T_PALTID -
Data type: PPET_PALTID_TABOptional: No
Call by Reference: Yes
T_PALTTX -
Data type: PPET_PALTTX_TABOptional: No
Call by Reference: Yes
T_POSVID -
Data type: PPET_POSVID_TABOptional: No
Call by Reference: Yes
T_POSVTX -
Data type: PPET_POSVTX_TABOptional: No
Call by Reference: Yes
T_DEP_PNODID - Nodes Identified in Context
Data type: PPET_PNODID_TABOptional: No
Call by Reference: Yes
T_DEP_PNODTX - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: PPET_PNODTX_TABOptional: No
Call by Reference: Yes
T_PXARCID - Archiving Flags
Data type: PPET_PXARCID_TABOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for PVSDBENG_PNODE_GET 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_t_pnodid | TYPE PPET_PNODID_TAB, " | |||
| lv_t_pnode_ident | TYPE PPET_PNODID_TAB, " | |||
| lv_im_flg_with_dep_nodes | TYPE C, " PPET_FALSE | |||
| lv_t_pnodtx | TYPE PPET_PNODTX_TAB, " | |||
| lv_t_palt_ident | TYPE PPET_PALTID_TAB, " | |||
| lv_t_paltid | TYPE PPET_PALTID_TAB, " | |||
| lv_t_langu_tab | TYPE PPET_LANGU_TAB, " | |||
| lv_t_palttx | TYPE PPET_PALTTX_TAB, " | |||
| lv_flg_pnodid_skip | TYPE C, " ' ' | |||
| lv_t_posvid | TYPE PPET_POSVID_TAB, " | |||
| lv_flg_alt_all | TYPE C, " 'X' | |||
| lv_t_posvtx | TYPE PPET_POSVTX_TAB, " | |||
| lv_flg_with_text | TYPE C, " 'X' | |||
| lv_t_dep_pnodid | TYPE PPET_PNODID_TAB, " | |||
| lv_flg_with_posvid | TYPE C, " | |||
| lv_t_dep_pnodtx | TYPE PPET_PNODTX_TAB, " | |||
| lv_im_flg_with_pxarcid | TYPE C, " PPET_FALSE | |||
| lv_t_pxarcid | TYPE PPET_PXARCID_TAB, " | |||
| lv_im_applobj_type | TYPE PVS_APPLOBJ_TYPE. " |
|   CALL FUNCTION 'PVSDBENG_PNODE_GET' "NOTRANSL: PVS-Knoten anwendungsunabhängige Daten von DB lesen |
| EXPORTING | ||
| T_PNODE_IDENT | = lv_t_pnode_ident | |
| IM_FLG_WITH_DEP_NODES | = lv_im_flg_with_dep_nodes | |
| T_PALT_IDENT | = lv_t_palt_ident | |
| T_LANGU_TAB | = lv_t_langu_tab | |
| FLG_PNODID_SKIP | = lv_flg_pnodid_skip | |
| FLG_ALT_ALL | = lv_flg_alt_all | |
| FLG_WITH_TEXT | = lv_flg_with_text | |
| FLG_WITH_POSVID | = lv_flg_with_posvid | |
| IM_FLG_WITH_PXARCID | = lv_im_flg_with_pxarcid | |
| IM_APPLOBJ_TYPE | = lv_im_applobj_type | |
| IMPORTING | ||
| T_PNODID | = lv_t_pnodid | |
| T_PNODTX | = lv_t_pnodtx | |
| T_PALTID | = lv_t_paltid | |
| T_PALTTX | = lv_t_palttx | |
| T_POSVID | = lv_t_posvid | |
| T_POSVTX | = lv_t_posvtx | |
| T_DEP_PNODID | = lv_t_dep_pnodid | |
| T_DEP_PNODTX | = lv_t_dep_pnodtx | |
| T_PXARCID | = lv_t_pxarcid | |
| . " PVSDBENG_PNODE_GET | ||
ABAP code using 7.40 inline data declarations to call FM PVSDBENG_PNODE_GET
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_im_flg_with_dep_nodes) | = PPET_FALSE. | |||
| DATA(ld_flg_pnodid_skip) | = ' '. | |||
| DATA(ld_flg_alt_all) | = 'X'. | |||
| DATA(ld_flg_with_text) | = 'X'. | |||
| DATA(ld_im_flg_with_pxarcid) | = PPET_FALSE. | |||
Search for further information about these or an SAP related objects