RV15C003 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Promotions List You can list promotions 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 RV15C003 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
VB35 - Promotions List
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: ANZ_VAR = Layout
Selection Text: BOTEXT = Promotion description
Selection Text: GDAT = Valid On
Selection Text: KNUMA = Promotion
Selection Text: SPART = Division
Selection Text: VKORG = Sales organization
Selection Text: VTWEG = Distribution channel
Title: Promotions list
Text Symbol: S01 = Promotion
Text Symbol: S02 = Organizational data
Text Symbol: S04 = Settings
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_PI' CHANGING CT_FIELDCAT = FIELDCAT_PI 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 = 'RV15C003' I_CALLBACK_PF_STATUS_SET = 'CALLBACK_STATUS' I_CALLBACK_USER_COMMAND = 'CALLBACK_USER_COMMAND' I_STRUCTURE_NAME = 'OUTPUT_PI' IT_FIELDCAT = FIELDCAT_PI TABLES T_OUTTAB = OUTPUT_PI EXCEPTIONS OTHERS = 1.
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.