How to find when a new Material type is created

Hi Gurus,
I need to know when a particular material type has been created in SAP.
Can i check it some where in SAP, or i need to go through internal CR's. Is that the only way.
Thanks

Dear Gameen,
Check in OMS2->menu>utilities--->change logs,mention some date range and execute and once after getting the
results,double click on type V and check the user id and the time details for the details.
Check and revert
Regards
Mangalraj.S

Similar Messages

  • How to find Industry sector and material type of created Material

    I have created a material by choosing Industry Sector and Material type as "Retail" and "Finished Product".
    After creating the material I want to know, what is Industry Sector and Material Type of the created Material?
    Please provide the corresponding T-code or solution.
    Thanks in ADVANCE.

    hi
    for single material
    u can go to mm03 material then basic data1
    then click i icon in blue
    u will get all details
    for range of materials
    go to se16
    ive table MARA
    then enter
    go to settings >field selection here select
    MTART                           Material Type
    MBRSH                           Industry Sector
    and then click ok
    then execute
    u will get list of material with ind sec and mat type
    regards
    kunal
    award if helpful

  • 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

  • How to find the quatity of material in backorders

    hi
    in which table the backorders get saved.
    from the v.15 transaction i got the backorders.
    i like to know that how to find the quantity of material which is due in the backorders. what are the fields for backorder quantity of material.
    regards
    kq

    Solved in this way
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(SUBCLASS) TYPE  KLSCHL
    *"  EXPORTING
    *"     VALUE(CLASS) TYPE  KLASSE_D
    *"  TABLES
    *"      RETURN STRUCTURE  BAPIRET2 OPTIONAL
      DATA: lv_clint TYPE clint,
            lv_clint1 TYPE clint.
      CLEAR: lv_clint,lv_clint1,class.
      FREE: return.
      SELECT SINGLE clint
                    FROM swor
                    INTO lv_clint
                    WHERE kschl = subclass.
      IF lv_clint IS NOT INITIAL.
        SELECT DISTINCT clint FROM kssk
                        INTO lv_clint1
                        WHERE objek = lv_clint.
        ENDSELECT.
        IF lv_clint1 IS NOT INITIAL.
          SELECT SINGLE class
                    FROM klah
                   INTO class
                   WHERE clint = lv_clint1.
        ENDIF.
        ELSE.
          CONCATENATE subclass 'Subclass not found' INTO return-message SEPARATED BY space.
          APPEND return.
          CLEAR return.
      ENDIF.
    ENDFUNCTION.

  • How to create a new transaction type to create Lead

    I have tried to to create a new transaction type to create Lead. But after putting all the relevant data an error showing "Enter an Organizational Unit(Sales)" is reflected.Can't really find out what kind of Error is this and how to fix it?

    Hi,
    Maybe you must assign this org. in partner tab.
    Best regards,
    Caíque Escaler

  • Reg. New material type and New movement type

    dear Friends
    For what reason we need to create new material type and movement type ? this quesition is frequently asked by interviewer,but my answer is not exactly correct. Please tell me, why we are create newly. already I posted this quesition and got reply but no satisfaction with that.
    Thanks in advance
    Rajakumar.K
    *Note : Interview questions were not allowed in forum,Search forum before posting,lot of answered
    threads already available*
    Edited by: Jeyakanthan A on May 26, 2011 10:57 AM

    Hi,
    New Material type is required to meet various business functionalities of client. Depending on user department views required by client, field selection key required, wheather quanity and value updation is required or not and if so under which valuation area its required, wheather the business wants to have default value of price control  in material master, number range intervals to be used and wheather its internal/external, account determination process etc are some controlling functions which may force a business to create customised or new material type.
    Similarly new movement types can be created when the controlling features of the existing movement type do not match the requirement like wheather any movement type is required to move goods from GR valuated stock ( as an illustration), wheather auto PO/Auto storage location needs to be decided automatically, new account grouping and field selection procedure to be used etc are some controlling functions. As an illustration in earlier version of ECC 6.0 there was no movt type like 107,109 etc but since most of the business wanted to valuate stock when goods movement will occur from GR valuated stock , the above movt types was introduced in ECC 6.0. Thus business justification and understanding should be concrete to create new movt type.

  • How to add support for new file type.

    Using the ESDK, I would like to add support for new file type ( a new extension). this new extension will function like any other non visual code editor but will have specific syntax highlighting, code folding and explorer.
    I am trying ot figure out if I need to create a new editor or use existing JDeveloper code editor and add support for new file type. Does anyone have a high level outline on how to do this using the ESDK that is specifically targeted at adding new file type support for a text based code editor?
    I have looked at the Samples and keep going in multipe directions. It would be cool if there was an example that was how add syntax higlighting for new file type.
    Thank you

    Brian, thank you. I looked at this extension and it answered a lot of questions for me. I was going in the right direction but needed a little help and bost of confidence, this is just what I needed. I created the LanguageSupport, LanguageModel, Addin, Node and TextDocument that are specific to the new file type. I was getting hung up on how to hook this into the JDevelpoer editor. I keep thinking I have to create a custom editor but it looks like I don't have to and it looks like I can associate this file support with the editor framwork, for version 10.1.3.2, with the following in the Addin Initilize() method.
    Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
    CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
    LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    I have done this but still not able to recognize the new file type.
    At this point, I just want to be able to recognize the new file and display it's associated icon or display a messare to the message log. I put a System.out.println("test") in the Initilize() method of my addin. then I registered MyAddin in the extension.xml. JDeveloper sees this new extension and it is loaded but I have not been able to show the test message or display the new icon when I open the new file type.
    extension.xml
    <?xml version="1.0" encoding="windows-1252" ?>
    <extension xmlns="http://jcp.org/jsr/198/extension-manifest"
               id="teisaacs.jdev.myext.MyAddin" version="1.0.0" esdk-version="1.0"
               rsbundle-class="teisaacs.jdev.myext.resources.MyResBundle">
        <name rskey="EXTENSION_NAME">My Code Editor</name>
        <owner rskey="EXTENSION_OWNER">Me</owner>
        <dependencies>
            <import version="10.1.3">oracle.jdeveloper</import>
        </dependencies>
        <hooks>
            <jdeveloper-hook>
                <addins>
                    <addin>teisaacs.jdev.myext.MyEditorAddin</addin>
                </addins>
            </jdeveloper-hook>
            <feature-hook>
                <description>My Code Editor</description>
                <optional>true</optional>
            </feature-hook>
            <document-hook>
                <documents>
                    <by-suffix document-class="teisaacs.jdev.myext.model.MySourceDocument">
                        <suffix>my</suffix>
                        <suffix>MY</suffix>
                    </by-suffix>
                </documents>
            </document-hook>
            <editor-hook>
                <editors>
                    <editor editor-class="teisaacs.jdev.myext.editor.MyEditor">
                        <name rskey="EXTENSION_NAME">My Editor</name>
                    </editor>
                    <mappings>
                        <mapping document-class='teisaacs.jdev.myext.model.MySourceDocument">         
                            <open-with editor-class="teisaacs.jdev.myrext.editor.MyEditor"
                                       preferred="true"/>
                            <open-with editor-class="javax.ide.editor.CodeEditor"/>
                        </mapping>
                    </mappings>
                </editors>
            </editor-hook>
        </hooks>
    </extension>
    public class MyAddin implements Addin {
        public static final String MY_EXTENSION = "my";
        public void initialize() {
            System.out.println("MyEditor Constructor");
            new MyLanguageModule();
            Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
            CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
            LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    }I have added and removed the editor hook along with many other modificaitons to the extension.xml but still not recognizing the new file extension.
    Todd

  • How to find when index was created in the database.

    Hi,
    Please help me, how to find when index was created in the database. It should give with date and time.
    Thanks... Bakser

    Please help me, how to find when index was created in the database. It should give with date and time.DBA_/ALL/User_objects Created
    Name                                      Null?    Type
    OWNER                                              VARCHAR2(30)
    OBJECT_NAME                                        VARCHAR2(128)
    SUBOBJECT_NAME                                     VARCHAR2(30)
    OBJECT_ID                                          NUMBER
    DATA_OBJECT_ID                                     NUMBER
    OBJECT_TYPE                                        VARCHAR2(19)
    CREATED                                           DATE
    LAST_DDL_TIME                                      DATE
    TIMESTAMP                                          VARCHAR2(19)
    STATUS                                             VARCHAR2(7)
    TEMPORARY                                          VARCHAR2(1)
    GENERATED                                          VARCHAR2(1)
    SECONDARY                                          VARCHAR2(1)
    select OBJECT_NAME,TIMESTAMP,CREATED  from ALL_OBJECTS where OWNER='OWNERNAME' AND OBJECT_NAME='OBJECT_NAME' AND OBJECT_TYPE='INDEX';Edited by: Anantha on Apr 21, 2009 3:18 PM
    Edited by: Anantha on Apr 21, 2009 3:19 PM

  • Creation of new Material Type - Asset

    Dear Friends,
    Here as per my client requirement, i have to define new material type for Asset Material.
    For this definition i need following info -
    1) Views to be selected.
    2) Which Price control indicator is to be set for the ASEET
        Material Type? (V or S)
    Thanks in Advance

    Hi
    Material type for asset - Copy ROH.
    Maintain the views Basic data, Purcahsing, Accounting, Storage views (only if  you have profit center accounting )
    Price Control give it as a Moving average.

  • Reg: Creation of new Material type

    Hai Guys,
    Jino here,can anyone please tell me the procedure for creating my own "MATERIAL TYPE"
    while creating a new material.
    Regards
    Jino.

    Hi
    decide which material type in the standard availabilty closely resembles you New material Type  you are planning to create, It may be ROH/HALB/FERT/ERSA or any other. Use the TxN OMS2 for this, select the existing Std Material and do a Copy As and name the New material Type starting with Z . for example ZRAW , once saved select the material tyep and go to the details of the new material type , you can remove Certail views if you donot wish to have it during material creation, check out other parameters also lie external proc/internal proc, standard or Moving avg price indicator  and proceed as required for you.
    Regards

  • Creating New Material Type

    Hi,
    While creating new material types what things should be taken in to consideration?
    If i want to create it by using copy function which ref. material type we should select and why?.e.g. ZSCRAP- Scrap Material

    Dear Ashutosh ,
    Grouping of Material that have same basic  properties  can be assigned to one material type.
    While creating new material types following points to be considered as material type controls following things,
    1) Material is intended for certain purpose ( For ex consumption)
    2) Whether  material Number to be assigned internally or externally
    3) Number range intervals
    4) Screen sequence & which screens to be appeared
    5)Which user data can be entered
    6) Which procurement type ( Internal or external)
    7) Inventory management i.e. value & qty update  required..
    You can also change material type for a material  under following conditions.
    1) Old & new material type must be assigned to same account category,
    OR
    2) No. open PO ,stocks or reservations
    I hope this will clarify your doubts,If found useful please reward points
    Vivek Maitra

  • How to keep Industry sector and Material Type in Display for Tcode MM01

    How to keep Industry sector and Material Type in Display for Tcode MM01( create material Initial screen)
    Thanks,

    Hi
    Yes, your requirement is possible using screen variant
    1. use tcode SHD0
    2. give transaction as MM01
    3. goto screen variant tab - assign some name - enter program name and screen name
       (from mm01 - F1 help)
    4. goto transaction variant tab - assign some name - assign already defined screen variant name
    5. goto standad variant tab - transaction variant name already fetched automatically - click on active button (it was placed after transaction variant name
    Raju

  • Cretaion of new material type in sequence and defining No. range

    Dear Pal,
    Please enlighten with steps for creation of new material type and subsequent configuration and defining No. ranges for the same.
    thanks
    v balajee

    Hi,
    To configure new material type please follow the below process:
    In transation code OMS2 please select any standard material type and copy as for new material type.
    You can give the name of material type here and then save it.
    Now just double click on new material type and then select the necessary views as per your requirement.
    Then select your new material type and click on quantity\value updation and select the check box for required plants.
    For the Number ranges please follow the below path in SPRO:
    Logistics-General>Material master>Basic settings>Material types>Define number ranges for each material type
    Assign material type with Number range group
    Regards,
    Manish

  • How to find the of Oracle software types and versions installed

    Hi,
    How to find the of Oracle software types and versions installed on RedHat Linux AS machine and Sunsolaris10 machine?
    Regards,
    Mathew

    I'm not sure about your point.
    You can use "opatch" command-line
    cd $ORACLE_HOME/OPatch
    ./opatch lsinventory -detail
    PRODUCT NAME VERSION
    ============ =======
    Advanced Queueing (AQ) API Patch 10.1.0.4.0
    Advanced Queueing (AQ) API 10.1.0.2.0
    Advanced Replication Patch 10.1.0.4.0
    Advanced Replication 10.1.0.2.0
    Agent Required Support Files Patch 10.1.0.4.0
    Agent Required Support Files 10.1.0.2.0
    Assistant Common Files Patch 10.1.0.4.0
    Assistant Common Files 10.1.0.2.0
    Authentication and Encryption Patch 10.1.0.4.0

  • How to find when and what date my iphone was first switched on from a retailer

    how to find when and what date my iphone was first switched on from a retailer

    Depending on the Code version you are running you can look for this output . It will show when a SFP was removed and inserted.
    module-2# show port-config internal all  (This command wil differ of earlier versions of SAN OS )
    Mar 20 08:53:45 2011  00449361  fc2/20         ---   DOWN   Xcvr inserted          
    Mar 20 08:53:32 2011  00829429  fc2/20         ---   DOWN   Disable                
    Mar 20 08:53:32 2011  00826403  fc2/20         ---   DOWN   Disable                
    Mar 20 08:53:32 2011  00818936  fc2/20         ---   DOWN   Xcvr removed  

Maybe you are looking for

  • Can't get your Apple TV to show up in ITunes Devices? Try This!!!

    I tried everything, even Applecare couldn't figure it out after 3 hrs. Try this (hope it works for you like it does me!) try resetting your NVRAM via the following process: Shut down your Mac, then start it back up while immediately holding the follo

  • Implementation of SequenceImpl and third party Datasource

    Hi ! When trying to use a third party datasource that supports sequences like i.e. maxdb (formaly sapdb) there is a problem with the implementation of the oracle.jbo.server.SequenceImpl class. This class generates a sql-statement like: select sequenc

  • TC: The Internet connection is currently in use by another computer...

    So, I have a TC connected to a Netopia ADSL modem from Earthlink. Ocassionally, when the computer has left the wireless network, I will come home to find the following page with the Earthlink logo at the top: "The Internet connection is currently in

  • Total Results Count in search results page

    Hi, I am working on a website.If we search for a particular object in search box(like:pen,pencil,box).It should give me the total count of those particular object with its details . I tried in several ways to get the total count,but it displaying onl

  • Need help getting dreamweaver to recognize my database file

    For a couple of years I have maintained a website that lists available apartments for a rental company.  I want to create a search function to help potential tenants find an apartment more efficiently on the website.  All the data (about 20 columns p