SAP HR_AT_GET_AUBGR_EIGENSCH_AUSPR Function Module for









HR_AT_GET_AUBGR_EIGENSCH_AUSPR is a standard hr at get aubgr eigensch auspr 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 hr at get aubgr eigensch auspr FM, simply by entering the name HR_AT_GET_AUBGR_EIGENSCH_AUSPR into the relevant SAP transaction such as SE37 or SE38.

Function Group: 0PAE
Program Name: SAPL0PAE
Main Program: SAPL0PAE
Appliation area: P
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function HR_AT_GET_AUBGR_EIGENSCH_AUSPR 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 'HR_AT_GET_AUBGR_EIGENSCH_AUSPR'"
EXPORTING
AUBGR = "
ETYPE = "
DATUM = "

IMPORTING
EAUSP = "
AUBGT = "
ETYPT = "
EAUPT = "

EXCEPTIONS
T5A1I_ERROR = 1 T5A1D_NOT_FOUND = 2
.



IMPORTING Parameters details for HR_AT_GET_AUBGR_EIGENSCH_AUSPR

AUBGR -

Data type: T5A1D-AUBGR
Optional: No
Call by Reference: Yes

ETYPE -

Data type: T5A1D-ETYPE
Optional: No
Call by Reference: Yes

DATUM -

Data type: T5A1D-ENDDA
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for HR_AT_GET_AUBGR_EIGENSCH_AUSPR

EAUSP -

Data type: T5A1D-EAUSP
Optional: No
Call by Reference: Yes

AUBGT -

Data type: T5A1J-AUBGT
Optional: No
Call by Reference: Yes

ETYPT -

Data type: T5A1G-ETYPT
Optional: No
Call by Reference: Yes

EAUPT -

Data type: T5A1H-EAUPT
Optional: No
Call by Reference: Yes

EXCEPTIONS details

T5A1I_ERROR -

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

T5A1D_NOT_FOUND -

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

Copy and paste ABAP code example for HR_AT_GET_AUBGR_EIGENSCH_AUSPR 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_aubgr  TYPE T5A1D-AUBGR, "   
lv_eausp  TYPE T5A1D-EAUSP, "   
lv_t5a1i_error  TYPE T5A1D, "   
lv_aubgt  TYPE T5A1J-AUBGT, "   
lv_etype  TYPE T5A1D-ETYPE, "   
lv_t5a1d_not_found  TYPE T5A1D, "   
lv_datum  TYPE T5A1D-ENDDA, "   
lv_etypt  TYPE T5A1G-ETYPT, "   
lv_eaupt  TYPE T5A1H-EAUPT. "   

  CALL FUNCTION 'HR_AT_GET_AUBGR_EIGENSCH_AUSPR'  "
    EXPORTING
         AUBGR = lv_aubgr
         ETYPE = lv_etype
         DATUM = lv_datum
    IMPORTING
         EAUSP = lv_eausp
         AUBGT = lv_aubgt
         ETYPT = lv_etypt
         EAUPT = lv_eaupt
    EXCEPTIONS
        T5A1I_ERROR = 1
        T5A1D_NOT_FOUND = 2
. " HR_AT_GET_AUBGR_EIGENSCH_AUSPR




ABAP code using 7.40 inline data declarations to call FM HR_AT_GET_AUBGR_EIGENSCH_AUSPR

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 AUBGR FROM T5A1D INTO @DATA(ld_aubgr).
 
"SELECT single EAUSP FROM T5A1D INTO @DATA(ld_eausp).
 
 
"SELECT single AUBGT FROM T5A1J INTO @DATA(ld_aubgt).
 
"SELECT single ETYPE FROM T5A1D INTO @DATA(ld_etype).
 
 
"SELECT single ENDDA FROM T5A1D INTO @DATA(ld_datum).
 
"SELECT single ETYPT FROM T5A1G INTO @DATA(ld_etypt).
 
"SELECT single EAUPT FROM T5A1H INTO @DATA(ld_eaupt).
 


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!