SAP HRIQ_READ_INFTY_BUFFERED_DEEXP Function Module for









HRIQ_READ_INFTY_BUFFERED_DEEXP is a standard hriq read infty buffered deexp 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 hriq read infty buffered deexp FM, simply by entering the name HRIQ_READ_INFTY_BUFFERED_DEEXP into the relevant SAP transaction such as SE37 or SE38.

Function Group: HRPIQ00HRBASE_OM
Program Name: SAPLHRPIQ00HRBASE_OM
Main Program: SAPLHRPIQ00HRBASE_OM
Appliation area: H
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function HRIQ_READ_INFTY_BUFFERED_DEEXP 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 'HRIQ_READ_INFTY_BUFFERED_DEEXP'"
EXPORTING
* PLVAR = "
* WITH_STRU_AUTH = 'X' "
* BUFFER_MODE = 'X' "
* OTYPE = "
* OBJID = "
INFTY = "
* SUBTY = "
* ISTAT = "
* BEGDA = '19000101' "
* ENDDA = '99991231' "
* AUTH_FCODE = 'DISP' "

TABLES
* OBJECTS = "
INNNN = "
* HRTNNNN = "

EXCEPTIONS
NO_ACTIVE_PLVAR = 1
.



IMPORTING Parameters details for HRIQ_READ_INFTY_BUFFERED_DEEXP

PLVAR -

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

WITH_STRU_AUTH -

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

BUFFER_MODE -

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

OTYPE -

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

OBJID -

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

INFTY -

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

SUBTY -

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

ISTAT -

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

BEGDA -

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

ENDDA -

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

AUTH_FCODE -

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

TABLES Parameters details for HRIQ_READ_INFTY_BUFFERED_DEEXP

OBJECTS -

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

INNNN -

Data type:
Optional: No
Call by Reference: Yes

HRTNNNN -

Data type: HRTDBTAB
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

NO_ACTIVE_PLVAR -

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

Copy and paste ABAP code example for HRIQ_READ_INFTY_BUFFERED_DEEXP 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_plvar  TYPE PLVAR, "   
lt_objects  TYPE STANDARD TABLE OF HROBJECT, "   
lv_no_active_plvar  TYPE HROBJECT, "   
lv_with_stru_auth  TYPE FLAG, "   'X'
lv_buffer_mode  TYPE FLAG, "   'X'
lt_innnn  TYPE STANDARD TABLE OF FLAG, "   
lv_otype  TYPE OTYPE, "   
lv_objid  TYPE OTYPE, "   
lt_hrtnnnn  TYPE STANDARD TABLE OF HRTDBTAB, "   
lv_infty  TYPE INFOTYP, "   
lv_subty  TYPE INFOTYP, "   
lv_istat  TYPE ISTAT_D, "   
lv_begda  TYPE BEGDATUM, "   '19000101'
lv_endda  TYPE ENDDATUM, "   '99991231'
lv_auth_fcode  TYPE FCODE. "   'DISP'

  CALL FUNCTION 'HRIQ_READ_INFTY_BUFFERED_DEEXP'  "
    EXPORTING
         PLVAR = lv_plvar
         WITH_STRU_AUTH = lv_with_stru_auth
         BUFFER_MODE = lv_buffer_mode
         OTYPE = lv_otype
         OBJID = lv_objid
         INFTY = lv_infty
         SUBTY = lv_subty
         ISTAT = lv_istat
         BEGDA = lv_begda
         ENDDA = lv_endda
         AUTH_FCODE = lv_auth_fcode
    TABLES
         OBJECTS = lt_objects
         INNNN = lt_innnn
         HRTNNNN = lt_hrtnnnn
    EXCEPTIONS
        NO_ACTIVE_PLVAR = 1
. " HRIQ_READ_INFTY_BUFFERED_DEEXP




ABAP code using 7.40 inline data declarations to call FM HRIQ_READ_INFTY_BUFFERED_DEEXP

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.

 
 
 
DATA(ld_with_stru_auth) = 'X'.
 
DATA(ld_buffer_mode) = 'X'.
 
 
 
 
 
 
 
 
DATA(ld_begda) = '19000101'.
 
DATA(ld_endda) = '99991231'.
 
DATA(ld_auth_fcode) = 'DISP'.
 


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!