SAP HRIQ_BAPI_BASIC_CHECK_SHARED Function Module for
HRIQ_BAPI_BASIC_CHECK_SHARED is a standard hriq bapi basic check shared 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 bapi basic check shared FM, simply by entering the name HRIQ_BAPI_BASIC_CHECK_SHARED into the relevant SAP transaction such as SE37 or SE38.
Function Group: HRPIQ00BAPISERVICE
Program Name: SAPLHRPIQ00BAPISERVICE
Main Program: SAPLHRPIQ00BAPISERVICE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HRIQ_BAPI_BASIC_CHECK_SHARED 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_BAPI_BASIC_CHECK_SHARED'".
EXPORTING
IV_OTYPE = "
* IV_ARMD = ' ' "
IV_OBJID = "
* IV_CHECK_KEYDATE = 'X' "
* IV_ENQUEUE_OBJECT = "
* IV_SUBSCRIBE_CLEAR_BUFFER = "
* IV_STORE_MESSAGES = "
* IV_TESTRUN = "
* IV_LOG_HANDLE = "
* IV_ARD = ' ' "
IMPORTING
EV_OBJEC_BEGDA = "
EV_OBJEC_ENDDA = "
EV_MATNR = "
ET_RETURN = "
CHANGING
CV_PLVAR = "
CV_ISTAT = "
* CV_KEYDATE = "
IMPORTING Parameters details for HRIQ_BAPI_BASIC_CHECK_SHARED
IV_OTYPE -
Data type: OBJEC-OTYPEOptional: No
Call by Reference: Yes
IV_ARMD -
Data type: XFELDDefault: SPACE
Optional: Yes
Call by Reference: Yes
IV_OBJID -
Data type: OBJEC-OBJIDOptional: No
Call by Reference: Yes
IV_CHECK_KEYDATE -
Data type: XFELDDefault: 'X'
Optional: Yes
Call by Reference: Yes
IV_ENQUEUE_OBJECT -
Data type: XFELDOptional: Yes
Call by Reference: Yes
IV_SUBSCRIBE_CLEAR_BUFFER -
Data type: XFELDOptional: Yes
Call by Reference: Yes
IV_STORE_MESSAGES -
Data type: XFELDOptional: Yes
Call by Reference: Yes
IV_TESTRUN -
Data type: XFELDOptional: Yes
Call by Reference: Yes
IV_LOG_HANDLE -
Data type: CL_HRPIQ00_ERRORHANDLEROptional: Yes
Call by Reference: Yes
IV_ARD -
Data type: XFELDDefault: SPACE
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for HRIQ_BAPI_BASIC_CHECK_SHARED
EV_OBJEC_BEGDA -
Data type: OBJEC-BEGDAOptional: No
Call by Reference: Yes
EV_OBJEC_ENDDA -
Data type: OBJEC-ENDDAOptional: No
Call by Reference: Yes
EV_MATNR -
Data type: PIQSTUDENT12Optional: No
Call by Reference: Yes
ET_RETURN -
Data type: BAPIRET2_TOptional: No
Call by Reference: Yes
CHANGING Parameters details for HRIQ_BAPI_BASIC_CHECK_SHARED
CV_PLVAR -
Data type: OBJEC-PLVAROptional: No
Call by Reference: Yes
CV_ISTAT -
Data type: OBJEC-ISTATOptional: No
Call by Reference: Yes
CV_KEYDATE -
Data type: DOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for HRIQ_BAPI_BASIC_CHECK_SHARED 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_cv_plvar | TYPE OBJEC-PLVAR, " | |||
| lv_iv_otype | TYPE OBJEC-OTYPE, " | |||
| lv_ev_objec_begda | TYPE OBJEC-BEGDA, " | |||
| lv_iv_armd | TYPE XFELD, " SPACE | |||
| lv_cv_istat | TYPE OBJEC-ISTAT, " | |||
| lv_iv_objid | TYPE OBJEC-OBJID, " | |||
| lv_ev_objec_endda | TYPE OBJEC-ENDDA, " | |||
| lv_ev_matnr | TYPE PIQSTUDENT12, " | |||
| lv_cv_keydate | TYPE D, " | |||
| lv_iv_check_keydate | TYPE XFELD, " 'X' | |||
| lv_et_return | TYPE BAPIRET2_T, " | |||
| lv_iv_enqueue_object | TYPE XFELD, " | |||
| lv_iv_subscribe_clear_buffer | TYPE XFELD, " | |||
| lv_iv_store_messages | TYPE XFELD, " | |||
| lv_iv_testrun | TYPE XFELD, " | |||
| lv_iv_log_handle | TYPE CL_HRPIQ00_ERRORHANDLER, " | |||
| lv_iv_ard | TYPE XFELD. " SPACE |
|   CALL FUNCTION 'HRIQ_BAPI_BASIC_CHECK_SHARED' " |
| EXPORTING | ||
| IV_OTYPE | = lv_iv_otype | |
| IV_ARMD | = lv_iv_armd | |
| IV_OBJID | = lv_iv_objid | |
| IV_CHECK_KEYDATE | = lv_iv_check_keydate | |
| IV_ENQUEUE_OBJECT | = lv_iv_enqueue_object | |
| IV_SUBSCRIBE_CLEAR_BUFFER | = lv_iv_subscribe_clear_buffer | |
| IV_STORE_MESSAGES | = lv_iv_store_messages | |
| IV_TESTRUN | = lv_iv_testrun | |
| IV_LOG_HANDLE | = lv_iv_log_handle | |
| IV_ARD | = lv_iv_ard | |
| IMPORTING | ||
| EV_OBJEC_BEGDA | = lv_ev_objec_begda | |
| EV_OBJEC_ENDDA | = lv_ev_objec_endda | |
| EV_MATNR | = lv_ev_matnr | |
| ET_RETURN | = lv_et_return | |
| CHANGING | ||
| CV_PLVAR | = lv_cv_plvar | |
| CV_ISTAT | = lv_cv_istat | |
| CV_KEYDATE | = lv_cv_keydate | |
| . " HRIQ_BAPI_BASIC_CHECK_SHARED | ||
ABAP code using 7.40 inline data declarations to call FM HRIQ_BAPI_BASIC_CHECK_SHARED
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 OBJEC INTO @DATA(ld_cv_plvar). | ||||
| "SELECT single OTYPE FROM OBJEC INTO @DATA(ld_iv_otype). | ||||
| "SELECT single BEGDA FROM OBJEC INTO @DATA(ld_ev_objec_begda). | ||||
| DATA(ld_iv_armd) | = ' '. | |||
| "SELECT single ISTAT FROM OBJEC INTO @DATA(ld_cv_istat). | ||||
| "SELECT single OBJID FROM OBJEC INTO @DATA(ld_iv_objid). | ||||
| "SELECT single ENDDA FROM OBJEC INTO @DATA(ld_ev_objec_endda). | ||||
| DATA(ld_iv_check_keydate) | = 'X'. | |||
| DATA(ld_iv_ard) | = ' '. | |||
Search for further information about these or an SAP related objects