SAP FIPOS_READ_WITH_OPTIONS Function Module for









FIPOS_READ_WITH_OPTIONS is a standard fipos read with options 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 fipos read with options FM, simply by entering the name FIPOS_READ_WITH_OPTIONS into the relevant SAP transaction such as SE37 or SE38.

Function Group: FM3R
Program Name: SAPLFM3R
Main Program:
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function FIPOS_READ_WITH_OPTIONS 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 'FIPOS_READ_WITH_OPTIONS'"
EXPORTING
IP_KEY_DATE = "

TABLES
* T_AENDAT = "
* T_KNZAEPO = "
* T_FICTR = "
* T_AENNAME = "
* T_ERFDAT = "
* T_ERFNAME = "
* T_FIKRS = "
* T_FIPOS = "
* T_FIPEX = "
T_FIPOS_TAB = "
* T_FIVOR = "
.



IMPORTING Parameters details for FIPOS_READ_WITH_OPTIONS

IP_KEY_DATE -

Data type: FMFPO-DATBIS
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for FIPOS_READ_WITH_OPTIONS

T_AENDAT -

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

T_KNZAEPO -

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

T_FICTR -

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

T_AENNAME -

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

T_ERFDAT -

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

T_ERFNAME -

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

T_FIKRS -

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

T_FIPOS -

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

T_FIPEX -

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

T_FIPOS_TAB -

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

T_FIVOR -

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

Copy and paste ABAP code example for FIPOS_READ_WITH_OPTIONS 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:
lt_t_aendat  TYPE STANDARD TABLE OF STRING, "   
lv_ip_key_date  TYPE FMFPO-DATBIS, "   
lt_t_knzaepo  TYPE STANDARD TABLE OF FMFPO, "   
lt_t_fictr  TYPE STANDARD TABLE OF FMFPO, "   
lt_t_aenname  TYPE STANDARD TABLE OF FMFPO, "   
lt_t_erfdat  TYPE STANDARD TABLE OF FMFPO, "   
lt_t_erfname  TYPE STANDARD TABLE OF FMFPO, "   
lt_t_fikrs  TYPE STANDARD TABLE OF FMFPO, "   
lt_t_fipos  TYPE STANDARD TABLE OF FMFPO, "   
lt_t_fipex  TYPE STANDARD TABLE OF FMFPO, "   
lt_t_fipos_tab  TYPE STANDARD TABLE OF IFMFIPOS, "   
lt_t_fivor  TYPE STANDARD TABLE OF IFMFIPOS. "   

  CALL FUNCTION 'FIPOS_READ_WITH_OPTIONS'  "
    EXPORTING
         IP_KEY_DATE = lv_ip_key_date
    TABLES
         T_AENDAT = lt_t_aendat
         T_KNZAEPO = lt_t_knzaepo
         T_FICTR = lt_t_fictr
         T_AENNAME = lt_t_aenname
         T_ERFDAT = lt_t_erfdat
         T_ERFNAME = lt_t_erfname
         T_FIKRS = lt_t_fikrs
         T_FIPOS = lt_t_fipos
         T_FIPEX = lt_t_fipex
         T_FIPOS_TAB = lt_t_fipos_tab
         T_FIVOR = lt_t_fivor
. " FIPOS_READ_WITH_OPTIONS




ABAP code using 7.40 inline data declarations to call FM FIPOS_READ_WITH_OPTIONS

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 DATBIS FROM FMFPO INTO @DATA(ld_ip_key_date).
 
 
 
 
 
 
 
 
 
 
 


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!