SAP PLM_PS_GET__INFO_NV Function Module for NOTRANSL: PLM PS: Zusätzliche Daten / abhängige Objekte zum Netzplanvorgan
PLM_PS_GET__INFO_NV is a standard plm ps get info nv 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: PLM PS: Zusätzliche Daten / abhängige Objekte zum Netzplanvorgan 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 ps get info nv FM, simply by entering the name PLM_PS_GET__INFO_NV into the relevant SAP transaction such as SE37 or SE38.
Function Group: PLM_PS_GET_DATA
Program Name: SAPLPLM_PS_GET_DATA
Main Program: SAPLPLM_PS_GET_DATA
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function PLM_PS_GET__INFO_NV 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_PS_GET__INFO_NV'"NOTRANSL: PLM PS: Zusätzliche Daten / abhängige Objekte zum Netzplanvorgan.
EXPORTING
* I_FLG_ADDITIONAL_INFO = 'X' "
I_ORDER_ID = "
I_ACTIVITY = "
I_SUB_ACTIVITY = "
TABLES
IT_INFO_ITEMS = "
* IT_FIELDS_TO_SELECT = "
ET_DATA_FIELDS = "
EXCEPTIONS
NOT_FOUND = 1 NOT_CUSTOMIZED = 2 NOT_AUTHORIZED = 3
IMPORTING Parameters details for PLM_PS_GET__INFO_NV
I_FLG_ADDITIONAL_INFO -
Data type: CDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_ORDER_ID -
Data type: AUFK-AUFNROptional: No
Call by Reference: No ( called with pass by value option)
I_ACTIVITY -
Data type: AFVC-VORNROptional: No
Call by Reference: No ( called with pass by value option)
I_SUB_ACTIVITY -
Data type: COOPRINF-UVORNOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for PLM_PS_GET__INFO_NV
IT_INFO_ITEMS -
Data type: PLM_FIELDTABLEOptional: No
Call by Reference: No ( called with pass by value option)
IT_FIELDS_TO_SELECT -
Data type: PLM_FIELDTABLEOptional: Yes
Call by Reference: No ( called with pass by value option)
ET_DATA_FIELDS -
Data type: PLM_PS_DATA_FIELDSOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NOT_CUSTOMIZED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NOT_AUTHORIZED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for PLM_PS_GET__INFO_NV 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_not_found | TYPE STRING, " | |||
| lt_it_info_items | TYPE STANDARD TABLE OF PLM_FIELDTABLE, " | |||
| lv_i_flg_additional_info | TYPE C, " 'X' | |||
| lv_i_order_id | TYPE AUFK-AUFNR, " | |||
| lv_not_customized | TYPE AUFK, " | |||
| lt_it_fields_to_select | TYPE STANDARD TABLE OF PLM_FIELDTABLE, " | |||
| lv_i_activity | TYPE AFVC-VORNR, " | |||
| lt_et_data_fields | TYPE STANDARD TABLE OF PLM_PS_DATA_FIELDS, " | |||
| lv_not_authorized | TYPE PLM_PS_DATA_FIELDS, " | |||
| lv_i_sub_activity | TYPE COOPRINF-UVORN. " |
|   CALL FUNCTION 'PLM_PS_GET__INFO_NV' "NOTRANSL: PLM PS: Zusätzliche Daten / abhängige Objekte zum Netzplanvorgan |
| EXPORTING | ||
| I_FLG_ADDITIONAL_INFO | = lv_i_flg_additional_info | |
| I_ORDER_ID | = lv_i_order_id | |
| I_ACTIVITY | = lv_i_activity | |
| I_SUB_ACTIVITY | = lv_i_sub_activity | |
| TABLES | ||
| IT_INFO_ITEMS | = lt_it_info_items | |
| IT_FIELDS_TO_SELECT | = lt_it_fields_to_select | |
| ET_DATA_FIELDS | = lt_et_data_fields | |
| EXCEPTIONS | ||
| NOT_FOUND = 1 | ||
| NOT_CUSTOMIZED = 2 | ||
| NOT_AUTHORIZED = 3 | ||
| . " PLM_PS_GET__INFO_NV | ||
ABAP code using 7.40 inline data declarations to call FM PLM_PS_GET__INFO_NV
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_i_flg_additional_info) | = 'X'. | |||
| "SELECT single AUFNR FROM AUFK INTO @DATA(ld_i_order_id). | ||||
| "SELECT single VORNR FROM AFVC INTO @DATA(ld_i_activity). | ||||
| "SELECT single UVORN FROM COOPRINF INTO @DATA(ld_i_sub_activity). | ||||
Search for further information about these or an SAP related objects