RHALE_HRMDRGOUT_MAINTAIN is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You use this program to maintain the outbound registry for the serialization of distribution of HR master data...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RHALE_HRMDRGOUT_MAINTAIN into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
RE_RHALE_HRMDRGOUT - HR: Maintain HRMDRGOUT
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: RCVSYS = Recipients
Title: HR: Maintain registry for serialization in ALE outbound (HRMDRGOUT)
Text Symbol: C10 = Exit table maintenance
Text Symbol: C11 = Data has been changed
Text Symbol: C12 = Save before exiting?
Text Symbol: C20 = Cancel program
Text Symbol: C21 = Data will be lost
Text Symbol: C22 = Cancel anyway?
Text Symbol: C30 = Reread original system table from the database
Text Symbol: C32 = Do you want to save before refreshing?
Text Symbol: RCV = Partner syst.
INCLUDE RHALEDAT.
No SAP DATABASE tables are accessed within this REPORT code!
RH_GET_ACTIVE_WF_PLVAR CALL FUNCTION 'RH_GET_ACTIVE_WF_PLVAR' EXPORTING ask_plvar_dialog = ' ' IMPORTING act_plvar = gv_plvar.
RH_CHECK_SERIAL_OUT_IS_ACTIVE CALL FUNCTION 'RH_CHECK_SERIAL_OUT_IS_ACTIVE' EXPORTING receiving_system = rcvsys IMPORTING active = lv_active.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING textline1 = text-c11 textline2 = text-c12 titel = text-c10 IMPORTING answer = gv_answer.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING textline1 = text-c21 textline2 = text-c22 titel = text-c20 IMPORTING answer = gv_answer.
HR_ENQUEUE_OBJECT CALL FUNCTION 'HR_ENQUEUE_OBJECT' EXPORTING plvar = wa_gt_tc_hrmdrgout-plvar otype = wa_gt_tc_hrmdrgout-otype objid = wa_gt_tc_hrmdrgout-objid "#EC DOM_EQUAL EXCEPTIONS enqueue_failed = 1 objid_is_initial = 2 illegal_otype = 3 internal_error = 4 OTHERS = 5.
RH_SERIAL_REGISTRY_OUT_SAVE CALL FUNCTION 'RH_SERIAL_REGISTRY_OUT_SAVE' EXPORTING serial_registry_outbound = lt_hrmdrgout_save EXCEPTIONS error_during_update = 1 OTHERS = 0.
HR_DEQUEUE_OBJECT_ALL CALL FUNCTION 'HR_DEQUEUE_OBJECT_ALL' EXCEPTIONS OTHERS = 0.
SCROLLING_IN_TABLE CALL FUNCTION 'SCROLLING_IN_TABLE' EXPORTING entry_act = p_table_control-top_line entry_to = p_table_control-lines loops = p_lines ok_code = p_code overlapping = gc_true IMPORTING entry_new = p_table_control-top_line EXCEPTIONS OTHERS = 0.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING textline1 = text-c11 textline2 = text-c32 titel = text-c30 defaultoption = 'N' IMPORTING answer = gv_answer.
RH_SERIAL_REGISTRY_OUT_READ CALL FUNCTION 'RH_SERIAL_REGISTRY_OUT_READ' EXPORTING receiving_system = rcvsys hrobjects = gt_hrobjects IMPORTING serial_registry_outbound = lt_hrmdrgout EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RHALE_HRMDRGOUT_MAINTAIN - HR: Maintain registry for serialization in ALE outbound (HRMDRGOUT) RHALE_HRMDRGOUT_MAINTAIN - HR: Maintain registry for serialization in ALE outbound (HRMDRGOUT) RHALE_HRMDRGIN_TO_IDOC_FIT - HR: Adjust HRMDRGIN to IDoc RHALE_HRMDRGIN_TO_IDOC_FIT - HR: Adjust HRMDRGIN to IDoc RHALE_HRMDRGIN_MAINTAIN - HR: Maintain registry for serialization in ALE inbound (HRMDRGIN) RHALE_HRMDRGIN_MAINTAIN - HR: Maintain registry for serialization in ALE inbound (HRMDRGIN)