SAP Reports / Programs

PPCOBOMR SAP ABAP Report - Read Bill of Material per Submit







PPCOBOMR 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 PPCOBOMR into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT PPCOBOMR. "Basic submit
SUBMIT PPCOBOMR AND RETURN. "Return to original report after report execution complete
SUBMIT PPCOBOMR VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Read Bill of Material per Submit


INCLUDES used within this REPORT PPCOBOMR

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

CS_BOM_EXPLOSION_MAT CALL FUNCTION 'CS_BOM_EXPLOSION_MAT' EXPORTING ACLAS = 'CO' "Applikationsklasse ALTVO = SPACE "Alternativenvorrang AUFSW = 'X' "Auftragstufe und -weg emitteln AUSKZ = 'X' "Ausschuß berücksichtigen BAGRP = BOM_COM-IN_BAGRP "Baugruppeneinschränkung BEIKZ = SPACE "Beistellkennzeichen BESSL = SPACE "Selektionskennzeichen Beistell BREMS = 'X' "Auflösung gebremst CAPID = BOM_COM-CAPID_TMP "Anwendungskennung:TC04 DATUV = CAUFVD-AUFLD "Datum gültig am EMENG = BOM_COM-REFE1 "Einsatzmenge AUMNG = BOM_COM-REFE2 "Ausschuss-Menge ERSKZ = SPACE "Ersatzteilkennzeichen ERSSL = SPACE "Selektionskennzeichen Ersatzteil MBWLS = ' ' "Materialbewertung lesen MEHRS = BOM_COM-FLG_MLVB "mehrstufige Auflösung MTNRV = CAUFVD-MATNR "Material POSTP = SPACE "Positionstyp RVREL = SPACE "RV-relevant SANFR = BOM_COM-FLG_SANFR "Fertigung muß bei Auftrag SANIN = SPACE "Instandhaltung SANKA = SPACE "Kalkulation SANKO = SPACE "Konstruktion SANVS = SPACE "Versand SCHGT = SPACE "Schüttgut STLAL = CAUFVD-STLAL "Stücklistenalternative STLAN = BOM_COM-STLAN_TMP "Stücklistenverwendung WERKS = CAUFVD-WERKS "Werk IMPORTING TOPMAT = SELPOOL TABLES STB = STB EXCEPTIONS MATERIAL_NOT_FOUND = 4 "Material nicht vorhanden NO_PLANT_DATA = 8 "Material im Werk nicht vorhan NO_BOM_FOUND = 12 "Material hat keine Stückliste NO_SUITABLE_BOM_FOUND = 16 "Stückliste existiert nicht ALT_NOT_FOUND = 20. "Alternative nicht gefunden

CS_ALT_SELECT_MAT CALL FUNCTION 'CS_ALT_SELECT_MAT' EXPORTING " ALL = 'X' CAPID = BOM_COM-CAPID_TMP DATUV = CAUFVD-AUFLD DIALF = 'X' * LOSGR = BOM_COM-REFE1 MATNR = CAUFVD-MATNR STLAL = STLAL_TMP STLAN = STLAN_TMP WERKS = CAUFVD-WERKS * NOTAB = SPACE * NRFDC = 'X' TABLES MASTB_WA = MASTB STZUB_WA = STZUB STKOB_WA = STKOB EXCEPTIONS ALT_NOT_FOUND = 4 NO_ALT_FOUND = 8 NO_BOM_FOUND = 12 BOM_NOT_FOUND = 16 BOM_NOT_ACTIVE = 20.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name PPCOBOMR or its description.