How to find out if the stock is available for the sales orders

hello gurus
We have 25 sales orders.. for which we did not have any stock.. so we produced internally and now the stock is available physically and stock is updated in SAP as well.
How can i know that for all the 25 orders ..if the stock is now available for all the orders.. we have a requirement that unless we have a stock available for each order we cant create deliveries.. againts the sales order.
I would like to know what is the best possible way to check the stock availability for all the 25 orders at one time.
Note : All 25 orders have different materials.. in them
regards
mohammed

Hi,
To check the stock availability tcode is MMBE, enter the material no, plant and storage location and then click the  EXECUTE button ,u will see the stock.
For different materials , u ve to repeat the above steps.
Reward points if it helps.
Regds,
Pallavi

Similar Messages

  • How to find out exact labour hour and expenses for each labour attached to

    Team,
    How to find out exact labour hour and expenses for each labour attached to machine
    We are planning to go with CATS.
    But in Cats how Production Planning department get the exact labour coust
    (which includes labour accomodation building , EB etc. paying by comp)
    How to do this in CATS
    REX

    hai
    generally  the schemas are named X000  which stands for common schema  nomination
    x replaced by respective country like for india it is IN00  for US  U000etc
    it is not given according to the group of emplyees but according to the country grouping for your org units
    time schemas are country independent they work for all the countries
    regards
    nalla

  • HT1444 What is the "software upgrade" available for the OS X 10.5.8?

    What is the "software upgrade" available for the OS X 10.5.8?

    Here is a link to buy Snow Leopard, but you need to wait to use it because the Apple Store is being updated, probably because of the meeting Apple has called for today.
    Snow Leopard Purchase

  • How do I find out what I have recently purchased for the app store and iTunes I.e films, songs, albums

    How do I find out what I have recently purchased from the app store and iTunes I.e films, songs, albums &amp; apps?>.<

    On your iPad, you can open iTunes and click on Purchases.  Plus, when you purchase something from iTunes, you should get an email with the purchase details to the email you set up as your Apple ID.  They sometimes take a day or two and with the volume of things being purchased with the millions of new iPads out there in the last 3 days, that may be a bit longer.  I keep every receipt I get for future reference.

  • How to find out which table store historical data for V_T001B?

    dear all,
    how i want to trace and find out which table that store all maintenance data history from V_T001B?
    thanks.

    i already find out into both table... but the data not store there...

  • How to Find Out whether Standard IDOC is Availabl for  Transaction ?

    Hi,
        We are having SAP implementation 4.7E IS-OIL. We would like to know how to find out whether is there any Standard IDOC is Available for the SAP Transaction.
    Particularly for IS-Oil related transaction. e.g Load Confiramtion. T-code - O4G1.
        From a Given Transaction code is there any link which can tell whether IDOC is Present or not.
         Kindly help me.
    Regards,
    Umesh

    check for transaction....we41 and we42..
    check for proper process code...then check in we57,we81 and we82..
    also u can search in google..
    UMESH note that u need some fucntional exp for working in IDOC...try to crack yr head ..give time..n u ll get to know the things soon..as there is no defined standards to work in idocs..
    for more info u can ask me for [email protected]
    best regards
    Message was edited by:
            Madan Gopal Sharma

  • How to find out PR, PO GR's pending for morethan 30days

    Hi Guru's,
                        How to find out the PR,PO,GR's , which are pending for more than 30days. Thanx in advance

    This can be achieved in the purchasing list displays.
    For PRs you can use ME5A.
    select the field change date  (this has the creation date) from dynamic selections, enter the date that is 30 days ago, press F2 and select the icon for smaller than. Further  enter Processing status N. Execute.
    for open GRs you can check in ME2M (by material) and ME2L (by vendor)
    Enter selection parameter WE101, enter delivery date (that is 30 days ago) press F2 and selec the icon for smaller than. Execute.

  • Avoid creating delvery for STPO if no stock is available for the Materil

    Hi,
    There is a requirement at our end to block the creation of Delivery for a STPO if there is no stock available for the Material. Please guide if there is any standard setting available for blocking the creation of Delivery document if there is no stock vailable.
    Regards,
    Piyush Sagolekar

    Hi Harry,
    Thanks a lot for the kind input and guidance. This resolves the problem.
    Regards,
    Piyush Sagolekar

  • How to check whether MRP run has been executed for a sales order or not

    Dear Experts,
    In Strategy:20, Make to Order scenario, I have run MRP for sales order in T Code:MD50,
    then how can I check whether MRP run has been executed for a sales order or not.  Is there any report where I can find some indication?
    Thanks and regards,
    Vikas

    Dear,
    In MTO scenario with Planning strategy group 20 in material master .
    After sales order is created, Run MRP , then planned order will be created then go to planned order details in MD04 or MD12 you will get sales order number in assigment tab.
    or check the Table PLAF field  PALTR ,and field name KDAUF its sales order, for all created planned order.
    Regards,
    R.Brahmankar

  • What's the name of FM for getting Sales Order Header / Item Status info

    Hello All:
    Do you know what's the name of Function Module for getting Sales Order Header / Item Status Overview ? Any sample code will be very much appreciated.
    Basically, I am trying to create a Webpage where user can enter the Sales Order document number and will return the Sales Order: Status Overview.
    Thanks,
    Dipankar Biswas

    Thanks everybody ! Appreciate for your prompt response. I was also looking for some sample code, and I did find some on. And here is one. I still have to try the code, but here is for all your reference:
    *& Report ZBAPI_SALESORDER_GETSTATUS *
    *& Read and Display the Sales Order Items and Status of the Order *
    REPORT zbapi_salesorder_getstatus NO STANDARD PAGE HEADING LINE-SIZE 200 LINE-COUNT 33(3).
    TABLES: vbap. "Sales Document Item Data.
    DATA: wa_bapireturn TYPE bapireturn,
    wa_bapisdstat TYPE bapisdstat,
    it_bapisdstat LIKE STANDARD TABLE OF wa_bapisdstat.
    TYPES: BEGIN OF ty_mat_name,
    matnr TYPE makt-matnr,
    maktx TYPE makt-maktx,
    END OF ty_mat_name.
    DATA: wa_mat_name TYPE ty_mat_name,
    it_mat_name LIKE TABLE OF wa_mat_name WITH KEY matnr .
    PARAMETERS: p_vbeln LIKE vbap-vbeln DEFAULT 5573.
    START-OF-SELECTION.
    SELECT matnr maktx FROM makt INTO TABLE it_mat_name.
    CALL FUNCTION 'BAPI_SALESORDER_GETSTATUS'
    EXPORTING
    salesdocument = p_vbeln
    IMPORTING
    return = wa_bapireturn
    TABLES
    statusinfo = it_bapisdstat.
    IF wa_bapireturn IS INITIAL. " Successful Execution.
    WRITE: / 'Document No: ' COLOR 1, 20 'PO Number : ', 40 'Status' , 50 'Delv.Stat',60 'Item No', 80 'Material', 90 'Material Description', 130 'Net Price' COLOR 2.
    ULINE.
    LOOP AT it_bapisdstat INTO wa_bapisdstat.
    WRITE: / wa_bapisdstat-doc_number. " Sales Document Number.
    READ TABLE it_mat_name INTO wa_mat_name WITH KEY matnr = wa_bapisdstat-material.
    WRITE: /20 wa_bapisdstat-purch_no, " Customer Purchase Order Number
    40 wa_bapisdstat-prc_stat_h, " Processing Status
    50 wa_bapisdstat-dlv_stat_h, " Delivery Status
    60 wa_bapisdstat-itm_number, " Item Number
    80 wa_bapisdstat-material, " Material
    90 wa_mat_name-maktx, " Material Description
    130(10) wa_bapisdstat-net_price. " Net Price
    CLEAR wa_bapisdstat.
    ENDLOOP.
    REFRESH it_bapisdstat[].
    ELSE.
    WRITE: wa_bapireturn-message.
    ENDIF.

  • How to execute ATP check and update schedule lines for existing sales order

    Hello all,
    After stock quantity has been updated, we’d like to perform ATP check and update schedule lines for sales documents which have not been delivered yet.
    Is BAPI_SALESDOCUMENT_CHANGE useful to do so?
    If so which fields should I set ‘X’?
    At the moment, I called BATCH INPUT and execute ATP check.
    But I'm wondering if this is not a smart way.
    Thank you
    Yuko

    Hi arnab
      one way of achieving your requirements is
    after creating the sales order you can execute the SALEs order MRP using MD50 transaction enter the order # and MRP control parameters 1,3,1,2. and execute.
    Ensure the following before MRP.
    1. All the master data are maintained for the schedule line creation for the components ( Source list, Scheduling agreements)
    2. Material master with valid MRP data.strategy group having MTO strategy.
    after sales order MRP you will get the schedule line created for the components
    also MRp will create the cpacity requirements as we run the MRP with Lead time scheduling.
    Hope this helps
    SK
    Reward your points

  • HT202577 Is the apple configurator available for Windows in order to push profiles to apple TVs?

    We currently have a windows environment at work and use 802.1x authentication and have some 1st generation apple TVs. We would like to get them on our wireless but are having issues. I would like to push profiles to these apple TVs to see if I can get them on but I am not going to buy a Mac to do it.
    Is the apple configurator available for Windows or even ubuntu?

    Hello,
    Thanks for using Apple Support Communities.
    Apple Configurator requires both Mac OS X, and the most up to date version of iTunes, and can only be installed from the Mac App Store.
    Mac App Store - Apple Configurator
    Cheers,
    Alex H.

  • HT4972 Is the ios6 update available for the 1st generation ipad?

    Is the ios6 update aailable for the 1st genetion ipad?

    APle abandoned you and all of its loyal iPad 1 users with this upgrade. It really stinks that they quit on us so soon.

  • How to find out where a table is used in the code ?

    I have a huge database, and I am adding a column to a table...
    is there a query to find out if this would impact the code ? I mean I want to find all the places in the code with
    insert into mytable, or update mytable.....
    how to include both insert into mytable, and update mytable in dba_source ?

    Use DBA_DEPENDENCIES:
    select owner,name,type from dba_dependencies where referenced_name = 'TABLE_NAME'
    and referenced_owner = 'TABLE_OWNER';For example:
    SQL> select owner,name,type from dba_dependencies where referenced_name = 'EMP'
      2  and referenced_owner = 'SCOTT';
    OWNER                          NAME                           TYPE
    PUBLIC                         TABLE1                         SYNONYM
    SCOTT                          SELECT_EMP                     PROCEDURE
    SCOTT                          EMP_DEPT_VW                    VIEW
    SCOTT                          PP                             SYNONYM
    SCOTT                          EMP_MV                         MATERIALIZED VIEW
    SCOTT                          EMP_VIEW                       VIEW
    6 rows selected.
    SQL> However, keep in mind DBA_DEPENDENCIES stores statis references only. If your code references table in question in dynamic SQL you will have to parse DBA_SOURCE and in some cases, even that will not give you all answers.
    SY.

  • How to find out if Applicatin Server is running on the server

    Hello,
    On a unix server, how would I find out if there are Application Servers running?
    What would I grep for? ps -ef|grep .... Thank you.

    Hi,
    On Unix platform, jus login as AS owner, set your Env. well.
    on the prompt cd $ORACLE_HOME\dcm\bin
    #dcmctl getstate -v -d
    form more info. on how to use dcmctl, just type in on the prompt
    #dcmctl -help
    Cheers,
    Hamdy

Maybe you are looking for

  • I want to use the method getRemotePort() in a jsp page.....................

    I have tried using it like this: <%@ page import="java.net.*"%> <%@ page import="java.util.*"%> <%@ page import = "javax.servlet.*"%> <% out.println("<br>Remote Port : " + request.getRemotePort()); %> I get the following error: org.apache.jasper.Jasp

  • Wily introscope issue after System refresh in solman 7.1 Sp11

    Hello experts, Unable to remove old Production wily in quality system. An new wily has installed in development box but when i run Solman_setup -> basis configuration ->cofig wily Unable to unassign or delete old wily introscope Thanks , Rahul Yedapa

  • Switching iPhone from AT&T to Verizon

    I just got a Verizon iPhone today and I'm trying to switch all of my content from my AT&T iPhone, but it only seems to let me restore from my iPhone 3G, which last synced in August 2010. So it will lose nearly a year of texts, contacts, photos, etc.

  • Print problem in Forms y Reports 10g via  OAS

    Hello: I am using 10g Reports and Forms10G and when command to print any report compelled me OAS calls passing through and I register with a user connection to lift the printing service. how to fix this problem?

  • Mx_internal_uid property being added to one of my data classes

    So I have a data object of a custom class, which just has a set of properties like the following: name: type: location: source: target: but somewhere and sometime randomly Flex/Flash adds to it a new property named mx_internal_uid: (some long number)