RV15C004 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Sales Deals List You can list sales deals according to specific criteria...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 RV15C004 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
VB25 - List of Sales Deals
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: VTWEG = Distribution channel
Selection Text: VKORG = Sales organization
Selection Text: SPART = Division
Selection Text: KNUMA_PI = Promotion
Selection Text: KNUMA = Sales deal
Selection Text: GDAT = Valid On
Selection Text: BOTEXT = Sales deal description
Selection Text: ANZ_VAR = Layout
Title: List of Sales Deals
Text Symbol: S04 = Settings
Text Symbol: S03 = Assigned promotion
Text Symbol: S02 = Organizational data
Text Symbol: S01 = Sales deal
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING I_STRUCTURE_NAME = 'DISPLAY_AG' CHANGING CT_FIELDCAT = FIELDCAT_AG EXCEPTIONS OTHERS = 1.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING I_BUFFER_ACTIVE = ' ' I_SAVE = 'A' IS_VARIANT = G_VARIANT I_CALLBACK_PROGRAM = 'RV15C004' I_CALLBACK_PF_STATUS_SET = 'CALLBACK_STATUS' I_CALLBACK_USER_COMMAND = 'CALLBACK_USER_COMMAND' I_STRUCTURE_NAME = 'OUTPUT_AG' IT_FIELDCAT = FIELDCAT_AG TABLES T_OUTTAB = OUTPUT_AG EXCEPTIONS OTHERS = 1.
SD_KONA_SELECT CALL FUNCTION 'SD_KONA_SELECT' TABLES AGREEMENTS = XKONA AGREEMENT_NUMBER = KNUMA_SEL.
SD_KONA_SELECT CALL FUNCTION 'SD_KONA_SELECT' TABLES AGREEMENTS = XKONA AGREEMENT_NUMBER = KNUMA_SEL.
REUSE_ALV_VARIANT_F4 CALL FUNCTION 'REUSE_ALV_VARIANT_F4' EXPORTING IS_VARIANT = G_VARIANT I_SAVE = 'A' IMPORTING ES_VARIANT = G_VARIANT EXCEPTIONS NOT_FOUND = 1 PROGRAM_ERROR = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.