SAP HRTRAINING_QUALI_PROFILE_READ Function Module for









HRTRAINING_QUALI_PROFILE_READ is a standard hrtraining quali profile read 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 hrtraining quali profile read FM, simply by entering the name HRTRAINING_QUALI_PROFILE_READ into the relevant SAP transaction such as SE37 or SE38.

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



Function HRTRAINING_QUALI_PROFILE_READ 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 'HRTRAINING_QUALI_PROFILE_READ'"
EXPORTING
* IV_SUBTY = "Relationship
* IV_BUFFER_FLAG = 'X' "
* IV_WEGID = "Evaluation Path
* IV_BEGDA = SY-DATUM "Start Date
* IV_ENDDA = SY-DATUM "End date
* IV_WITH_STEXT = 'X' "with texts
* IV_WITH_QK_INFO = 'X' "
* IV_CONCATENATE_SCALE = 'X' "Single-Character Indicator
* IV_CHECK_NOTE = "
IS_OBJECTS = "

IMPORTING
ET_PROFILE_Q = "Qualifications / Requirements
ET_PROFILE_QB = "

EXCEPTIONS
NO_AUTHORITY = 1 UNDEFINED = 2
.



IMPORTING Parameters details for HRTRAINING_QUALI_PROFILE_READ

IV_SUBTY - Relationship

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

IV_BUFFER_FLAG -

Data type: FLAG
Default: 'X'
Optional: No
Call by Reference: Yes

IV_WEGID - Evaluation Path

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

IV_BEGDA - Start Date

Data type: HRP1001-BEGDA
Default: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_ENDDA - End date

Data type: HRP1001-ENDDA
Default: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_WITH_STEXT - with texts

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

IV_WITH_QK_INFO -

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

IV_CONCATENATE_SCALE - Single-Character Indicator

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

IV_CHECK_NOTE -

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

IS_OBJECTS -

Data type: HRSOBID
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for HRTRAINING_QUALI_PROFILE_READ

ET_PROFILE_Q - Qualifications / Requirements

Data type: /ISDFPS/QUALI_PROFILE_TAB
Optional: No
Call by Reference: Yes

ET_PROFILE_QB -

Data type: /ISDFPS/QUALI_PROFILE_TAB
Optional: No
Call by Reference: Yes

EXCEPTIONS details

NO_AUTHORITY - No Authorization

Data type:
Optional: No
Call by Reference: Yes

UNDEFINED -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for HRTRAINING_QUALI_PROFILE_READ 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_iv_subty  TYPE HRP1001-SUBTY, "   
lv_et_profile_q  TYPE /ISDFPS/QUALI_PROFILE_TAB, "   
lv_no_authority  TYPE /ISDFPS/QUALI_PROFILE_TAB, "   
lv_iv_buffer_flag  TYPE FLAG, "   'X'
lv_iv_wegid  TYPE T77AW-WEGID, "   
lv_undefined  TYPE T77AW, "   
lv_et_profile_qb  TYPE /ISDFPS/QUALI_PROFILE_TAB, "   
lv_iv_begda  TYPE HRP1001-BEGDA, "   SY-DATUM
lv_iv_endda  TYPE HRP1001-ENDDA, "   SY-DATUM
lv_iv_with_stext  TYPE CHAR1, "   'X'
lv_iv_with_qk_info  TYPE CHAR1, "   'X'
lv_iv_concatenate_scale  TYPE CHAR1, "   'X'
lv_iv_check_note  TYPE CHAR1, "   
lv_is_objects  TYPE HRSOBID. "   

  CALL FUNCTION 'HRTRAINING_QUALI_PROFILE_READ'  "
    EXPORTING
         IV_SUBTY = lv_iv_subty
         IV_BUFFER_FLAG = lv_iv_buffer_flag
         IV_WEGID = lv_iv_wegid
         IV_BEGDA = lv_iv_begda
         IV_ENDDA = lv_iv_endda
         IV_WITH_STEXT = lv_iv_with_stext
         IV_WITH_QK_INFO = lv_iv_with_qk_info
         IV_CONCATENATE_SCALE = lv_iv_concatenate_scale
         IV_CHECK_NOTE = lv_iv_check_note
         IS_OBJECTS = lv_is_objects
    IMPORTING
         ET_PROFILE_Q = lv_et_profile_q
         ET_PROFILE_QB = lv_et_profile_qb
    EXCEPTIONS
        NO_AUTHORITY = 1
        UNDEFINED = 2
. " HRTRAINING_QUALI_PROFILE_READ




ABAP code using 7.40 inline data declarations to call FM HRTRAINING_QUALI_PROFILE_READ

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 SUBTY FROM HRP1001 INTO @DATA(ld_iv_subty).
 
 
 
DATA(ld_iv_buffer_flag) = 'X'.
 
"SELECT single WEGID FROM T77AW INTO @DATA(ld_iv_wegid).
 
 
 
"SELECT single BEGDA FROM HRP1001 INTO @DATA(ld_iv_begda).
DATA(ld_iv_begda) = SY-DATUM.
 
"SELECT single ENDDA FROM HRP1001 INTO @DATA(ld_iv_endda).
DATA(ld_iv_endda) = SY-DATUM.
 
DATA(ld_iv_with_stext) = 'X'.
 
DATA(ld_iv_with_qk_info) = 'X'.
 
DATA(ld_iv_concatenate_scale) = 'X'.
 
 
 


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!