List of materials with no associated routing...report

Hi all,
I need to develop a program to display a list of materials that do not have an associated routing. SAP tcode C223 lists materials with associated production versions. Do you think there is another standard SAP transaction that might get me close to my goal?
regards,
Mat

Not sure about a standard transaction, but I have written a program to do this same exact thing in the past.
Really all you need to do is check against table MAPL.
Regards,
Rich Heilman

Similar Messages

  • List of materials with total PR, PO qty, and stock

    Dear All,
    Is there any std report to check the list of materials along with total PR qty, PO qty and Current stock.
    This is to check, what is the total requirement of the materials and whether Purchase team has raised the PO or not ?
    Please advise.
    Regards
    Vinoth.

    Hi,
    MD04 gives us the details of individual part no.
    But, we would like to see similar details in the form of list of materials, with cumulative demand, cumulative OPEN PR Qty, Open PO Qty and Stock.
    Please help.
    Regards,
    Vinoth.

  • List of materials with respect to Class type/

    Dear all,
    In which Tcode or table can i find the list of materials with respect to any class type ?
    Table name for Batch Class ?
    or
    How to find KLART ?
    Edited by: Shailesh2510 on Feb 22, 2010 10:55 AM

    hiii
    To get the class type and class , go to table TCLA or TCLAT.
    And one more thing , here standard system , there is transaction code to get class wise materials list.
    If u want u can cevelop custom reports with help of ABAPer.
    If u give the functional details to technical consuiltant , they easily build the report how ever and what ever u want in custom transaction code.
    Any clarification revert,.

  • How to find list of materials with customer wise

    hi,
    how to find list of materials with customer   wise. is there any t.code.

    HI
    if you want for one customer  material combination T-code: VD52
    For multiple customer material combination T code:VD59
    Regards,
    Krishna

  • Create list of materials with its purchase order texts from material master

    Dear all
    Simple question I do wanna ask.
    Just need to get out a list with my materials with its purchase order texts from the material master.
    As I do know that PO text is not stored on a table, it might be difficult to get it out from the system.
    Does anyone of you know how to retrieve it simply?
    Regards
    François

    Check this link Material Master Purchase Order Text.

  • List of Materials with out POs

    Hi,
    I want to know the list of materials for which no PO was created so far.
    Is there any report or T.code to get the material list.
    Regards.
    Chinna
    Edited by: Chinna Veerappa on Apr 28, 2009 11:03 AM

    Hi,
    do you want to know the open purchase requisitions for which No PO is created , then you can check the same in ME5A and keep Processing Status as "B" or some thing else you want ?
    Regards,
    Vikas

  • List of materials with valid Group Counters (No. of valid routing variant)

    Hi,
    do you know, how to get a list of the materials together with the information, what Group Counter is currently valid? That means if a material have 3 variants of routings, to show for example that the variant number 3 is currently valid.
    Thank you in advance.
    Ivana

    Hi Sankaran,
    this is a great tip. I tried it but it seems that our engineering has some "strange" rules for creating of the group counters. There were several group counters for one material that had the same Valid From date:-( I will have to discuss with them, why they do so.
    However thank you very much for your help. I´m satisfied what I got from the C223 transaction.
    Have a nice day.
    Ivana

  • Report for the list of materials with component & assembly scrap

    Dear Experts ,
    I have been told to generate a report for the materials which are subjected to component and assembly scrap . Please guide me for the same . Many thanks in advance.
    Yours
    Aman Khan

    Dear Aman,
    It you are maintaining both assembly scrap  & component scrap both in MM you can read MARC table by creating simple query.
    Read Field MARC-AUSSS & MARC-KAUSF.
    If you are maintaining component scrap in BOM item read STPO-AUSCH.
    [Query Creation|How do create query in SAP?]

  • MRP suggestions for materials with step association

    We needed that the MRP suggests the supplying of the ingredients in the beginning of the steps and not in the beginning of the batch, the question is if OPM Process Planning is able to see step material association, to be able to suggest as we want?
    Thanks

    Hi
    My belief is yes, but havent yet tried the same myself
    Regards
    Girish

  • Report which gives list of materials

    Hi All,
    I am about to write a report which gives the list of materials.
    Foe\r that I want to know the relations between the tables
                MARA
                MAKT
                MARC
                MARM
                MVKE       
    Its a little bit urgent
    Edited by: ravee indra on Mar 21, 2008 1:57 PM

    Hi Ravee,
    umm...I'm a little reluctant to give you this advice as it sounds a bit like a rant, so please accept it in the spirit it is intended.
    You do not need to know anything about the data model to get a list of materials.
    Way back when ABAP  was a boy, knowing which tables held which data and the relationships between them was a key ABAP  developer skill. It does not need to be now.
    (Yes I know this is not an absolute truth - no flame wars please guys.)
    As a general rule all SAP backend business functionality is exposed via standard and open interfaces. These interfaces can take several forms, but in general they are implemented using remote-enabled function modules.
    In the case of materials (and most of the old ERP  functionality) SAP has "modeled" business objects inside the Business Object Repository (BOR). These models include the data model itself, but also include methods to interact with the model in the form of Business Object Application Programming Interfaces (BAPI's). These BAPI's are implemented as remote-enabled function modules.
    You can use these interfaces to interact with the backend data and be comfortable that SAP will (generally) not change these interfaces. So even if an upgrade makes major changes in the data model the BAPI's should still work as before.
    So taking your example of wanting a list of materials. If you go to the BAPI  Explorer, transaction BAPI , and use either the hierarchical or alphabetic navigator to find the Business Object called "Material" you will see it has a number of methods.
    One of these methods is called GetList and if you double-click on it you will see that it provides a List of Materials with Description. You can display the documentation for the method which shows you to call the method, and in the Detail tab you can see that the method is implemented as a function module called BAPI MATERIALGETLIST. You can even double-click on the function module and to go to the Function Builder where you can test the method.
    If you place these entries in the MATNRSELECTION data structure...
    MATNRSELECTION-SIGN = 'I'.
    MATNRSELECTION-OPTION = 'CP'.
    MATNRSELECTION-LOW = '*'.
    ...and execute the function module it wiull return a complete list of all materials defined in the system in the MATNRLIST itab.
    You may find that you want more details about each material, say for example availability. If you go back to the BAPI  Explorer you can see there is another method called "Availability" that is implemented using function module BAPI MATERIALAVAILABILITY, and so on....
    This is the way you should be looking to do all your development work. Look for the SAP delivered standard interfaces and use them, avoid direct database access as much as possible.
    Cheers
    Graham Robbo

  • Report on list of Materials planned in UCP

    Hi Experts,
    Is there any report available to get the list of Materials planned in Unit Cost Planning.
    Thanks in advance.
    Vinodh

    Hi Vinvidh_18,
    I have also been trying for capturing list of Materials planned in UCP in reports for quantity comparisions.
    If you please explain the development you have done on this along with the linked tables for the same, it will be useful a lot.
    Thanking you in advance,
    Best wishes,
    Mohan, SAP PS

  • Report for materials with shortage (GATP)

    Hi,
    We are using GATP for the cofirmation process. If you go to the CO09 transaction in the SAP-ERP system, it will take you to an APO screen. There are 2 fields (Receipts and Confirm quantities) on this screen; when Confirm quantities is greater than Receipts it shows that the material has a shortage.
    Is there any report in APO that shows me the materials with shortage (Confirm quantities greater than Receipts)?
    Thanks a lot

    777,
    Such info requirements are usually handled with the Alert monitor. 
    /SAPAPO/AMON_SETTING, create an alert type ATP, Availability check shortage.
    http://help.sap.com/saphelp_scm70/helpdata/EN/47/f925c8852f383ce10000000a42189b/frameset.htm
    Best Regards,
    DB49

  • Report for the list of meterials with  sales text .

    dear all,
    can any body help me in code for  list of meterials with sales text as discription.
    thanks &rgds
    vamsee krishna yadav

    Hi Vamsee
    The table for material related Sales data is MVKE.
    If you want to display materials then you may write a select query on MVKE, selecting Sales Organization and Distributuion Channel.
    the concatenate mat number (with the leading zeros), Sales Org and Dist Channel into what will be the 'Name'
    CALL FUNCTION 'READ_TEXT'
    EXPORTING
    id = '0001'
    language = <language>
    NAME = 'Name'
    object = 'MVKE'
    TABLES
    lines = li_lines.
    Now read the li_lines table for the Sales Text.
    Thanks
    Pushpraj

  • REPORT for list of invoice with an order reason.

    Hi SAP Gurus !
    Is there any standard SAP report which will show me a list of invoice with an order reason field?
    I have tried VF05 and VF05n,but in both of them, order reason as a selection parameter field is missing.
    In case of any clarification kindly revert back to me.
    Regards,
    Ujjawal

    Thanks to all !
    Actually i was going  to create a query with VBRK and VBAK  tables but sales order number is not the common link as sales order number is present in VBAK table only.
    Apart from that i had tried to add VBRK and VBRP table then i was getting the list of invoice with order reasons (because order reason was getting copied from an order to invoice) ,but in this query i'm getting Order reason number with list of invoice only(Description of order reason is not coming).
    Please guide me for this if i'm wrong.
    Regards,
    Ujjawal

  • Stock, Outstanding & Consumption Report for List of Materials

    Dear all,
    Is there any standard transaction / procedure to get the current stock, outstanding PO (external only) & PRs and the consumption (MvT to be selected by the user) of list of Materials (collective) in the selected Time period and Plants & S Locs.
    Thanks & regards,
    Sheeja.

    hi
    what u want cant be avalilable at time
    u can get all std reports in SAP using t code SAP1
    current stock      MMBE
    outstanding PO (external only) ME2N 
    PRs  ME5A
    and the consumption  MB5B
    http://www.sap-img.com/materials/how-to-get-the-total-stock-consumption-data.htm
    http://www.sap123.com/showthread.php?t=398
    regards
    KI

Maybe you are looking for

  • Depot Plant- not to transfer additional duty to customer

    Hi, After making GRN for material we receive in depot plant (Plant -0100) we captures duties credit i. e. CVD (BED), Edu Cess, S & H Edu Cess & Additional duty (through J1IG) & pass it on duties to customer through Sale Invoice (J1IJ). But now onward

  • New harddrive, I no longer have garageband and other software.

    So I upgraded my harddrive and no longer have several programs that I want, GarageBand and iMovie among them. I have my Max OS X Install DVD in my Macbook right now, but found nothing under Optional Installs. Is there a way that I can get GarageBand,

  • 10.3 is slow in making call and receiving call

    os 10.3 is kinda slow while making a call and receiving call? its not a bug in handset cause i've experienced the same issue with 3 z10 and 1 z30 which is im using rightnow all the phones runnin on os 10.3 are slow while making and receiving a call i

  • ISG: Service with traffic policing counts dropped packets.

    Hello, Our company has a router Cisco 7304 NPEG100. ("show version" in the  bottom of this message). We are planing to start ISG services at this router, but there is a bug CSCei4190. When I set traffic policing in service, accounting in this service

  • Wi-fi painfully slow on macbook pro in OSX 10.8.2

    I have a Mac Book pro and over the last two days my internet has turned painfully slow on wifi - i havent loaded any new programmes and Speedtest shows no problems, still 37mbps on fiber broadband, my iPhone and PC are fine on the same wireless conne