SAP Function Modules

HRIQ_STUDENT_DEQUEUE_RFC SAP Function module







HRIQ_STUDENT_DEQUEUE_RFC is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.

See here to view full function module documentation and code listing, simply by entering the name HRIQ_STUDENT_DEQUEUE_RFC into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: HRPIQ00AUDIT_RFC
Released Date: Not Released
Processing type: Remote-Enabled
remote enabled module settings


Pattern for FM HRIQ_STUDENT_DEQUEUE_RFC - HRIQ STUDENT DEQUEUE RFC





CALL FUNCTION 'HRIQ_STUDENT_DEQUEUE_RFC' "
  EXPORTING
    plvar =                     " plvar         Plan Version
    objid =                     " objektid      Object ID
*   dequeue_st_only =           " flag          General Indicator
*   dequeue_bp_only =           " flag          General Indicator
*   use_om_buffer =             " flag          General Indicator
*   dequeue_student12 =         " flag          General Indicator
*   bapi_mode = 'X'             " flag          General Indicator
  IMPORTING
    et_return =                 " bapiret2_t    Return Table
    .  "  HRIQ_STUDENT_DEQUEUE_RFC

ABAP code example for Function Module HRIQ_STUDENT_DEQUEUE_RFC





The ABAP code below is a full code listing to execute function module HRIQ_STUDENT_DEQUEUE_RFC including all data declarations. The code uses 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 original method of declaring data variables up front. 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).

DATA:
ld_et_return  TYPE BAPIRET2_T .

DATA(ld_plvar) = 'Check type of data required'.
DATA(ld_objid) = 'Check type of data required'.
DATA(ld_dequeue_st_only) = 'Check type of data required'.
DATA(ld_dequeue_bp_only) = 'Check type of data required'.
DATA(ld_use_om_buffer) = 'Check type of data required'.
DATA(ld_dequeue_student12) = 'Check type of data required'.
DATA(ld_bapi_mode) = 'Check type of data required'. . CALL FUNCTION 'HRIQ_STUDENT_DEQUEUE_RFC' EXPORTING plvar = ld_plvar objid = ld_objid * dequeue_st_only = ld_dequeue_st_only * dequeue_bp_only = ld_dequeue_bp_only * use_om_buffer = ld_use_om_buffer * dequeue_student12 = ld_dequeue_student12 * bapi_mode = ld_bapi_mode IMPORTING et_return = ld_et_return . " HRIQ_STUDENT_DEQUEUE_RFC
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.

DATA:
ld_et_return  TYPE BAPIRET2_T ,
ld_plvar  TYPE PLVAR ,
ld_objid  TYPE OBJEKTID ,
ld_dequeue_st_only  TYPE FLAG ,
ld_dequeue_bp_only  TYPE FLAG ,
ld_use_om_buffer  TYPE FLAG ,
ld_dequeue_student12  TYPE FLAG ,
ld_bapi_mode  TYPE FLAG .

ld_plvar = 'Check type of data required'.
ld_objid = 'Check type of data required'.
ld_dequeue_st_only = 'Check type of data required'.
ld_dequeue_bp_only = 'Check type of data required'.
ld_use_om_buffer = 'Check type of data required'.
ld_dequeue_student12 = 'Check type of data required'.
ld_bapi_mode = 'Check type of data required'.

Contribute (Add Comments)

Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name HRIQ_STUDENT_DEQUEUE_RFC or its description.