Screen reference by material type

Good afternoon.
In the SPRO path Logistics-General--> Material master --> Configuring the material master --> Assign screen sequences to User/material type/transaction/Industry sector, if you choose the sub-activity "Material type screen reference" you will see the following screen.
May i ask what ROH (for example) represents here? I do know that this is the filed "Sref: Material type" you see for each material type in OMS2,
but i do not understand if this is just a "grouping" of materials (so you can differentiate how you handle them in OMT3E, or there is an actual ROH (anf therefor FERT, DIEN, etc) screen sequences. So far, i was not able to find any ROH (for example) screen sequence in SAP SPRO (there are not included in OMT3B)
Thank you very much,
Nikos Giannopoulos

Hi,
Sref: Material type requires in OMS2 screen for defining new material type and also requires in OMT3E where assignment done for  Screen Sequence to Industry Sector.
If requires, yes- you can define your own Sref: Material type  for example ZROH coping from ROH.
For more refer details on configuration  for  designing a material master
Material Master Detail Configuration
Regards,
Biju K

Similar Messages

  • Mandatory fields With reference to Material types

    Dear Gurus,
    I need to make few fields as mandatory with reference to material types while creation of the material master data.
    For example:
    For Semi finished and Finished Schedule margin key is required(mandatory)
    For Raw Materials Schedule margin key is optional.
    Regards,
    Siddharth

    Hi
    find  following step to make field mandatory for material type
    Follow the stpes for making field as optional, required entry
    1 click the tab ,(Which is u want to be Required entry )and get the field name by pressing F1 key and then
    2.Go to T.Code: OMSR and enter that field name and get Selection Group
    once you get selection group and field name
    3 Use t.Code: OMS2 and click your material type and in next screen check Field reference ( you have assigned for material type; example :;For ROH material type the Field reference is ROH
    3. Use T.code:OMS9,, Double Click your Field Reference and select field selection Group , & select round box of Required Entry or optional and save
    check following link you will get clear idea [How to configure the fields required for each Material type ?;
    Regards
    Kailas ugale

  • Modifying selection screen for  adding  material type in report ME2L / ME2N

    Dear Friends ,
                        I want to add Material type as another selection criteria for the report ME2L.
    How can i manage it using customising or ABAP enhancements ?
    I do fine various enhancement point in its coding but not getting exact clue for managing this .
    Thanks in advance.

    Hello....
    The program for the t-code ME2L is RM06EL00
    In this we have the following portion
    Parameter und Select-Options                        *
    After this we have a couple of Select-options and parameters
    followed by includes
    INCLUDE fm06lcs1.
    INCLUDE fm06lcs3.
    INCLUDE fm06lcs4.
    INCLUDE fm06lcs2.
    You can write the select-options/parameters in any of these includes
    Fot this..click on the spiral icon-> go to any include
    click on "EDIT"(from the top menu) -> "Enhancement operations" -> "show implicit Ehhancement options" -> click on "RM06EL00"(report name)
    A different coloured line appears at the bottom of the include.
    Place your cursor on this line ..Right click -> "Ehhancement Implementation" -> Create ...give names according to customer name space and write your code here ...then activate it.....
    Please also note that this selection must be filtered somewhere..so search the code for the tables that may contain this field and see if an "ENHANCEMENT-SECTION" or point/spot is available
    Pls check , revert and reward if helpful
    Regards
    Byju

  • Problems with reference field in material type

    Hi,
    I have problem with field reference in material type creation.
    When I define a self-defined field reference ZERS (copy of standard field reference HERS) for a own defined material type ZERS (copy of material type HERS), I get the following error message:
    Field reference ZERS has not been set up
    Message no. CZ127
    Diagnosis
    You have specified a field reference that has not been set up.
    Procedure
    Set up the new field reference or use an already existing field reference.
    I do not understand why because the entry ZERS is present in table T130A.
    Here is the IMG config I have made:
    1. Logistics general->Material Master->Field selection->Maintain field selection for Data Screens (here I made copy of field reference HERS and named it ZERS)
    2. Logistics general->Material Master->Basic Settings->Material types->Define attributes of Material types (here I made a copy of material type HERS and named it ZERS. I then tried to set the field T134-FLREF "Field reference" to ZERS, but then the error message appears)
    Does anyone know what config I am missing?
    Or any reason why the error message CZ127 is coming up?
    Thanks

    Must have been system error, I deleted all entries and did it all over again, it worked.

  • How to create screen sequence and assign to material type

    Hi,
    How to create new screen sequecnce and how to assign it to material type, is there any link of Industry sector with this.
    regards,
      zafar

    how to assign it to material type and also what is use of industry sector
    Industry sector - it simply mean The industry sector groups companies according to activity, for example, plant engineering and construction, mechanical engineering, the chemical industry, and the pharmaceutical industry
    Field references are defined in Customizing for the Material Master in the activity Maintain Field Selection for Data Screens.
    for see field references run tcode OMs9.
    Assign Field references to Material Type by Tcode OmT3E, You can see in OMS2 in General data See Field references and SRef: material type

  • Material type change which has different Acct Category reference

    Hi,
    Is it possible to change the Material type which has different Account category reference?
    Example
    Old Material type is HAWA  with Account category reference
    0005
    New Material type is UNBW with Account Category reference 0007
    Regards
    Vengat

    Hi,
    Why to change material type? What’s your business requirement? If you will change material type, there will be so many effects to inventory and also to accounting.
    Ok ., But try with t. code: MMAM
    Regards,
    Biju K

  • How to add Material type(MTART) field on Selection screen of MB5B transaction code.

    Hi All,
        Please let me know how to add material type field on selection screen of MB5B transaction
    For that i made copy ZMB5B_COPY of original report RM07MLBD.
    Thanks in adv .
    Samadhan

    Hi,
    Once you copied the standard report to Z report, you can MTART in selection screen like below.
    and in order to inlcude the same in programming logic, we have three option.
    1) Check all related select queries, and include MTART in SELECT query using inner join with MARA.
    2) In START-OF-SELECTION event fill MATNR as shown below.
    3) If user entered any value in MTART, then before displaying the report just check material type of each material in the final internal table(which is used to display report) delete enteries from internal table accordingly.
    START-OF-SELECTION.
    IF MTART[] IS NOT INITIAL AND MATNR[] IS INITIAL.
        SELECT MATNR FROM MARA INTO MATNR-LOW WHERE MTART IN MTART.
          MATNR-OPTION = 'EQ'.
          MATNR-SIGN = 'I'.
          APPEND MATNR.
          CLEAR MATNR.
        ENDSELECT.
    ENDIF.
    The above option has one limitation: The selection screen variables has some restriction, please read the below thread.
    Facing problem in select statement dump DBIF_RSQL_INVALID_RSQL CX_SY_OPEN_S
    Getting Dump in the select query has more than 2000 entries
    Hope this will work for you .
    regards,
    Rajesh Sadula.

  • Screen no. for HERS Material type

    Hi Friends,
    I am trying to write a mass uploading program for HERS material type.
    When I go to Purchasing view of HERS material type "Manufacturing details" subscreen is showing below (like Internal Material no. & Mfr Part no). i.e. it is showing the sequence as General data - Purchasing values - Manufacturing detailssub screens. Actually I want the sequence as Manufacturing details- Genaral data - Purchasing  values.
    When I check in OM3TE 12 is assigned to HERS material type. When I checked in OM3TB for screen sequence of 12 --- in Purchasing view I could see screen no. as 3002. The sub screen sequence is also correct.
    But when I go to trnasaction MM02 --purchasing view the screen no. is 4000. (it is the screen no. to come for standard 12 screen sequence.
    Am doing corectly ?
    I want to get screen as 3002 in Purchasing view of HERS material type and sequence should be Manufacturing details- Genaral data - Purchasing  values.
    Regards,
    Sai Krishna

    Hi Sai Krishna ,
    Goto OMT3B and change the Screen no of Subscreen ( Last Column ) to :
    2312 -- 3rd Row
    2311 -- 4th Row
    2302 -- 5th Row
    At first note all the numbers in last column and then change it.
    Leave the others without any changes.
    Regards
    Ramesh Ch

  • Material Type - Screens

    Hello Experts
    In SPRO (Logistics - General -> Material Master -> Basic Settings -> Material Types -> Define attributes of Material types) for the type material XXX I selected the following screens: Accounting / Classification / Purchasing / Basic data and storage. But when I am creating a material of the type material XXX  it appears the following screens: Basic Data / Classification / Purchasing / Foreign Trade: Import Data / General Plant Data / Storage / Accounting. Why the screen Foreign Trade: Import Data appears ? It is ossible to remove this screen? How can I achieve that?
    Thanks in advance,
    Best regards,
    JP

    Hello JP,
    This depend on the Maintenance Status E (that include Purchasing & foreign trade import screen)...
    By the maintenance status E it is indeed not possible to see for a specific Mat. type only the purchasing view. But you are free
    to create a specific screen sequence (see customizing transaction OMT3B), which contains only this single main screen and assign then this special screen sequence to your mat.type . Please have a look at customizing transaction OMT3E, where you maintain the influencing parameters for the screen sequences.
    Regards,
    Mauro

  • Relationship between material type and industry sector

    Hi experts
    when using t-code mm01,there are two fields material type and industry setor in screen.Is there any relationship between material type and industry sector? I want to know if user be able to see the material type related to particular industry sector?
    thanks in advance!

    Hello
    There is no direct relationship between the material type and the industry sector.
    The industry sector is used only for field sttus maintenance (fields in display/optional/requierd entry) in transactions.
    We will assign seperate field reference groups to industry sectors and deopending on how we configure the field references, the fields will appear for the materials created for that industry sector.
    regards

  • How to handle gas cylinders material type

    HI Gurus OF MM,
           I want to create a material type as cylinder (ex.oxygene,acetlene cylinders for production ).
         Its is inwarded through stores and it is consumed by the Production activities(Cost center).After the utilisation( after cosuming
    ) he is returning it to stores as empty cylinders.
        Again frm stores its is returned to Vendor.
       How i could issue this material to the cost center and how i can get it back.
       How i could inward that material Through Purchase Order ???What is the procedure for PO also.
       Any movt type is their and if so suggest me in detailed way?
      Any one have faced this type of issues just share with me also.

    Rajesh
    Follow the below steps.
    01. Create Gas as Raw material
    02. Create Cylinder as RTP material ( LIEH)
    Create Purchase order for Vendor
    Post the GR with reference to Purchase order 101
    Click on Transport equipment icon (extreme right icon in the middle of screen) > enter material, qty, loc, vendor , for this movement type 501 M will trigger
    and Save the document
    You can see the returnable packaging cylinder in stock , and post reversals through movement type 502 M
    Hope this clarifies
    Thanks & Regards,
    Sridhar

  • Field selection for Material Type

    Hi,
    When we create the material type we are assigning a field ref. in Define Material attributes screen, and when we are creating the industry sector there also we are assigning a field  screen reference.
    No when we creat a materail with MM01, and if Field ref. is different in Industry sector and material type then which system will follow when we create the material it will be ref. to field selection in Material type or industry sector.
    regards,,
    zafar

    Zafar,
    When you talkout Material type is basically controls the properties of a Material like important control fucntions and attributes.
    That is inturn, like Field selection, Special material type, Type of Procurement, Stock (Qty &Value) updation, User departments and Price control. But,
    where as Field selection is control key which consits of some setoff fields which are subjected to a perticular Industry sector like, Plant &Construction, Mechanical Industry, Pharmacuetical Industry, Chemical Industry, etc. In this case field selection is different from Industry to Industry, but in some cases field selection is common for the similar kind of Industries or Industry sectors.
    And the Field selection is subjected to the Material type as well, that means each material type can have their own Field selection (it is named with a field selection key 3 char sap code for field selection).
    Comming to the Creation of Material master record : using MM01  ( create material -general)
    here, you need to select the material type and industry sector --> then you need to choose the relevent user departments and subsequently plant, sloc.etc.
    Note: when you are creating the material in the above fasion, you need to enter the relevent data which is w.r.to the user departments which you have choosen, and those inturn reflect from this control data ( attributes and important control functions as I said is the definition of Material type).
    And this is how a material is created, wether it can be a Raw material, Semi finished Product or Finished Product, etc.
    Note: There is an option to create your own Material Types, but SAP suggests to use standard Material type when you create material master record, unless otherwise a special requirement comes from your client is from Specific Industry sector or if running a special kind of business which is not yet dragged into the SAP R/3 system.
    Hope this will clarifies your query.
    With Regards,
    Srin

  • Field Ref. and SRef,mat type when creating new material types

    Hi,
    While creating new material type we are giving the Filed ref. on that basis sytem find which fields are option mand. etc. below the filed ref. there is also SRef for material type , why this fileld is use ? if this is screen sequence ref. then what is use of industry sector when creating material bcoz industry sector also determines the scrren ref. then which will follow when we creat the material.
    regards,
      zafar

    Hi,
    SRef is the Screen reference .
    You have to create the Sref then it should assign depending on the transaction.
    Grouping of transactions that determines what screens are displayed depending on the transaction when you maintain material master records. It also determines the order in which the screens appear.
    The screen reference Transaction is in table T130M.
    In material master the first reference is industry sector,then specific to the industry sector what is the material type & screen sequence.
    Regards,
    Raj

  • Mandatory in material master with material type wise

    Dear all
    Is it possible to make a field mandatory in material master with material type wise?
    kindly help

    Hi
    See the below config
    Check in OMS2 for your material type for "field reference". then
    Spro>logistics general>Material master-->field selection.
    Here you need to group required fields under one field selection group. then in Maintain field slection for data screen, you can make Field group madatory for the field reference (material type)
    If required take help from MM consultant
    Regards
    Antony

  • Regarding Industries type and including the material types in indu sector

    Hi Gurus,
    I have query regarding the above subject.
    i want to add my own material types to my own inds sectors in MM01 screen.
    I dont know how to do that?
    Please help me.
    Pran

    Hi,
    OMS2 - Material Type
    Here you can select the standard material type and copy to new one
    OMS3 - Industry Sector
    Here create industry sector by "New Entries" and assign the field reference as per requirement.
    Then check in MM01, it will start appearing.

Maybe you are looking for