How to post stock and what transaction codes

Hi gurus
If I created new material how can I post stock in to the material to process.
Ex:MMBE for stock checking.
But what is the t -code to enter some stock at materila.
also how what other transaction I can for stock posting at various scenarios.(I mean what other transaction codes for different things)
Thanks
Kris

Hi
Enter T.Code: MIGO
Select : Other
Movement Type : 561
In the item Details Entyer the material . enter the quantity. Plant and Storage Location.
Save it. CHekc the Stock In MMBE for that material.
Thanks & Regards
Ram

Similar Messages

  • How I post HTML and Video embed code from my component to landing page?

    Hi there,
    How I post HTML and Video embed code from my component to landing page?
    My Components are developed in NODEJS and PHP.
    Thanks

    Answered here http://topliners.eloqua.com/thread/7944

  • How to Execute FEBP and FEBA transaction codes

    Hi All,
    Can you please explain me how to configure customizing for FINISTA in EBS.
    And also can you plz explain how to execute the t codes FBEP and FBEA.
    regards
    Madhavi

    Hi
    Enter T.Code: MIGO
    Select : Other
    Movement Type : 561
    In the item Details Entyer the material . enter the quantity. Plant and Storage Location.
    Save it. CHekc the Stock In MMBE for that material.
    Thanks & Regards
    Ram

  • How To Handle Tickets and What are those

    Hi Everybody,
    Can anybody tell me, How to handle tickets and what are those.
    srinivas

    Hi,
    Tickets are basically assocaited with Production support type of work.
    Tickets are nothing but the medium through which problems reported either in the system or by users to the Production support team.
    There are certain problem management tools that every organization uses (tickets are created and worked on using those tools). There are tools like Vantive, Remedy, CASE, etc.
    Usually the helpdesk gets the first contact for any user problems and then they log a ticket with the appropriate support teams. The support teams then pick up those tickets and work on them till they are resolved. There are tickets created for user problems or any batch job failures, system failures, etc.
    Tickets are usually classified as Critical, High or Low and again they are categorized as High Severity, Medium Severity or Low Severity. All these types of tickets have SLAs (Service level agreements) for the Support teams to respond and the resolve the tickets in.
    Look at the threads below for similar posts :
    tickets
    Tickets
    tickets
    Cheers,
    Kedar

  • How to post aquisition and depriciation at the same time

    Hi Gurus,
    Could you please let me know how to post aquistion and depriciation at the same time.

    Hi
    What do you mean by postin at a time, is it uploading the balances to SAP
    if not there is no question of posting at a time
    Thanks
    Kameshwar Rao

  • How to activate background option in transaction code S_ALR_87013558

    Dear All
    Kindly guide me. How to activate background option in transaction code S_ALR_87013558
    Regards
    Sanjeet Kumar

    Hi Sanjeet,
    I think the thread that you have read have different program number.
    Please follow the below mentioned steps:
    1. First execute report S_ALR_87013558. Then go to System->Status and copy the program number from there.
    2. Go to se38 and put the program number and execute.
    3. Go to Program at the top menu and now there you can see the option Execute in Background available there.
    4. Execute and save it as variant.
    5. Go to SM36, mention the job name and enter. Put the variant and save.
    6. Go back, and go to start condition and start immediate or as per date/time desired.
    Try this, if it works.
    Regards,
    Amit Rajoria

  • How Do You Place  ( and ) Characters in Code?

    How Do You Place( and )characters in Code? Example (302). THANKS.

    What do you mean?
    "(" and ")" are used in expressions much the same way they are used in algebraic expressions. They are also used to enclose a type name to form a cast specifier, to enclose the expression that defines the condition of an if, for, while or switch statement and they are use to enclose the formal argument list in a method declaration and the actual argument list in a method invocation. They can also appear in string constants. I probably left out a couple...

  • How to find Latch and what actions need to be taken when there is a latch

    Hi
    Can you please tell me how to find Latch and what actions need to be taken when there is a latch?
    Thanks
    Regards,
    RJ.

    1. What is a latch?
    Latches are low level serialization mechanisms used to protect shared
    data structures in the SGA. The implementation of latches is operating
    system dependent, particularly in regard to whether a process will wait
    for a latch and for how long.
    A latch is a type of a lock that can be very quickly acquired and freed.
    Latches are typically used to prevent more than one process from
    executing the same piece of code at a given time. Associated with each
    latch is a cleanup procedure that will be called if a process dies while
    holding the latch. Latches have an associated level that is used to
    prevent deadlocks. Once a process acquires a latch at a certain level it
    cannot subsequently acquire a latch at a level that is equal to or less
    than that level (unless it acquires it nowait).
    2. Latches vs Enqueues
    Enqueues are another type of locking mechanism used in Oracle.
    An enqueue is a more sophisticated mechanism which permits several concurrent
    processes to have varying degree of sharing of "known" resources. Any object
    which can be concurrently used, can be protected with enqueues. A good example
    is of locks on tables. We allow varying levels of sharing on tables e.g.
    two processes can lock a table in share mode or in share update mode etc.
    One difference is that the enqueue is obtained using an OS specific
    locking mechanism. An enqueue allows the user to store a value in the lock,
    i.e the mode in which we are requesting it. The OS lock manager keeps track
    of the resources locked. If a process cannot be granted the lock because it
    is incompatible with the mode requested and the lock is requested with wait,
    the OS puts the requesting process on a wait queue which is serviced in FIFO.
    Another difference between latches and enqueues is that
    in latches there is no ordered queue of waiters like in enqueues. Latch
    waiters may either use timers to wakeup and retry or spin (only in
    multiprocessors). Since all waiters are concurrently retrying (depending on
    the scheduler), anyone might get the latch and conceivably the first one to
    try might be the last one to get.
    3. When do we need to obtain a latch?
    A process acquires a latch when working with a structure in the SGA
    (System Global Area). It continues to hold the latch for the period
    of time it works with the structure. The latch is dropped when the
    process is finished with the structure. Each latch protects a different
    set of data, identified by the name of the latch.
    Oracle uses atomic instructions like "test and set" for operating on latches.
    Processes waiting to execute a part of code for which a latch has
    already been obtained by some other process will wait until the
    latch is released. Examples are redo allocation latches, copy
    latches, archive control latch etc. The basic idea is to block concurrent
    access to shared data structures. Since the instructions to
    set and free latches are atomic, the OS guarantees that only one process gets
    it. Since it is only one instruction, it is quite fast. Latches are held
    for short periods of time and provide a mechanism for cleanup in case
    a holder dies abnormally while holding it. This cleaning is done using
    the services of PMON.
    4. Latches request modes?
    Latches request can be made in two modes: "willing-to-wait" or "no wait". Normally,
    latches will be requested in "willing-to-wait" mode. A request in "willing-to-wait" mode
    will loop, wait, and request again until the latch is obtained. In "no wait" mode the process
    request the latch. If one is not available, instead of waiting, another one is requested. Only
    when all fail does the server process have to wait.
    Examples of "willing-to-wait" latches are: shared pool and library cache latches
    A example of "no wait" latches is the redo copy latch.
    5. What causes latch contention?
    If a required latch is busy, the process requesting it spins, tries again
    and if still not available, spins again. The loop is repeated up to a maximum
    number of times determined by the initialization parameter SPINCOUNT.
    If after this entire loop, the latch is still not available, the process must yield
    the CPU and go to sleep. Initially is sleeps for one centisecond. This time is
    doubled in every subsequent sleep.
    This causes a slowdown to occur and results in additional CPU usage,
    until a latch is available. The CPU usage is a consequence of the
    "spinning" of the process. "Spinning" means that the process continues to
    look for the availability of the latch after certain intervals of time,
    during which it sleeps.
    6. How to identify contention for internal latches?
    Relevant data dictionary views to query
    V$LATCH
    V$LATCHHOLDER
    V$LATCHNAME
    Each row in the V$LATCH table contains statistics for a different type
    of latch. The columns of the table reflect activity for different types
    of latch requests. The distinction between these types of requests is
    whether the requesting process continues to request a latch if it
    is unavailable:
    willing-to-wait If the latch requested with a willing-to-wait
    request is not available, the requesting process
    waits a short time and requests the latch again.
    The process continues waiting and requesting until
    the latch is available.
    no wait If the latch requested with an immediate request is
    not available, the requesting process does not
    wait, but continues processing.
    V$LATCHNAME key information:
    GETS Number of successful willing-to-wait requests for
    a latch.
    MISSES Number of times an initial willing-to-wait request
    was unsuccessful.
    SLEEPS Number of times a process waited a requested a latch
    after an initial wiling-to-wait request.
    IMMEDIATE_GETS Number of successful immediate requests for each latch.
    IMMEDIATE_MISSES Number of unsuccessful immediate requests for each latch.
    Calculating latch hit ratio
    To get the Hit ratio for latches apply the following formula:
    "willing-to-wait" Hit Ratio=(GETS-MISSES)/GETS
    "no wait" Hit Ratio=(IMMEDIATE_GETS-IMMEDIATE_MISSES)/IMMEDIATE_GETS
    This number should be close to 1. If not, tune according to the latch name
    7. Useful SQL scripts to get latch information
    ** Display System-wide latch statistics.
    column name format A32 truncate heading "LATCH NAME"
    column pid heading "HOLDER PID"
    select c.name,a.addr,a.gets,a.misses,a.sleeps,
    a.immediate_gets,a.immediate_misses,b.pid
    from v$latch a, v$latchholder b, v$latchname c
    where a.addr = b.laddr(+)
    and a.latch# = c.latch#
    order by a.latch#;
    ** Given a latch address, find out the latch name.
    column name format a64 heading 'Name'
    select a.name from v$latchname a, v$latch b
    where b.addr = '&addr'
    and b.latch#=a.latch#;
    ** Display latch statistics by latch name.
    column name format a32 heading 'LATCH NAME'
    column pid heading 'HOLDER PID'
    select c.name,a.addr,a.gets,a.misses,a.sleeps,
    a.immediate_gets,a.immediate_misses,b.pid
    from v$latch a, v$latchholder b, v$latchname c
    where a.addr = b.laddr(+) and a.latch# = c.latch#
    and c.name like '&latch_name%' order by a.latch#;
    8. List of all the latches
    Oracle versions might differ in the latch# assigned to the existing latches.
    The following query will help you to identify all latches and the number assigned.
    column name format a40 heading 'LATCH NAME'
    select latch#, name from v$latchname;

  • 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  

  • How to lock tcode and what is like tcode

    how to lock tcode and what is like tcode

    Hi,
    The AREA MENU that you define in SE43 are like t-codes
    Example of area menu is WEDI - Edi related config..
    Thanks
    Naren

  • My iPhone was stolen and I have contacted the police who are using the meid number to locate.  How does this work and what are my chances of getting the phone back?

    My iPhone was stolen.  I used Find My iPhone app to lock it and display a message.  The phone has not connected to the internet to locate it.  I contacted the police and they have taken my meid number.  How does this work and what are my chances of getting the phone back?  Are there other ways the theif can use it.  I was told once they put in a new sim card and use it, whatever software the police have, it will show up.

    Honestly? In the US (I can't speak to other countries, though I doubt it works much differently in a lot of the world) The police took your report and filed it either in their computers or, on paper. They will now not think of this again. The only time it will cross anyones mind is if, in the course of entering information into evidence about items recovered or seized at a crime scene, the serial number of an iPhone that was found/seized happens to match yours, in which case you will be contacted.
    The police in the US can and will do nothing to 'blok' the phone and it's not worth their time to try and locate it unless you know for a fact that it was stolen by a big time drug lord, master criminal, or some other such prime target and they can get a court order to track the location of the phone in order to locate this individual for your own purposes.  If they do that, they'll probably keep him under surveilance for a year or so before they act.
    Basically, the police don't care about your phone. If they find it, they will give it back to you. They are not, however, going to go looking for it. They have better things to do.
    I'm sorry, but that's the way it is.

  • I have question about hooking up an external hdd to a time capsule and still have my printer hooked up as well. Anyone got any tips for me, how to do it and what brand of harddrive that will work best for me 1 or 2 TB

    i have question about hooking up an external hdd to a time capsule and still have my printer hooked up as well. Anyone got any tips for me, how to do it and what brand of harddrive that will work best for me 1 or 2 TB

    You just need a powered hub.. if you already use one then fine.
    Plug in just about any external hard disk will work fine. Format has to be readable by the TC.. ie fat32.. or much better HFS+.. plug it into a Mac to prepare the drive.
    Pick whatever size suits.. nowadays 2TB are most economical.
    WD, Seagate have goobled up all the minor players.. so pick one.
    Whatever suits your budget and asthetics.
    NOTE.. The USB on the TC is fine for printers.. IMHO it is the wrong way to go with USB disks.. use the internal disk of the TC.. USB is less than half the native speed plugged into a Mac.. TC to USB is slow.. far slower than internal drive.. or using external drive as external.

  • How do I find out how to use cloud and what does it exactly do?

    I Am new to Apple and just not sure how this iCloud works and what does it do.

    Read here:
    http://www.apple.com/icloud/
    Basically it is a storage area on apple's servers that lets you keep a backup of your device to restore from in case you need to.
    It also has additional features for your media content and other services.

  • Many songs in my library appear to be duplicates. How did thta happen and what do I do?

    Many songs in my library appear to be duplicates. How did that happen and what do I do?

    henryfromcolonial beach wrote:
    A recent download - which I automatically said OK to, has somehow made every image in my library into low res.  when I try to use one as a screen saver, it is low res - when I try to print one, it is low res.  was this some kind of setup to get me to buy a newer version of iphoto??????
    Of course not - in fact it is not something done by iPhoto - it is most likely a user error
    What exactly did you do? What did you download? there is nothing in iPhoto that ever changes the resolution of any photo - in fact you can not do it if you want in iPhoto - you have to export photos to a location outside of iPhoto to change the resolution
    have you loaded your backup from before you did what ever you did? That is probably the fastest and easiest way to resolve the problem
    LN

  • I have imported a csv from my mortgage repayments, my father and I pay seperate amounts. I am trying to show how much I have paid vs what he has paid, how much is owed and what % we own.. We are 50/50 on the property

    I have imported a csv from my mortgage repayments, my father and I pay seperate amounts. I am trying to show how much I have paid vs what he has paid, how much is owed and what % we own.. We are 50/50 on the property.. Help?

    Hi Spears,
    I not sure what your actual question is.
    Does the CSV file include only your payments? Your payments and your dad's payments as separate items?
    Do you want to com[are ongoing payments, or do you want to compare the current totals paid by each? Is the 'we' in "what we own" collective, or individual? DItto for "how much is owed."
    Too many loose ends to tie down a clear answer.
    Regards,
    Barry

Maybe you are looking for

  • Wrong persistent unit

    Dear sdn members, I am using NetBeans 5.5 , database PostgreSQL 8.1, Sun Application Server 9, and hibernate.I copied following jars from Hibernate to lib directory of my application server # From hibernate entitymanager 3.2.0 cr2 * hibernate-entitym

  • Add an HDMI driver to a Pavilion dv9000 using Windows XP

    How can I add an HDMI driver to a Pavilion dv9000 using Windows XP? I've used an HDMI cable from laptop to Sony tv and getting great video but no audio.

  • Lov & record group problem

    Hi I have to achieve this task. I have "company_list" record group and "company_list" lov I am form layout style. I am in Enter-query. Then give some value to any field. Then Click execute-query. Its retreiving some records. Now if I click the LOV ca

  • Outbound TO to 916 and shortage (RF related)

    Hello, We are confirming the TO (source storage type to 916) using RF and laterly while PGI, guys found that there is a shortage but TO has already confirmed and we can not change the outbound delivery's picked qty. Please suggest, how to carry forwa

  • OOo and openjdk don't play after recent update on 86_64

    Just did an update this morning and got a new openjdk package - I thought no ill of it 'cos OOo supposedly supports openjdk on x86_64. Well, it appears it doesn't as I keep on getting an error message when I open a particular document. I then have to