SAP BAPI_QUALIFIC_GETLIST Function Module for Read qualifications profile









BAPI_QUALIFIC_GETLIST is a standard bapi qualific getlist SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Read qualifications profile 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 qualific getlist FM, simply by entering the name BAPI_QUALIFIC_GETLIST into the relevant SAP transaction such as SE37 or SE38.

Function Group: RHPE_QUALIFIC_BAPI
Program Name: SAPLRHPE_QUALIFIC_BAPI
Main Program:
Appliation area: H
Release date: 19-May-1998
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function BAPI_QUALIFIC_GETLIST 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_QUALIFIC_GETLIST'"Read qualifications profile
EXPORTING
PLVAR = "Plan version
OTYPE = "Type of person
SOBID = "Person ID
* FROM_DATE = '19000101' "Start of reporting period
* TO_DATE = '99990101' "End of reporting period
* NO_HALFVALUE = "'X' -> Ignore depreciation meter

IMPORTING
RETURN = "Return

TABLES
QUALIFICATIONPROFILE = "Qualifications profile
.



IMPORTING Parameters details for BAPI_QUALIFIC_GETLIST

PLVAR - Plan version

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

OTYPE - Type of person

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

SOBID - Person ID

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

FROM_DATE - Start of reporting period

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

TO_DATE - End of reporting period

Data type: BAPIQUALIFIC-TO_DATE
Default: '99990101'
Optional: Yes
Call by Reference: No ( called with pass by value option)

NO_HALFVALUE - 'X' -> Ignore depreciation meter

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

EXPORTING Parameters details for BAPI_QUALIFIC_GETLIST

RETURN - Return

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

TABLES Parameters details for BAPI_QUALIFIC_GETLIST

QUALIFICATIONPROFILE - Qualifications profile

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

Copy and paste ABAP code example for BAPI_QUALIFIC_GETLIST 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 BAPIQUALIFIC-PLVAR, "   
lv_return  TYPE BAPIRETURN1, "   
lt_qualificationprofile  TYPE STANDARD TABLE OF BAPIQUALIFIC_TAB, "   
lv_otype  TYPE BAPIQUALIFIC-OTYPE, "   
lv_sobid  TYPE BAPIQUALIFIC-SOBID, "   
lv_from_date  TYPE BAPIQUALIFIC-FROM_DATE, "   '19000101'
lv_to_date  TYPE BAPIQUALIFIC-TO_DATE, "   '99990101'
lv_no_halfvalue  TYPE BAPIQUALIFIC-NO_HALFVALUE. "   

  CALL FUNCTION 'BAPI_QUALIFIC_GETLIST'  "Read qualifications profile
    EXPORTING
         PLVAR = lv_plvar
         OTYPE = lv_otype
         SOBID = lv_sobid
         FROM_DATE = lv_from_date
         TO_DATE = lv_to_date
         NO_HALFVALUE = lv_no_halfvalue
    IMPORTING
         RETURN = lv_return
    TABLES
         QUALIFICATIONPROFILE = lt_qualificationprofile
. " BAPI_QUALIFIC_GETLIST




ABAP code using 7.40 inline data declarations to call FM BAPI_QUALIFIC_GETLIST

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 PLVAR FROM BAPIQUALIFIC INTO @DATA(ld_plvar).
 
 
 
"SELECT single OTYPE FROM BAPIQUALIFIC INTO @DATA(ld_otype).
 
"SELECT single SOBID FROM BAPIQUALIFIC INTO @DATA(ld_sobid).
 
"SELECT single FROM_DATE FROM BAPIQUALIFIC INTO @DATA(ld_from_date).
DATA(ld_from_date) = '19000101'.
 
"SELECT single TO_DATE FROM BAPIQUALIFIC INTO @DATA(ld_to_date).
DATA(ld_to_date) = '99990101'.
 
"SELECT single NO_HALFVALUE FROM BAPIQUALIFIC INTO @DATA(ld_no_halfvalue).
 


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!