How to know Movement type details

hi experts
to Know about the Movement types Details is  SPRO-MM-Inventory Management & Physical Inventory-Movement Types-Copy, Change Movement types and Click on Documentation
here until " change movement types " i followed
after that where to go and check for the documentaion
can you explain the steps
thanks
ganesh

Go to SPRO-MM-Inventory Management & Physical Inventory-Movements Types- and Here Select the Doucmentaation Icon Prior to Radio button of Copy, change Movement Types
Here you will get all the Movement type Details........

Similar Messages

  • How to know the type of a variable??

    how to know the type of a variable??
    For example, give you a variable s, how to determine if it is
    a primitive type, of an object?? If this is primitive type,
    any ways to determine if it is integer, boolean, double, ...??

    I am currently working on a project where this happens. I have a main type of object that all of my other types extend. While working on the objects in a method, any type of other object could be coming through. To test I try to cast the object and catch class cast exceptions. This only works because I know the different type that will be coming through....
    public void testObject(classX object){
      try{
        classY object = (classY)object;
      }catch(ClassCastException CC){
        try{
          classZ object = (classZ)object;
        }catch(ClassCastException CCC){
          /// the object fails to be cast as the types I tested for.
    }

  • How To Block Movement Type

    Dear Experts
    How to Blocked Movement type to do any movement .
    which field in OMJJ for blocking the Posting of Any movement
    Rgds
    Pankaj Agarwal

    Hi,
    Inform your basis personnel to modify the authorization object -
    M_MSEG_BWA Goods Movements: Movement Type
    To ensure that the field BWART does not contain the movement type which you want to block. This will ensure that users will not be able to use this movement type.
    Hope the above answers your query.
    Regards,
    Vivek

  • How to copy movement types

    hello sdn users
    this is deepak
    did any one of u worked on a movement type which is copied from the standard
    how to copy movement types
    please help it was asked in an interview
    thanking u in advance

    Hi,
    Select the movement type and go to next screen. Give range as 101 to say Y01.
    then you can specify target mvt types between this range. You cannot specify new mvt type as Z01 in this case.
    hope it clarifies.
    Seema

  • How to know which type of jdbc driver used in my application

    How to know which type of jdbc driver used in my application.

    My approach will be....
    Type1: you have to have ODBC s/w install on your machine...even the connection string starts with jdbc:odbc....so it can be identifed easily
    Type2: you have to install client s/w in your machine...if you are using oracle oci driver ...you need to install oracle client s/w
    Type3: you use servername / port to connnect to middleware
    Type4: you do not need any client s/w
    So, If your application works without any client s/w on your machine....you might be using Type4/Type3 driver.....otherwise Type2
    Someone pls add more ....

  • How to know which type of apple device am using

    how to know which type of apple device am using

    Check iPad model with the Serial Number
    https://selfsolve.apple.com/agreementWarrantyDynamic.do
    Settings>General>About>Serial Number

  • How to change movement type of Delivery goods issue?

    Hi all!
    I need to change the movement type used by posting Goods Issue in an outbound delivery (tcode VL02N).
    Please provide some instructions or cookbooks on how to do the configuration..
    Thanks a lot!

    Hi,
    Get the Schedule Line Category used in Sales order. Go to VA03, here double click on the sales order line item and go to "Schedule Lines" tab, here get the Schedule Line category.
    And then go to VOV6 and double click the Schedule Line category and in detailed screen, change the movement type.
    Then try for Delivery and PGI.

  • How to reverse movement type 647

    Hi Everyone,
    Need to reverse the GI (movement type 647) posted for Intra Co STO.
    Tried using MIGO or MBST. We are getting error message: m7130 (Material Document cannot be processed)
    The only allowed transactions that I found in OMJJ for movement type 647 are --
    MB11
    VL01
    VL01N
    VL01NO
    VL02
    VL02N
    VL03N
    VL08
    Please let me know how should I reverse this GI posting.
    Thanks & Regards,
    Ravi

    Thanks Jürgen. Yes I could reverse the GI. But because VL09 was not listed in the allowed transactions for 647 I had not tried it earlier. Could you help me understand why it is not listed in OMJJ?

  • How to create movement type

    hai sap gurus,
    can u clarify my problem,
    how to create a movement type and where we assign that movement type to gl account
    clarify please

    Hi Ram,
    You can create Movement type in OMJJ transaction by Copying the existing mvt types. Once you copy the mvt type all the details from the existing mvt type will be copied to new mvt type.
    Based on the Account grouping the system will identify the G/L accounts. You can check this OMJJ transaction you will get better idea.
    One more thing why you need the new mvt type, if it is really required then go for new mvt type otherwise use the SAP standard Mvt type which will serve all the purposes.
    rgds
    Chidanand

  • How to change movement type 531 for by-product ???

    Hi,
    While creating production order (CO01), by-product component with negative quantity is automatically assigned movement type 531.  Can anybody tell how this movement type is picked automatically ? How can it be changed  to some other movement type (say Z31 i.e. copy of movement type 531) ?
    Thanks,
    Bijay

    Hi Bijay,
               It might be better if i share it with you.While creating the order SAP automaticallly assigns the movement type.The order created is of Devlopment class CO and GI-BY-Order is by default 531.
    As you were talking about.SAP has provided us the transaction OPKA to adjust if the change is required.So please give it a try.Hoping it be you help.
    Have a best day ahead.

  • Debug reg.cgi - how to know the exception detail in try..except

    after digging more into the app i have found that when i run the http://192.168.0.110/cgi/reg.cgi?&username=shaun&identity=3
    It returns false... which means that the reg.cgi could insert the username and identity inside sqlite db.. my problem is how will i know what error is coming as i dont have working knowledge of cgi script.. below is the code
    How to print the type of error in except like in dotnet we have try...catch(Exception ex){ ex.messsage} where ex.message will tell me the error.. how to do this in cgi
    print 'Content-type: text/plain\n\n<?xml version="1.0" encoding="utf-8"?>\n<result>'
    if user:
        try:
            c = db.cursor()
            c.execute("insert or replace into registrations values (?, ?, datetime('now'))", (user, identity))
            print '\t<update>true</update>'
        except:
            print '\t<update>false</update>'
    for f in friends:
        print "\t<friend>\n\t\t<user>%s</user>" % (xml.sax.saxutils.escape(f), )
        c = db.cursor()
        c.execute("select m_username, m_identity from registrations where m_username = ? and m_updatetime > datetime('now', '-1 hour')", (f, ))
        for result in c.fetchall():
            eachIdent = result[1]
            if not eachIdent:
                eachIdent = ""
            print "\t\t<identity>%s</identity>" % (xml.sax.saxutils.escape(eachIdent), )
            if f != result[0]:
                print "\t\t<registered>%s</registered>" % (xml.sax.saxutils.escape(result[0]), )
        print "\t</friend>"
    db.commit()
    print "</result>"

    try:
      db_cursor.execute('some hopefully valid SQL;')
    except sqlite3.Error, msg:
      print msg
    After adding the above code i recieved an error : unable to open the database.. so after some googling
    i found the below answer http://jaux.net/2008/12/18/sqlite3-unable-to-open-database-file/
    Also Having being pissed for a while, I finally figured out what was wrong  here: The web server needs the write permission to not only the database  file, but also the containing directory of that file.

  • How to config movement type 261?

    Hi, all,
    My process GI to production is as follows,
    1. Stage material from a storage bin to 914
    2. Issue material from 914 to production with MB1A/261(movement type)
    My question is: when I finished the MB1A/261, the system also generated a TR which I wouldn't deal with any more concurrently, so there're lots of such TRs stacked in the system as time goes by...How can I config the movement type 261 to fulfil this purpose?
    Thanks
    Michael

    Hi,
    Try MIGO with Goods iusse and order option processing with your order number.
    In the WM tab there is an icon for " No Transfer Requirement". Try out this option.
    Regards,
    DilliB

  • How to know item type in a .fmt???

    My problem is that I don't know item type when I read a .fmt
    Please, Help Me.
    Thank You

    The FMT format is not designed to be readable - use the Forms Object list report instead. If you are trying to make changes by changing the FMT, this is not supported. Look at the Forms C api in 6i and 9i or the Java API (JDAPI) in 9i to do this kind of operation.

  • How to know the type of mobile?

    how to get the type of mobile model mean under nokia asha 308(rm 352/ rm 838) which model i have when i am buying this mobile .no option to check the *#0000# option then how to get this..

    Check the label on the box or under the battery.

  • How to block movement type 261 and 262 from several storage locations

    Dear Expert,
    Can we block the  261 and 262 movement type from several storage locations? These storage locations are not affected by the MRP run, where for the materials that have been moved to these storage locations their existance are not count. These storage locations could not be used for confirmation production order, therefore i want to block  261 and 262 movement type from these storage locations.
    Thanks
    Pauline

    Dear Pauline,
    if my understanding is correct abt ur query,
    1) you want in confirmation screen, Consumption should happen only from one storage location
    2) Rest all storage locations should not be allowed
    3) Maintain Storage location in BOM component view, in mass you can maintain in CEWB
    4) Now GO with SHD0, Make storage location field as Out put only, for CO11N Transaction
    Plz refer this link for SHD0 Demo
    [https://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/transactionVariant-AStepbyStepGuidefor+Creation]
    Regards
    Madhu Kumar

Maybe you are looking for

  • Excel web access: Parameters in external data sources not supported???

    I have a SharePoint 2013 site with Excel services. The site itself has a Current User Filter Web Part which gives filter value [userID] to a Excel web access -web part. In the Excel itself I have a named area(UserIDfromSharePoint) defined as a parame

  • Since March 5th Firefox will not load pages except for Homepage.

    Firefox just says "connecting" on the tab and after thirty minutes the page doesn't load. I have tried restarting my computer a few times, and have uninstalled then reinstalled Firefox. It is not a problem with the connection and does not appear to b

  • Urgent !!! regarding mapping of  frequency to operation.....Have ur points.

    Hi all, In transactin IA05, we make tasklist master. I want to link (task group->group counter-><b>operation->frequency</b>) in my itab. Pleas suggest me the table in which i can link the operation with frequency. Very urgent....thanks in advance <b>

  • Server error when order PO

    Hi, We have one portal system and one SRM system. Both are connected trough one NAM acelerator, which is set in the portal SRM system definition (System administration -> system configuration -> portal andscape). We can open and edit any PO without p

  • How do I upgrade to ios6

    I have an iPad first gen looking to upgrade from Iso5 to Ios6, what do I need to do or get.