PLM_FMEA_ARC_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 PLM_FMEA_ARC_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: _SFIELD = D .
Selection Text: _GROUP = D .
Selection Text: _FMA_TYP = D .
Selection Text: _EXT_ID = D .
Selection Text: _DATPLF = D .
Selection Text: _DATEPL = D .
Selection Text: _DATECR = D .
Selection Text: _DATECH = D .
Selection Text: _DATEAC = D .
Selection Text: _DATACF = D .
Selection Text: _CREA_BY = D .
Selection Text: _AUTHGRP = D .
Selection Text: P_WRITST = D .
Selection Text: P_WRIPRD = D .
Selection Text: P_PROT_O = D .
Selection Text: P_PROT = D .
Selection Text: P_DELTST = D .
Selection Text: P_COMENT = D .
Selection Text: _OBJVA_9 = Object Value 9
Selection Text: _OBJVA_8 = Object Value 8
Selection Text: _OBJVA_7 = Object Value 7
Selection Text: _OBJVA_6 = Object Value 6
Selection Text: _OBJVA_5 = Object Value 5
Selection Text: _OBJVA_4 = Object Value 4
Selection Text: _OBJVA_3 = Object Value 3
Selection Text: _OBJVA_2 = Object Value 2
Selection Text: _OBJVA_1 = Object Value 1
Title: FMEA Archiving: Write Program
Text Symbol: T04 = FMEA Object
Text Symbol: T02 = Restrictions
Text Symbol: T01 = FMEA
Text Symbol: 192 = Authorization Group
Text Symbol: 138 = Actual End Date
Text Symbol: 137 = Planned End Date
Text Symbol: 136 = Actual Start Date
Text Symbol: 135 = Scheduled Start Date
Text Symbol: 132 = Last Changed On
Text Symbol: 131 = Created On
INCLUDE PLM_AUDIT_OBTYPES.
INCLUDE PLM_FMEA_ARC_TOP.
INCLUDE PLM_FMEA_ARC_S01.
INCLUDE ARCH_WRITE_PRG_STANDARD2.
INCLUDE PLM_FMEA_ARC_F01.
No SAP DATABASE tables are accessed within this REPORT code!
PLM_AUDIT_OBJECTS_FETCH CALL FUNCTION 'PLM_AUDIT_OBJECTS_FETCH' EXPORTING iv_aud_objecttype = gv_aud_objecttype it_planstart_range = gt_planstart_range it_actualstart_range = gt_actualstart_range it_planfinish_range = gt_planfinish_range it_actualfinish_range = gt_actualfinish_range it_created_on_range = gt_created_on_range it_search_field_range = gt_searchfield_range it_created_by_range = gt_created_by_range it_grouping_range = gt_grouping_range it_external_id_range = gt_external_id_range it_auth_group_range = gt_auth_group_range * FMEA specific criteria iv_audit_type = gv_fmea_type it_audit_type_range = gt_audit_type_range * IT_OBJECT_TYPE_RANGE = IT_OBJECT_TYPE_RANGE * IT_OBJECT_VALUE_RANGE = IT_OBJECT_VALUE_RANGE it_audited_obj_complex = gt_audited_obj_complex TABLES e_project_guid_tab = gt_project_guids 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.