SAP Reports / Programs

RVSCDAKK SAP ABAP Report - Display document changes







RVSCDAKK is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Report RVSCD100 shows the document changes in a sales document...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 RVSCDAKK 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 RVSCDAKK. "Basic submit
SUBMIT RVSCDAKK AND RETURN. "Return to original report after report execution complete
SUBMIT RVSCDAKK 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: LCNUM = D Financial doc. no.
Title: Display document changes
Text Symbol: 111 = Partner ;
Text Symbol: 110 = Others ;
Text Symbol: 109 = Adress data ;
Text Symbol: 108 = Document data ;
Text Symbol: 107 = Bank data ;
Text Symbol: 106 = Header data ;
Text Symbol: 105 = Sales doc.
Text Symbol: 104 = Document items ;
Text Symbol: 103 = Time of change ;
Text Symbol: 102 = Read archives - not yet supported
Text Symbol: 101 = Addit.infos
Text Symbol: 100 = Overview
Text Symbol: 012 = Export/Import document
Text Symbol: 011 = Bank address
Text Symbol: 010 = Partner address
Text Symbol: 001 = Bank data
Text Symbol: 113 = Forecast dlv. sched.
Text Symbol: 504 = & was deleted
Text Symbol: 503 = Text & deleted in language &
Text Symbol: 502 = & Changed
Text Symbol: 501 = Text & changed in language &
Text Symbol: 402 = New:
Text Symbol: 401 = Old:
Text Symbol: 207 = Document header ;
Text Symbol: 206 = Object ID
Text Symbol: 205 = Chgd by
Text Symbol: 204 = Time
Text Symbol: 203 = Date
Text Symbol: 202 = Doc.no.
Text Symbol: 201 = Date
Text Symbol: 116 = Texts ;
Text Symbol: 115 = Billing plan ;
Text Symbol: 114 = Dates ;
Text Symbol: 611 = Description ;
Text Symbol: 610 = Table name ;
Text Symbol: 609 = Field name ;





Text Symbol: 608 = Transaction ;
Text Symbol: 607 = Time ;
Text Symbol: 606 = Date ;
Text Symbol: 605 = User ;
Text Symbol: 604 = Document changes ;
Text Symbol: 603 = Technical info
Text Symbol: 602 = Schedule line ;
Text Symbol: 601 = Item $ -----------------------------------------------------------------------------------------------------------------------------
Text Symbol: 600 = Document header --------------------------------------------------------------------------------------------------------------------
Text Symbol: 509 = Unable to display change
Text Symbol: 508 = Field no longer defined in table
Text Symbol: 507 = & entered
Text Symbol: 506 = Text & created in language &
Text Symbol: 505 = Deletion &
Text Symbol: B01 = Financial doc. data
Text Symbol: 705 = Change Object
Text Symbol: 704 = Administr.info
Text Symbol: 703 = Selection crit.
Text Symbol: 702 = Scope of display ---------------------- Sorted
Text Symbol: 701 = Sales document
Text Symbol: 620 = -------------------- ----------- -------- --------
Text Symbol: 619 = Change object Added Changed Deleted
Text Symbol: 618 = ---------- -------- ---------- ---------- ---------------------------------------------------
Text Symbol: 617 = Date Activity User
Text Symbol: 616 = Item
Text Symbol: 615 = -------------------- ---------- -------- ----------
Text Symbol: 614 = Doc.category Document Item Sched.line
Text Symbol: 613 = Item ;
Text Symbol: 612 = From 1 on & at & w. +
Text Symbol: 112 = Contract data


INCLUDES used within this REPORT RVSCDAKK

INCLUDE RVSCDAKC.


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 date_of_change = cdhdr-udate objectclass = cdhdr-objectclas objectid = cdhdr-objectid time_of_change = cdhdr-utime username = cdhdr-username TABLES i_cdhdr = icdhdr EXCEPTIONS no_position_found = 1 OTHERS = 2.

CHANGEDOCUMENT_READ_POSITIONS CALL FUNCTION 'CHANGEDOCUMENT_READ_POSITIONS' EXPORTING changenumber = icdhdr-changenr tablekey = cdpos-tabkey tablename = cdpos-tabname IMPORTING header = cdhdr TABLES editpos = icdshw EXCEPTIONS no_position_found = 1 OTHERS = 2.

RV_DOMAIN_VALUE_TEXTS CALL FUNCTION 'RV_DOMAIN_VALUE_TEXTS' EXPORTING domname = 'ABART ' domvalue = domvalue single = ' ' IMPORTING ddtext = text.






CHANGEDOCUMENT_READ_HEADERS CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS' EXPORTING date_of_change = cdhdr-udate objectclass = 'ADRESSE ' objectid = cdhdr-objectid time_of_change = cdhdr-utime username = cdhdr-username TABLES i_cdhdr = icdhdr_ad EXCEPTIONS no_position_found = 1 OTHERS = 2.

CHANGEDOCUMENT_READ_POSITIONS CALL FUNCTION 'CHANGEDOCUMENT_READ_POSITIONS' EXPORTING changenumber = icdhdr_hilf-changenr tablekey = cdpos-tabkey tablename = cdpos-tabname IMPORTING header = cdhdr TABLES editpos = icdshw EXCEPTIONS no_position_found = 1 OTHERS = 2.



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