SAP POWLR_FEEDER_PROVISION Function Module for Remote Function for retrive Data









POWLR_FEEDER_PROVISION is a standard powlr feeder provision SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Remote Function for retrive Data 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 powlr feeder provision FM, simply by entering the name POWLR_FEEDER_PROVISION into the relevant SAP transaction such as SE37 or SE38.

Function Group: POWLR_FUGR
Program Name: SAPLPOWLR_FUGR
Main Program: SAPLPOWLR_FUGR
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function POWLR_FEEDER_PROVISION 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 'POWLR_FEEDER_PROVISION'"Remote Function for retrive Data
EXPORTING
I_POWLR_CONTEXT = "Provides Remote POWL information
* I_SELCRIT_VALUES = "rsparams Table
I_REQUESTED = "Remote POWL Request information.
* I_FORMAT = "Remote POWL Format Type

IMPORTING
E_ACTION_DEFS = "action meta description
E_OBJECT_DEF = "
E_FIELDCAT_DEF = "Field catalog META description
E_OBJECTS = "
E_STATUS_FLAGS = "Remote POWL Status Flag
E_SELCRIT_DEFS = "Selection criteria meta description
E_MESSAGES = "Message META description
E_DEFAULT_VALUES = "rsparams Table
E_SELCRIT_FIELD = "Remote POWL Selection critiria return value

CHANGING
* C_IGNORE_TYPE_VALIDATION = "Ignore remote data type validation in the host system

EXCEPTIONS
SYSTEM_FAILURE = 1
.



IMPORTING Parameters details for POWLR_FEEDER_PROVISION

I_POWLR_CONTEXT - Provides Remote POWL information

Data type: POWLR_CONTEXT_STY
Optional: No
Call by Reference: No ( called with pass by value option)

I_SELCRIT_VALUES - rsparams Table

Data type: RSPARAMS_TT
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_REQUESTED - Remote POWL Request information.

Data type: POWLR_REQUEST_INFO_STY
Optional: No
Call by Reference: No ( called with pass by value option)

I_FORMAT - Remote POWL Format Type

Data type: POWLR_FORMAT_OPTIONS_STY
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for POWLR_FEEDER_PROVISION

E_ACTION_DEFS - action meta description

Data type: POWL_ACTDESCR_TTY
Optional: No
Call by Reference: No ( called with pass by value option)

E_OBJECT_DEF -

Data type: STRING
Optional: No
Call by Reference: No ( called with pass by value option)

E_FIELDCAT_DEF - Field catalog META description

Data type: POWL_FIELDCAT_TTY
Optional: No
Call by Reference: No ( called with pass by value option)

E_OBJECTS -

Data type: STRING
Optional: No
Call by Reference: No ( called with pass by value option)

E_STATUS_FLAGS - Remote POWL Status Flag

Data type: POWLR_STATUS_FLAGS_STY
Optional: No
Call by Reference: No ( called with pass by value option)

E_SELCRIT_DEFS - Selection criteria meta description

Data type: POWL_SELCRIT_TTY
Optional: No
Call by Reference: No ( called with pass by value option)

E_MESSAGES - Message META description

Data type: POWL_MSG_TTY
Optional: No
Call by Reference: No ( called with pass by value option)

E_DEFAULT_VALUES - rsparams Table

Data type: RSPARAMS_TT
Optional: No
Call by Reference: No ( called with pass by value option)

E_SELCRIT_FIELD - Remote POWL Selection critiria return value

Data type: POWLR_SELCRIT_FIELD_TTY
Optional: No
Call by Reference: No ( called with pass by value option)

CHANGING Parameters details for POWLR_FEEDER_PROVISION

C_IGNORE_TYPE_VALIDATION - Ignore remote data type validation in the host system

Data type: BOOLEAN
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

SYSTEM_FAILURE -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for POWLR_FEEDER_PROVISION 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_e_action_defs  TYPE POWL_ACTDESCR_TTY, "   
lv_system_failure  TYPE POWL_ACTDESCR_TTY, "   
lv_i_powlr_context  TYPE POWLR_CONTEXT_STY, "   
lv_c_ignore_type_validation  TYPE BOOLEAN, "   
lv_e_object_def  TYPE STRING, "   
lv_i_selcrit_values  TYPE RSPARAMS_TT, "   
lv_i_requested  TYPE POWLR_REQUEST_INFO_STY, "   
lv_e_fieldcat_def  TYPE POWL_FIELDCAT_TTY, "   
lv_i_format  TYPE POWLR_FORMAT_OPTIONS_STY, "   
lv_e_objects  TYPE STRING, "   
lv_e_status_flags  TYPE POWLR_STATUS_FLAGS_STY, "   
lv_e_selcrit_defs  TYPE POWL_SELCRIT_TTY, "   
lv_e_messages  TYPE POWL_MSG_TTY, "   
lv_e_default_values  TYPE RSPARAMS_TT, "   
lv_e_selcrit_field  TYPE POWLR_SELCRIT_FIELD_TTY. "   

  CALL FUNCTION 'POWLR_FEEDER_PROVISION'  "Remote Function for retrive Data
    EXPORTING
         I_POWLR_CONTEXT = lv_i_powlr_context
         I_SELCRIT_VALUES = lv_i_selcrit_values
         I_REQUESTED = lv_i_requested
         I_FORMAT = lv_i_format
    IMPORTING
         E_ACTION_DEFS = lv_e_action_defs
         E_OBJECT_DEF = lv_e_object_def
         E_FIELDCAT_DEF = lv_e_fieldcat_def
         E_OBJECTS = lv_e_objects
         E_STATUS_FLAGS = lv_e_status_flags
         E_SELCRIT_DEFS = lv_e_selcrit_defs
         E_MESSAGES = lv_e_messages
         E_DEFAULT_VALUES = lv_e_default_values
         E_SELCRIT_FIELD = lv_e_selcrit_field
    CHANGING
         C_IGNORE_TYPE_VALIDATION = lv_c_ignore_type_validation
    EXCEPTIONS
        SYSTEM_FAILURE = 1
. " POWLR_FEEDER_PROVISION




ABAP code using 7.40 inline data declarations to call FM POWLR_FEEDER_PROVISION

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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!