SAP PFO_RFC_GET_FUNCTION Function Module for NOTRANSL: Lese FuBa zu Methode via RFC
PFO_RFC_GET_FUNCTION is a standard pfo rfc get function 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: Lese FuBa zu Methode via RFC 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 pfo rfc get function FM, simply by entering the name PFO_RFC_GET_FUNCTION into the relevant SAP transaction such as SE37 or SE38.
Function Group: PFO_RFC_INTERFACE
Program Name: SAPLPFO_RFC_INTERFACE
Main Program: SAPLPFO_RFC_INTERFACE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function PFO_RFC_GET_FUNCTION 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 'PFO_RFC_GET_FUNCTION'"NOTRANSL: Lese FuBa zu Methode via RFC.
EXPORTING
ID_KIND = "Object Kind (References Entity)
* ID_TYPE = "Object Type
ID_METHOD = "Method of an Object in Portfolio Assignment
CHANGING
CD_FUNCTION = "Name of Assigned Function Module
EXCEPTIONS
NO_ENTRY = 1
IMPORTING Parameters details for PFO_RFC_GET_FUNCTION
ID_KIND - Object Kind (References Entity)
Data type: PFO_OBJKINDOptional: No
Call by Reference: No ( called with pass by value option)
ID_TYPE - Object Type
Data type: PFO_OBJTYPEOptional: Yes
Call by Reference: No ( called with pass by value option)
ID_METHOD - Method of an Object in Portfolio Assignment
Data type: PFO_METHODOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for PFO_RFC_GET_FUNCTION
CD_FUNCTION - Name of Assigned Function Module
Data type: PFO_FUNCTIONOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_ENTRY -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for PFO_RFC_GET_FUNCTION 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_id_kind | TYPE PFO_OBJKIND, " | |||
| lv_no_entry | TYPE PFO_OBJKIND, " | |||
| lv_cd_function | TYPE PFO_FUNCTION, " | |||
| lv_id_type | TYPE PFO_OBJTYPE, " | |||
| lv_id_method | TYPE PFO_METHOD. " |
|   CALL FUNCTION 'PFO_RFC_GET_FUNCTION' "NOTRANSL: Lese FuBa zu Methode via RFC |
| EXPORTING | ||
| ID_KIND | = lv_id_kind | |
| ID_TYPE | = lv_id_type | |
| ID_METHOD | = lv_id_method | |
| CHANGING | ||
| CD_FUNCTION | = lv_cd_function | |
| EXCEPTIONS | ||
| NO_ENTRY = 1 | ||
| . " PFO_RFC_GET_FUNCTION | ||
ABAP code using 7.40 inline data declarations to call FM PFO_RFC_GET_FUNCTION
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