WFA_ACTWRK_ARCH_WRITE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter WFA_ACTWRK_ARCH_WRITE into the relevant SAP transactions such as SE38 or SE80
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: P_COMENT = Comment
Selection Text: P_DATE1 = Date Range
Selection Text: P_DELTST = Test
Selection Text: P_LOC = Location
Selection Text: P_ORG = Corporate/Region/District
Selection Text: P_PROT = Detail Log
Selection Text: P_PROT_O = Log Output
Selection Text: P_WRIPRD = Production Mode
Selection Text: P_WRITST = Test Mode
Title: Imported Actual Working Time for WFM Archive Write Program
Text Symbol: T01 = Imported Actual Working Time Archive Write
Text Symbol: T02 = Start/End Date
INCLUDE WFA_SH_WFA_ERMS_LOCATION.
INCLUDE ARCH_WRITE_PRG_STANDARD2.
INCLUDE WFA_ARCHIVE_ROUTINES.
No SAP DATABASE tables are accessed within this REPORT code!
ARCHIVE_PROTOCOL_LINE_DETAIL CALL FUNCTION 'ARCHIVE_PROTOCOL_LINE_DETAIL'.
ARCHIVE_PROTOCOL_INIT CALL FUNCTION 'ARCHIVE_PROTOCOL_INIT' EXPORTING i_detailprotocol = p_prot i_protocol_output = p_prot_o.
ARCHIVE_OPEN_FOR_WRITE CALL FUNCTION 'ARCHIVE_OPEN_FOR_WRITE' EXPORTING call_delete_job_in_test_mode = p_deltst create_archive_file = p_wriprd object = 'CA_WFA_ACT' comments = p_coment IMPORTING archive_handle = lv_handle.
ARCHIVE_NEW_OBJECT CALL FUNCTION 'ARCHIVE_NEW_OBJECT' EXPORTING archive_handle = lv_handle.
ARCHIVE_PUT_TABLE CALL FUNCTION 'ARCHIVE_PUT_TABLE' EXPORTING archive_handle = lv_handle record_structure = 'WFA_ACT_SHIFT' TABLES table = lt_shift.
ARCHIVE_PUT_TABLE CALL FUNCTION 'ARCHIVE_PUT_TABLE' EXPORTING archive_handle = lv_handle record_structure = 'WFA_ACT_SEG' TABLES table = lt_seg.
ARCHIVE_PUT_TABLE CALL FUNCTION 'ARCHIVE_PUT_TABLE' EXPORTING archive_handle = lv_handle record_structure = 'WFA_ACT_BENF' TABLES table = lt_benf.
ARCHIVE_PUT_TABLE CALL FUNCTION 'ARCHIVE_PUT_TABLE' EXPORTING archive_handle = lv_handle record_structure = 'WFA_ACT_SUMM' TABLES table = lt_summ.
ARCHIVE_SAVE_OBJECT CALL FUNCTION 'ARCHIVE_SAVE_OBJECT' EXPORTING archive_handle = lv_handle EXCEPTIONS termination_requested = 1.
ARCHIVE_PROTOCOL_COLLECT CALL FUNCTION 'ARCHIVE_PROTOCOL_COLLECT' EXPORTING i_object = lv_object_id i_text = lv_string i_msgtype = 1.
PROGRESS_INDICATOR CALL FUNCTION 'PROGRESS_INDICATOR' EXPORTING i_text = lv_string i_processed = lv_objects_processed i_total = lv_total_of_objects IMPORTING e_progress_sent = lv_progress_send.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'. "otherwise message will not appear in the job-log
PROGRESS_INDICATOR CALL FUNCTION 'PROGRESS_INDICATOR' EXPORTING i_text = lv_string i_processed = lv_objects_processed i_total = lv_total_of_objects i_output_immediately = 'X'. "force the progress output
ARCHIVE_WRITE_STATISTICS CALL FUNCTION 'ARCHIVE_WRITE_STATISTICS' EXPORTING archive_handle = lv_handle.
ARCHIVE_PROTOCOL_WRITE CALL FUNCTION 'ARCHIVE_PROTOCOL_WRITE'.
ARCHIVE_CLOSE_FILE CALL FUNCTION 'ARCHIVE_CLOSE_FILE' EXPORTING archive_handle = lv_handle.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
WFA_ACTWRK_ARCH_WRITE - Imported Actual Working Time for WFM Archive Write Program WFA_ACTWRK_ARCH_WRITE - Imported Actual Working Time for WFM Archive Write Program WFA_ACTWRK_ARCH_READBYINDEX - WFM Schedule Read Program for Archived Data WFA_ACTWRK_ARCH_READBYINDEX - WFM Schedule Read Program for Archived Data WFA_ACTWRK_ARCH_DELETE - Report WFA_SCHED_ARCH_DELETE WFA_ACTWRK_ARCH_DELETE - Report WFA_SCHED_ARCH_DELETE