PPCOALTC 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 PPCOALTC 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: Exchangeable Operations
Text Symbol: 001 = Order
Text Symbol: 002 = Material :
Text Symbol: 003 = Operations of Standard Sequence:
Text Symbol: 004 = Operations of Altern. Sequence :
Text Symbol: 005 = Quantity :
Text Symbol: 006 = Lot Size :
Text Symbol: 007 = Alignment key :
Text Symbol: 008 = Plant :
Text Symbol: 100 = Op.
Text Symbol: 101 = Work Ctr
Text Symbol: 102 = Ctrl
Text Symbol: 103 = Description
Text Symbol: 104 = SOp
Text Symbol: 105 = Plant
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
MATERIAL_UNIT_CONVERSION CALL FUNCTION 'MATERIAL_UNIT_CONVERSION' EXPORTING matnr = caufvd-matnr kzmeinh = 'X' input = *affld-losvn meinh = caufvd-plnme IMPORTING output = *affld-losvn EXCEPTIONS conversion_not_found = 01.
MATERIAL_UNIT_CONVERSION CALL FUNCTION 'MATERIAL_UNIT_CONVERSION' EXPORTING matnr = caufvd-matnr input = *affld-losvn meinh = caufvd-gmein IMPORTING output = *affld-losvn EXCEPTIONS conversion_not_found = 01.
MATERIAL_UNIT_CONVERSION CALL FUNCTION 'MATERIAL_UNIT_CONVERSION' EXPORTING matnr = caufvd-matnr kzmeinh = 'X' input = *affld-losbs meinh = caufvd-plnme IMPORTING output = *affld-losbs EXCEPTIONS conversion_not_found = 01.
MATERIAL_UNIT_CONVERSION CALL FUNCTION 'MATERIAL_UNIT_CONVERSION' EXPORTING matnr = caufvd-matnr input = *affld-losbs meinh = caufvd-gmein IMPORTING output = *affld-losbs EXCEPTIONS conversion_not_found = 01.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = g_repid i_structure_name = gc_afvgd CHANGING ct_fieldcat = xt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_EVENTS_GET CALL FUNCTION 'REUSE_ALV_EVENTS_GET' EXPORTING i_list_type = 0 IMPORTING et_events = xt_eventcat EXCEPTIONS list_type_wrong = 1 OTHERS = 2.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = g_repid is_layout = gt_layout it_fieldcat = gt_fieldcat[] i_save = gc_save is_variant = gs_variant it_events = gt_eventcat TABLES t_outtab = it_afvgd[] EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = it_list_commentary .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.