ECONCESSION_REPORTING_SAMPLE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Example for Generating Concession Reports The report reads entries from table ECONCPOST, that have not yet been processed in a report, and marks the lines as processed...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 ECONCESSION_REPORTING_SAMPLE 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.
Title: Sample Report for Concession Reporting
INCLUDE: IEUPDMOD,
INCLUDE ECONO01.
No SAP DATABASE tables are accessed within this REPORT code!
ISU_DB_ECONCPOST_SELECT_STATUS CALL FUNCTION 'ISU_DB_ECONCPOST_SELECT_STATUS' TABLES t_status = istatus t_econcpost = ieconcpost EXCEPTIONS not_found = 1 OTHERS = 2.
ISU_DB_ECONCPOST_UPDATE * CALL FUNCTION 'ISU_DB_ECONCPOST_UPDATE' in update task * EXPORTING * X_UPD_MODE = co_upd_update * TABLES * T_ECONCPOST = ieconcpost * EXCEPTIONS * UPDATE_ERROR = 1 * OTHERS = 2.
LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'ECONCPOST' CHANGING ct_fieldcat = gt_fieldcat.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
ECONCESSION_REPORTING_SAMPLE - Sample Report for Concession Reporting ECONCESSION_REPORTING_SAMPLE - Sample Report for Concession Reporting ECONCCARD_DI - BP: Example Program for Direct Update of BP Concession Card ECONCCARD_DI - BP: Example Program for Direct Update of BP Concession Card ECN_XPRA_01 - ECNXPRA01 ECN_XPRA_01 - ECNXPRA01