List of material by material type

hi experts,
i need to take a report in excel for the materials based on there material type for a plant. In mm60 i tried it not coming excl.
is there any table
regards
arun

Hi arun,
Try this,
= T code se16
= put table name for eg MARA
= Put insert criteria i.e. material no or material type....
= your will get data on screen.....then in top menu bar click on "System => List =>Save".....then save as spreadsheet....
Hope this suits to your Question....
Reward if it helps....
Regards,
RC

Similar Messages

  • How to find List of views that material type supports?

    Hello Gurus,
    How to find List of views ( Basic Data1, Basic Data2, Sales org1, sales org2, etc.. ) for material types.
    is there any table or something to find.
    Thanks & Regards
    Raj

    You can search the function module SELECTION_VIEWS_FIND in this forum. You will get the sample code.
    Apart from that if only you want to know what are all the views assigned to a material type and try to enhance it then it should be from SPRO.
    Go to transaction SPRO.
    chose Logistics - General>Material Master>Basic Settings>Material Types>Define Attributes of Material Types
    execute and you will get the list of material types.
    Now dbl click on the desired material type and you will get an area called as User departments. Here what are all the views are selected those views only appear while you are trying to create (or Change/Display) material master.
    Regards
    Shiba Prasad Dutta

  • Restricting Material Type in MM02

    Dear All,
    I have a requirement from restricting access to material type in Transaction MM02.
    We have the Auth Obje M_MATE_MAR to restrict the Material Types. However, the Material Types needs to be restricted by Authorization Group. We get the below statement when we double click on M_MATE_MAR
    Defined fields
    Fields Possible values  Meaning
    ACTVT 01  User may create data.
    02  User may change data.
    03  User may display data.
    06  User may flag data for deletion.
    BEGRU   Here you must specify the authorization groups from table T134 for which the materials concerned may be processed.
    In Tansaction OMS2 against each material type we need to maintain separate authorisation group. We have about 15 material Types and i need to create 15 auth Grp
    I have created one Auth Grp and i request to advice if i need to assign this Auth Grp to any Table Assignment. I see that the Table T134 is assigned to the Auth Grp MC. The Table T134 maintains the list of Material Types.
    Please advice what should be my next action after creating the Auth group in SE54.
    Regards

    Hi Sumanth:
    As Raghu mentioned, you shouldn't need to create the auth group in SE54.
    Once the authorization group is populated with a value, you will noticed that an authorization check now occurs on that field for this specific material.
    Enter authorization group value in OMS2
    By entering a value in OMS2, an auth check will occur on every material classified under than material type, even if the auth group field is not populated directly in the material. If a value is populated in the material in MM02. two auth checks will occur, one based on the value populated in MM02, and another based on the value populated for that specific material type in OMS2. Hope this helps.
    Sorry, a link I posted earlier is now removed.
    Best,
    Jon

  • List of stocks based on material types

    Hi,
    I need a list of stocks overview based on material types.
    Ex:
    Need a list of current stocks for finished materials.
    Kindly help reg this.
    sathya

    Hi,
    Check in MC.9 transaction to get the list of stocks based on the Material types along with materials & material description with Value & stocks
    The Report will give you all the details with respect to material types, Material group etc. for a particular period or as on period also.
    rgds
    gsc

  • Industry Sector and Material Type list of values in cFolders

    Hi,
      How to transfer the List of Values for Industry Sector & Material Type from R/3 to cFolders system?
    We have R/3 Production system running for the past 3 years. We are implementing cFolders now. While Material creation in cFolders, the List of Values listed for above mentioned fields are not as per R/3 values. Hence we need to change the same LOV in cFolders as per R/3. How to do it?
    Prasanna
    9036129381.

    Hi,
    The parameters material type and industry sector are used
    to classify a material. They define its possible uses.
    For example if you selct indutsry type as retail or mechanical it will classssify the material accordingly. again material type is semifinished then this you can also use as a raw material. In mm02 or MM03 u cant see it.
    If you want to see these you can go to SE16 and put table name MARA and can see it.
    Hope this will help.
    Reward point if helpful.
    Thanks,
    Raja

  • List of Material in BOM excluding semi finished goods or any material type

    We want to take out the list of components used in BOM or can we exclude any material type while displaying BOM.
    Is there any TCODE available for this?
    thanks
    harish

    Hello Harish,
    I think this is possible from user specific settings OS29. You can select the "sub assemblies""if the BOM contains sub-assembly A-A as a component. The components of this sub-assembly are K-1 and K-2.
    If you set this indicator, the summarized BOM shows the data of sub-assembly A-A and its components K-1 and K-2.
    If you do notset this indicator, only components K-1 and K-2 are shown.
    If helpful rewards your points.
    Regards
    TAJUDDIN

  • SAP report for movement type and material type

    Hi!
    I would like to use a standard SAP report to give me a list of all the movement types (much like MB51) but instead of material I would like to select on Material type e.g. ROH. The result should for example be a list of the movement types 501 on material type ROH.
    It is urgent, if you could help me I would be very greatful!
    Sincerely
    Anders Öhrling

    Thanks for your answer!
    I have managed to join the two tables and created a report that will work, except that the amounts in local currency that is given by movement type 201 is not negative (as in MB51). I need all movement types that generate a debit must be shown as a negative value. Wo when I summarize all the movement types I end up with the value of 101 minus 201.
    Is that possible without ABAP programming?
    Sincerely Anders Öhrling

  • Report to transport vendors for a plant and material type

    Hi Guys ..
    Is there any report fwhere is can download all the vendors for a particular Plant and type of material.
    Thanks for your support

    Hello Vivek,
    I have checked these tables but my issue is to get the list of Material numbers in the table along with a field for Class type.
    So this does not happen in these tables.
    However thank you for the tables given
    Regards
    Mahesh

  • Print in different page for different material type in Sapscript

    Hi all
    How do I do the above matter?
    Currently I have a script that print all material according to some condition.
    My client request to have a different page of material list for different material type.
    Please advise
    az

    Hi,
    1) Sort the internal table by material type.
    call func 'OPEN_FORM'.
    loop at itab.
    at new mattype.
    if mattype = 'A'.
      call fun 'START_FORM'.
       exporting
        page   =    'PAGEA'.
    elseif mattype = 'B'.
      call fun 'START_FORM'.
       exporting
        page   =    'PAGEB'.
    endat.
    call func 'WRITE_FORM'.
    AT end of mattype.
    call function 'END_FORM'.
    endat.
    endloop.
    call function 'CLOSE_FORM'.
    Thanks,
    Nethaji.

  • Urgent:Material Type for Packaging Material in WM and MM

    Hi
    There is a place in SPRO where i can define the material type for packaging.
    Logistics - General -> Handling Unit Management -> Basics -> Define Packaging Material Types
    How can i create a material using this material type? What is the use of material type here?
    Whenever i create material in MM01/MM41, i get the standard material type list.
    Thanks & REgards
    Kapil

    Hi,
    In T.code: OMS2, you can get standard material type list.VERP is the standard material type for packing material.You can copy VERP and rename to ur material type( as it is ur business requriement or else u can use same VERP)
    What is the use of material type here?
    With the help of ur Material Type , u can craete material like The material type,will be used while defining the material
    master.At that time,in Tcode:MM01,first screen we need to
    mention,(material type)it show the nature of material
    ex:-engineering product,finished products,semifinished
    product,etc.,
    It also play vital role on material numbering,material type in comination with plant & valuation class, play vital role in inventory & accoputning.
    To Create Material,use t. Code: MM01,
    Step-1
    Enter Material Code: ( example-Polythene Bag, If External Number Range or leave it blnak)
    Enter Industry Sector: ...................
    Enter Material Type: ..........................(VERP- Packing)
    Step-2
    Select
    Views you required( like eample:basic data-1, like basic data-2,purachsing, purchase order text,General plant data, accounting-1, accounting-2 etc)
    Step-3
    Enter Plant,
    Enter Storage location
    {{{Enter Sales organization & Distribution channel(if sales view selected)}}}
    Step-4
    You will have views like (example-1, basic data, enter Base unit of measure, material group and other details as required field,example-2,Accounting data, enter valuation class, price control; S or V & price)
    Step-5
    Save.
    Note: Before creation material you must know which Industry Sector, Material Type ur going to use and material numbering is internal or external.
    For more, check the following link for creation of material
    http://www.synactive.com/docu_e/doc_multi_mm01.html
    Regards,
    Biju K

  • How to find the list of material variant based on the characteristics value

    Hi
    We are creating materials variants for FERT Material Type in material master in MRP-3 view .There we configure the variant by attaching characteristics value 
    Now we want to have a report , which can give the list of material variants , if char value is given in selection
    Can somebody guide me if there is standard report for this OR what is the linkage in Table , so that we can develop a report
    rgds
    Sandeep

    I couldn't find a standard report to get the material variants based on characteristic values (the nearest I could find was CT12) but I wrote a report some time back here's the table join logic for the main select statement.
    select a~matnr
            e~atwrt
            h~atwtb
    into table i_tab
          from MARC as a
          inner join IBIN as b
          on b~instance eq a~cuobj
          inner join IBIB as c
          on c~ibase eq b~ibase
          inner join IBINVALUES as d
          on d~in_recno eq b~in_recno
          inner join IBSYMBOL as e
          on e~symbol_id eq d~symbol_id
          inner join CABN as f
          on f~atinn eq e~atinn
          inner join CAWN as g
          on g~atinn eq e~atinn
          and g~atwrt eq e~atwrt
          inner join CAWNT as h
          on h~atinn eq g~atinn
          and h~atzhl eq g~atzhl
         where     a~matnr in s_matnr
                and e~atinn in s_atinn
                and e~atwrt in s_atwrt
               and b~valto eq '99991231235959'. "This is important condition
    I included bare minimum fields to suite your requirement needs you can add whatever other field you want . Though I tested the table join, I suggest you to test it again before writing your own ABAP program using SE16N.

  • Use of different material types

    Hi Experts ,
    My client is thinking of expansion of its plant . This new plant would be copy of their already existing plant at another location . Now some of materials for manufacturing finish materials are same in both plants but they both use different material types . That is here there is only one mat type where there they use 4 mat types .
    Now do I need to create new plant here or I can use the same existing plant for creation of new materials ? If I want to use the same plant then would be the effect on valuation of mat. Can these mat with different mat types be transported successfully ?

    Hi Neal,
    So you did enjoy your weekend!!! Good good; well you go to IMG ( SPRO ) and on to ENTERPRISE STRUCTURE >> ASSIGNMENT >> LOGISTICS EXECUTION; and just in case you miss out the warehouse number, ENTERPRISE STRUCTURE >> DEFINITION >> LOGISTICS EXECUTION . You will find the links there. Unfortunately I created a screenshot for you but I just do not know how to attach it.
    The list I was talking about was MRP List or Stock overview list ( MD05 / MD04 ). There are two more transactions that I think might come in handy. Check them out:
    LS26 - stock overview of warehouse.
    LL01 - warehouse activity monitor.
    Since the plant and warehouse will be linked, I guess there would be no discrimination on checking stock but I am pretty sure system checks warehouse stock first. That is the entire procedure. I hope it helps. Do reward points if I was able to answer your query.
    Regards,
    Sreekant.

  • Purchasing Report: Plant, Purchasing group, material type, PO, GR No.

    All SAP Gurus,
    Is there any Purchasing report available which gives the information regarding:
    Plant, Purchasing group, material type, PO, GR No., vendor, amount (all in single report only).
    Regards,

    Hi,
    Refer following reports;
    ME2N - List of PO Documents (In selection Screen use Scope of List - ALLES)
    ME80FN - General Analysis (Here in Output, select option "PO History" by clicking on the button at extreme right)

  • Material Type to Valuation Class

    Hi
    On which table /Tcode can list the Valuation Class assigned to all the Material Types.
    Regards
    MM

    Hi
    it in not store in single table
    try following
    table-T134 in se16n t-code and give your material type and not down KKREF=account categories reference
    Now  pass account categories reference in table T025,You will valuation class of your material
    Regards
    kailas Ugale

  • Pro's and Con's to using Copies of Standard Material Types

    Hi
    We are looking for the pro's and con's of using copies of standard SAP material types for my company.  We are a consumer goods company and looking to see if there are drawbacks and benefits when it comes time to upgrade SAP.  Also what industry standards are out there for when we change / add views to standard SAP material types.
    Regards,
    Josh

    there are no real pros and cons - just philosophy
    We're using the SAP given material types, even adjusted to our needs, already for many years from 3.1 to 6.3 release and had never any issue with hotpackages or ith release changes.
    We are using as well many own material types created by copy of SAP material types.
    the only issues I know are, that the users need some time to understand which type to use if the description appears twice.
    (Remember, it is a personal setting if keys are shown in dropdown lists, and I know many user who do not display the keys)

Maybe you are looking for

  • Lack of option in C2-03 model

    Last month I have purchased Nokia C2-03 model and I have checked that two options are missing 1) cell info display and 2) no equilizer in music player So I requested you to resolve this matter and release a updated software version which will contain

  • Toshiba drivers for WXP and VISTA fpr a Satellite Pro P100 - PSPAH

    Hello. I need help. I bought a Satellite pro P100 - PSPAH with Vista Premium Home edition as recovery version. Now I want to install a second OS like WXP on this notebook. The problem is that WXP didn't found 3 drivers. For Sound, LAN and a other dev

  • How To Reset Blocked Admin Password

    i need to reset my blocked  Admin Password, please help. Thank you.

  • Desktop Background and screen saver panel won't open at all

    When I try to change my background on my macbook pro, it says can not open my backgrounds & Screensaver preferences........ I don't know what to do????

  • Why my coming phone calls wouldn't work in continuity

    Can anybody help? I upgraded to Yosemite right after it came out, and now is the newest 10.10.1 Everything works fine, except some minor bluetooth problems. iWork and message works great within the continuity function. but the phone calls never work.