PRODORD_CCS_DISPLAY is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Display of the split of an order or a network for a valuation date...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 PRODORD_CCS_DISPLAY into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
CKFA - Split Display for Production Order
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: P_VBELN = D .
Selection Text: P_TVERS = D .
Selection Text: P_SICHT = D .
Selection Text: P_SCALE = D .
Selection Text: P_POSNR = D .
Selection Text: P_ORDSEL = D .
Selection Text: P_KLVAR = D .
Selection Text: P_KALAW = D .
Selection Text: P_AUX = D .
Selection Text: P_AUFNR = D .
Selection Text: P_LOSFX = Cost Estimate in CO Area Crcy
Selection Text: P_KDAUF = X Flag
Selection Text: P_FAUF = X Flag
Selection Text: P_DATE = Key Date
Title: Split Display for Production Order
Text Symbol: 029 = Sales Order
Text Symbol: 028 = Specify costing variant and version
Text Symbol: 027 = Display
Text Symbol: 026 = IMG
Text Symbol: 025 = Name
Text Symbol: 024 = Val. Field
Text Symbol: 023 = Value Fld Assignment
Text Symbol: 022 = Costing Key
Text Symbol: 020 = Value Fields
Text Symbol: 019 = Legend
Text Symbol: 018 = No selection possible; check your entries
Text Symbol: 017 = Change Currency
Text Symbol: 015 = Items
Text Symbol: 014 = On/Off
Text Symbol: 011 = Parameters
Text Symbol: 010 = Product Costing
Text Symbol: 008 = Cost Component Split
Text Symbol: 007 = Itemization
Text Symbol: 006 = Order Structure
Text Symbol: 005 = Transfer
Text Symbol: 004 = Enter item number
Text Symbol: 003 = Costing Variant
Text Symbol: 002 = Sales Order
INCLUDE PRODORD_CCS_DISPLAY_SCREEN. "SELEKTIONSBILD
INCLUDE PRODORD_CCS_DISPLAY_TOP. "TYP- UND DATENDEKLARATIONEN
INCLUDE PRODORD_CCS_MACROS. "MACROS
INCLUDE PRODORD_CCS_DISPLAY_CLASSDEF. "KLASSENDEFINITIONEN
INCLUDE PRODORD_CCS_DISPLAY_CLASSIMP. "IMPLEMENTIERUNGEN
INCLUDE PRODORD_CCS_DISPLAY_PAI. "PAI MODULE
INCLUDE PRODORD_CCS_DISPLAY_PBO. "PBO MODULE
INCLUDE PRODORD_CCS_DISPLAY_U01. "FORMROUTINEN
No SAP DATABASE tables are accessed within this REPORT code!
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING NAME = 'ICON_REPLACE' INFO = g_buttontext IMPORTING RESULT = BUT_KALW EXCEPTIONS OTHERS = 99.
CK_F_SHOW_KLVAR_SELECTION_LIST CALL FUNCTION 'CK_F_SHOW_KLVAR_SELECTION_LIST' EXPORTING APL_PRODUCTCOSTING = 'X' APL_UNITCOSTING = space SEL_BZOBJ = '0' IMPORTING KLVAR = p_klvar.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING RETFIELD = 'POSNR' DYNPPROG = g_repid DYNPNR = '0100' DYNPROFIELD = 'p_posnr' "#EC NOTEXT VALUE_ORG = 'S' TABLES VALUE_TAB = gt_posnr_tab.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.