SAP FI_PSO_NAMID_FILL Function Module for
FI_PSO_NAMID_FILL is a standard fi pso namid fill SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 fi pso namid fill FM, simply by entering the name FI_PSO_NAMID_FILL into the relevant SAP transaction such as SE37 or SE38.
Function Group: F0KK
Program Name: SAPLF0KK
Main Program: SAPLF0KK
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FI_PSO_NAMID_FILL 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 'FI_PSO_NAMID_FILL'".
EXPORTING
I_NAME1 = "
I_NAME2 = "
I_NAME3 = "
I_NAME4 = "
I_ORT01 = "
CHANGING
C_NAMID = "
IMPORTING Parameters details for FI_PSO_NAMID_FILL
I_NAME1 -
Data type: BSEC-NAME1Optional: No
Call by Reference: No ( called with pass by value option)
I_NAME2 -
Data type: BSEC-NAME2Optional: No
Call by Reference: No ( called with pass by value option)
I_NAME3 -
Data type: BSEC-NAME3Optional: No
Call by Reference: No ( called with pass by value option)
I_NAME4 -
Data type: BSEC-NAME4Optional: No
Call by Reference: No ( called with pass by value option)
I_ORT01 -
Data type: BSEC-ORT01Optional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for FI_PSO_NAMID_FILL
C_NAMID -
Data type: PSO02-CPDIDOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FI_PSO_NAMID_FILL 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_c_namid | TYPE PSO02-CPDID, " | |||
| lv_i_name1 | TYPE BSEC-NAME1, " | |||
| lv_i_name2 | TYPE BSEC-NAME2, " | |||
| lv_i_name3 | TYPE BSEC-NAME3, " | |||
| lv_i_name4 | TYPE BSEC-NAME4, " | |||
| lv_i_ort01 | TYPE BSEC-ORT01. " |
|   CALL FUNCTION 'FI_PSO_NAMID_FILL' " |
| EXPORTING | ||
| I_NAME1 | = lv_i_name1 | |
| I_NAME2 | = lv_i_name2 | |
| I_NAME3 | = lv_i_name3 | |
| I_NAME4 | = lv_i_name4 | |
| I_ORT01 | = lv_i_ort01 | |
| CHANGING | ||
| C_NAMID | = lv_c_namid | |
| . " FI_PSO_NAMID_FILL | ||
ABAP code using 7.40 inline data declarations to call FM FI_PSO_NAMID_FILL
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 CPDID FROM PSO02 INTO @DATA(ld_c_namid). | ||||
| "SELECT single NAME1 FROM BSEC INTO @DATA(ld_i_name1). | ||||
| "SELECT single NAME2 FROM BSEC INTO @DATA(ld_i_name2). | ||||
| "SELECT single NAME3 FROM BSEC INTO @DATA(ld_i_name3). | ||||
| "SELECT single NAME4 FROM BSEC INTO @DATA(ld_i_name4). | ||||
| "SELECT single ORT01 FROM BSEC INTO @DATA(ld_i_ort01). | ||||
Search for further information about these or an SAP related objects