HRIQ_ISR_REPROCESSFLAG_CLEAR 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_ISR_REPROCESSFLAG_CLEAR into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
HRIQ_IAP_ISR
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'HRIQ_ISR_REPROCESSFLAG_CLEAR' "ISR Clear Reprocessing Flag
EXPORTING
* i_mode = SPACE " piqflag
i_viqmel = " viqmel
i_customizing = " v_tq85
* i_manum = " qmsm-manum
* i_fbcall = "
IMPORTING
e_qnqmasm0 = " qnqmasm0
e_qnqmaqmel0 = " qnqmaqmel0
e_buch = " qkz
e_qnqmama0 = " qnqmama0
TABLES
ti_iviqmfe = " wqmfe
ti_iviqmur = " wqmur
ti_iviqmsm = " wqmsm
ti_iviqmma = " wqmma
ti_ihpa = " ihpa
* te_container = " swcont
* te_lines = " tline
* et_return = " bapiret2_t
EXCEPTIONS
ACTION_STOPPED = 1 "
. " HRIQ_ISR_REPROCESSFLAG_CLEAR
The ABAP code below is a full code listing to execute function module HRIQ_ISR_REPROCESSFLAG_CLEAR 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).
| ld_e_qnqmasm0 | TYPE QNQMASM0 , |
| ld_e_qnqmaqmel0 | TYPE QNQMAQMEL0 , |
| ld_e_buch | TYPE QKZ , |
| ld_e_qnqmama0 | TYPE QNQMAMA0 , |
| it_ti_iviqmfe | TYPE STANDARD TABLE OF WQMFE,"TABLES PARAM |
| wa_ti_iviqmfe | LIKE LINE OF it_ti_iviqmfe , |
| it_ti_iviqmur | TYPE STANDARD TABLE OF WQMUR,"TABLES PARAM |
| wa_ti_iviqmur | LIKE LINE OF it_ti_iviqmur , |
| it_ti_iviqmsm | TYPE STANDARD TABLE OF WQMSM,"TABLES PARAM |
| wa_ti_iviqmsm | LIKE LINE OF it_ti_iviqmsm , |
| it_ti_iviqmma | TYPE STANDARD TABLE OF WQMMA,"TABLES PARAM |
| wa_ti_iviqmma | LIKE LINE OF it_ti_iviqmma , |
| it_ti_ihpa | TYPE STANDARD TABLE OF IHPA,"TABLES PARAM |
| wa_ti_ihpa | LIKE LINE OF it_ti_ihpa , |
| it_te_container | TYPE STANDARD TABLE OF SWCONT,"TABLES PARAM |
| wa_te_container | LIKE LINE OF it_te_container , |
| it_te_lines | TYPE STANDARD TABLE OF TLINE,"TABLES PARAM |
| wa_te_lines | LIKE LINE OF it_te_lines , |
| it_et_return | TYPE STANDARD TABLE OF BAPIRET2_T,"TABLES PARAM |
| wa_et_return | LIKE LINE OF it_et_return . |
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_e_qnqmasm0 | TYPE QNQMASM0 , |
| ld_i_mode | TYPE PIQFLAG , |
| it_ti_iviqmfe | TYPE STANDARD TABLE OF WQMFE , |
| wa_ti_iviqmfe | LIKE LINE OF it_ti_iviqmfe, |
| ld_e_qnqmaqmel0 | TYPE QNQMAQMEL0 , |
| ld_i_viqmel | TYPE VIQMEL , |
| it_ti_iviqmur | TYPE STANDARD TABLE OF WQMUR , |
| wa_ti_iviqmur | LIKE LINE OF it_ti_iviqmur, |
| ld_e_buch | TYPE QKZ , |
| ld_i_customizing | TYPE V_TQ85 , |
| it_ti_iviqmsm | TYPE STANDARD TABLE OF WQMSM , |
| wa_ti_iviqmsm | LIKE LINE OF it_ti_iviqmsm, |
| ld_e_qnqmama0 | TYPE QNQMAMA0 , |
| ld_i_manum | TYPE QMSM-MANUM , |
| it_ti_iviqmma | TYPE STANDARD TABLE OF WQMMA , |
| wa_ti_iviqmma | LIKE LINE OF it_ti_iviqmma, |
| ld_i_fbcall | TYPE STRING , |
| it_ti_ihpa | TYPE STANDARD TABLE OF IHPA , |
| wa_ti_ihpa | LIKE LINE OF it_ti_ihpa, |
| it_te_container | TYPE STANDARD TABLE OF SWCONT , |
| wa_te_container | LIKE LINE OF it_te_container, |
| it_te_lines | TYPE STANDARD TABLE OF TLINE , |
| wa_te_lines | LIKE LINE OF it_te_lines, |
| it_et_return | TYPE STANDARD TABLE OF BAPIRET2_T , |
| wa_et_return | LIKE LINE OF it_et_return. |
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_ISR_REPROCESSFLAG_CLEAR or its description.
HRIQ_ISR_REPROCESSFLAG_CLEAR - ISR Clear Reprocessing Flag HRIQ_ISR_PIQAPP_VALUE_REQUEST - Generic Value Help for ISR (PD Data) HRIQ_ISR_PIQAPP_SPECIAL_VAL_RQ - Special Value Help for PIQAPP Structures HRIQ_ISR_PIQAPP_SC_TEXT - Generic Value Help for ISR (PD Data) HRIQ_ISR_NOTIF_SCENARIO_GET - Determine Scenario for Notification HRIQ_ISR_NOTIF_MODIFY - Update Notification