SAP Reports / Programs

RIARCMRP SAP ABAP Report - PM: Archiving MeasDocuments: Set Deletion Flag







RIARCMRP 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 RIARCMRP into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RIARCMRP. "Basic submit
SUBMIT RIARCMRP AND RETURN. "Return to original report after report execution complete
SUBMIT RIARCMRP VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_IDATE = Until measuring time
Selection Text: P_KEEP1 = Keep 1 document per MeasPoint
Selection Text: P_MAX = Maximum number of MeasDocs
Selection Text: P_TEST = Test run
Selection Text: S_BEGRU = D Authorization group
Selection Text: S_EQUNR = D Equipment
Selection Text: S_LOCAS = D Assembly
Selection Text: S_MPTYP = D Measuring point category
Selection Text: S_POINT = D Measuring point
Selection Text: S_PSORT = D Measurement position
Selection Text: S_TPLNR = D Functional location
Title: PM: Archiving MeasDocuments: Set Deletion Flag
Text Symbol: 100 = Options


INCLUDES used within this REPORT RIARCMRP

INCLUDE RIARCMR_DFPS_TOP.
INCLUDE RIARCMR_DFPS_CHECK_INPUT.
INCLUDE RIARCMR_DFPS_FILTER.
INCLUDE RIARCMR_DFPS_PROT.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

DFPS_PM_DISTR_ACTIVE_CHK CALL FUNCTION 'DFPS_PM_DISTR_ACTIVE_CHK' EXCEPTIONS ACTIVE = 1.

MEAS_DOCUM_SET_DELETE_FLAG CALL FUNCTION 'MEAS_DOCUM_SET_DELETE_FLAG' EXPORTING p_idate = p_idate p_max = p_max p_keep1 = p_keep1 p_test = p_test IMPORTING no_selection_given = l_no_selection selection_too_complex = l_sel_too_complex mdocm_where_update_failed = l_mdocm_upd_fail count_points_sel = l_points_sel count_documents_sel = l_documents_sel count_documents_upd = l_documents_upd TABLES s_point = s_point s_psort = s_psort s_mptyp = s_mptyp s_begru = s_begru s_locas = s_locas s_mpobj = s_mpobj locked_points = i_locked EXCEPTIONS OTHERS = 1.

TR_APPEND_LOG CALL FUNCTION 'TR_APPEND_LOG' TABLES xmsg = iprot EXCEPTIONS OTHERS = 0.

TR_FLUSH_LOG CALL FUNCTION 'TR_FLUSH_LOG'.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RIARCMRP or its description.