RTPM_TRCO_CTY_OVERVIEW is a standard Executable ABAP Report 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 RTPM_TRCO_CTY_OVERVIEW into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
TPM_CTY11 - Commodity Overview
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: S_PRCTY = D .
Selection Text: S_GRP2 = Group 2
Selection Text: S_GRP1 = Group 1
Selection Text: S_CTYTYP = D .
Selection Text: S_CTYID = D .
Selection Text: S_CTYCAT = Commodity Category
Selection Text: P_XCTYKD = Select all Commodity Kinds
Selection Text: P_XCHNG = D .
Selection Text: P_LOCA = D .
Selection Text: P_INCOT = D .
Selection Text: P_CTYKND = D .
Selection Text: P_ACTV = D .
Title:
Text Symbol: W03 = Only those commodities with authorization are displayed
Text Symbol: W02 = Authority check for some selected commodities failed
Text Symbol: W01 = Warning
Text Symbol: T08 = Abstract Commodity
Text Symbol: T07 = Commodity
Text Symbol: T06 = Default Source
Text Symbol: T05 = Quotation source details of commodity -
Text Symbol: T04 = Inactive
Text Symbol: T03 = Active
Text Symbol: T02 = Exchange details of commodity -
Text Symbol: T01 = Commodity Details
Text Symbol: S02 = Control parameters
Text Symbol: S01 = Selection: Commodities
INCLUDE RTPM_TRCO_CTY_TOP . " GLOBAL DATA
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_INFORM CALL FUNCTION 'POPUP_TO_INFORM' EXPORTING titel = text-w01 txt1 = text-w02 txt2 = text-w03 * TXT3 = ' ' * TXT4 = ' ' .
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = g_repid i_structure_name = g_ddic_structure CHANGING ct_fieldcat = gt_fieldcat[] EXCEPTIONS OTHERS = 0.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = sy-repid i_callback_pf_status_set = 'STATUS' i_callback_user_command = 'USER_COMMAND' i_structure_name = 'TRCOS_CTY_MASTER_DATA' i_grid_title = text-t01 is_layout = gs_layout it_fieldcat = gt_fieldcat[] * it_sort = lt_sort[] it_events = gt_event TABLES t_outtab = gt_outtab[] EXCEPTIONS program_error = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.