SAP BAPI_READ_INDX_POSDATEN Function Module for NO LONGER IN USE !!! This module has been closed down!









BAPI_READ_INDX_POSDATEN is a standard bapi read indx posdaten SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NO LONGER IN USE !!! This module has been closed down! 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 bapi read indx posdaten FM, simply by entering the name BAPI_READ_INDX_POSDATEN into the relevant SAP transaction such as SE37 or SE38.

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



Function BAPI_READ_INDX_POSDATEN 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 'BAPI_READ_INDX_POSDATEN'"NO LONGER IN USE !!!  This module has been closed down!
EXPORTING
I_PEBIS = "
I_PEVON = "
* I_RRCTY = '0' "
I_RSUBD = "
I_RVERS = "
I_RYEAR = "
* I_WATYP = ' ' "

IMPORTING
E_GENDAT = "

TABLES
POSDATEN = "

EXCEPTIONS
NOT_FOUND = 1
.



IMPORTING Parameters details for BAPI_READ_INDX_POSDATEN

I_PEBIS -

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

I_PEVON -

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

I_RRCTY -

Data type: T863Y-RRCTY
Default: '0'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_RSUBD -

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

I_RVERS -

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

I_RYEAR -

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

I_WATYP -

Data type: T863Y-WATYP
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for BAPI_READ_INDX_POSDATEN

E_GENDAT -

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

TABLES Parameters details for BAPI_READ_INDX_POSDATEN

POSDATEN -

Data type: GLEX_POSDA
Optional: 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)

Copy and paste ABAP code example for BAPI_READ_INDX_POSDATEN 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_i_pebis  TYPE T863Y-PEBIS, "   
lv_e_gendat  TYPE T863Y-GENDAT, "   
lt_posdaten  TYPE STANDARD TABLE OF GLEX_POSDA, "   
lv_not_found  TYPE GLEX_POSDA, "   
lv_i_pevon  TYPE T863Y-PEVON, "   
lv_i_rrcty  TYPE T863Y-RRCTY, "   '0'
lv_i_rsubd  TYPE T863Y-RSUBD, "   
lv_i_rvers  TYPE T863Y-RVERS, "   
lv_i_ryear  TYPE T863Y-RYEAR, "   
lv_i_watyp  TYPE T863Y-WATYP. "   SPACE

  CALL FUNCTION 'BAPI_READ_INDX_POSDATEN'  "NO LONGER IN USE !!! This module has been closed down!
    EXPORTING
         I_PEBIS = lv_i_pebis
         I_PEVON = lv_i_pevon
         I_RRCTY = lv_i_rrcty
         I_RSUBD = lv_i_rsubd
         I_RVERS = lv_i_rvers
         I_RYEAR = lv_i_ryear
         I_WATYP = lv_i_watyp
    IMPORTING
         E_GENDAT = lv_e_gendat
    TABLES
         POSDATEN = lt_posdaten
    EXCEPTIONS
        NOT_FOUND = 1
. " BAPI_READ_INDX_POSDATEN




ABAP code using 7.40 inline data declarations to call FM BAPI_READ_INDX_POSDATEN

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 PEBIS FROM T863Y INTO @DATA(ld_i_pebis).
 
"SELECT single GENDAT FROM T863Y INTO @DATA(ld_e_gendat).
 
 
 
"SELECT single PEVON FROM T863Y INTO @DATA(ld_i_pevon).
 
"SELECT single RRCTY FROM T863Y INTO @DATA(ld_i_rrcty).
DATA(ld_i_rrcty) = '0'.
 
"SELECT single RSUBD FROM T863Y INTO @DATA(ld_i_rsubd).
 
"SELECT single RVERS FROM T863Y INTO @DATA(ld_i_rvers).
 
"SELECT single RYEAR FROM T863Y INTO @DATA(ld_i_ryear).
 
"SELECT single WATYP FROM T863Y INTO @DATA(ld_i_watyp).
DATA(ld_i_watyp) = ' '.
 


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!