SAP Reports / Programs

RM07ICDD_LIST SAP ABAP Report - Display Changes to Phys. Inv. Docs







RM07ICDD_LIST is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You can use the report Changes to Physical Inventory Documents to display a list of all change documents for physical inventory (PI) documents...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 RM07ICDD_LIST 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 RM07ICDD_LIST. "Basic submit
SUBMIT RM07ICDD_LIST AND RETURN. "Return to original report after report execution complete
SUBMIT RM07ICDD_LIST 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: AENDERER = Changed By
Selection Text: DATUM = From Change Date
Selection Text: GJAHR = Fiscal Year
Selection Text: IBLNR = Physical Inventory Document
Selection Text: NUMMER = Change document number
Title: Display Changes to Phys. Inv. Docs
Text Symbol: 001 = Old:
Text Symbol: 002 = New:
Text Symbol: 010 = Select. Parameters
Text Symbol: 020 = Inv. doc. |FYear|Change no.|Date |Time |Changed by |Tcode
Text Symbol: 030 = Line Number
Text Symbol: 040 = Deleted
Text Symbol: 050 = New entry
Text Symbol: 060 = Field no longer defined in table
Text Symbol: 070 = Unable to display change
Text Symbol: 080 = PhysInvDoc.header
Text Symbol: 090 = One line
Text Symbol: 091 = One column
Text Symbol: 101 = No changes exist
Text Symbol: 102 = Error reading
Text Symbol: 103 = No phys. inv. doc. found


INCLUDES used within this REPORT RM07ICDD_LIST

INCLUDE: MM07MABC,
RM07MAUT.


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:

CHANGEDOCUMENT_READ_HEADERS CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS' EXPORTING objectclass = objekt objectid = objectid_char username = aenderer date_of_change = datum TABLES i_cdhdr = icdhdr_teil EXCEPTIONS no_position_found = 1 OTHERS = 2.

CHANGEDOCUMENT_READ CALL FUNCTION 'CHANGEDOCUMENT_READ' EXPORTING changenumber = icdhdr_gesamt-changenr objectclass = objekt TABLES editpos = ausg EXCEPTIONS no_position_found = 1 OTHERS = 4.



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 RM07ICDD_LIST or its description.