INCL_CPE_TERM is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter INCL_CPE_TERM 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: Include INCL_CPE_TERM
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
GUI_UPLOAD CALL FUNCTION 'GUI_UPLOAD' EXPORTING * filename = 'C:\CPE_TEST_BASIS\term.txt'
GUI_UPLOAD CALL FUNCTION 'GUI_UPLOAD' EXPORTING * filename = 'C:\CPE_TEST_BASIS\term_mod.txt'
CPE_TERM_UPDATE_DU CALL FUNCTION 'CPE_TERM_UPDATE_DU' EXPORTING it_term_ins = lt_term_file EXCEPTIONS OTHERS = 1.
CPE_TERM_READ_CB CALL FUNCTION 'CPE_TERM_READ_CB' EXPORTING iv_logsys = ls_term_file-logsys iv_termid = ls_term_file-termid iv_cond_type = ls_term_file-cond_type iv_validto = ls_term_file-validto IMPORTING es_term = ls_term_prog EXCEPTIONS not_found = 1 OTHERS = 2.
CPE_TERM_UPDATE_DU CALL FUNCTION 'CPE_TERM_UPDATE_DU' EXPORTING it_term_upd = lt_term_modfile EXCEPTIONS OTHERS = 1.
CPE_TERM_UPDATE_DU CALL FUNCTION 'CPE_TERM_UPDATE_DU' EXPORTING it_term_del = lt_term_modfile EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.