Reserve with tx-mb21 and check stock with tx-md04

Hello people,
Can someone please answer the question below :
After reservation to a sales order, how do you process the
delivery ? I tried the following:
1. Create a sales order.
2. Create a reservation (MB21) with mvt type 231, against sales order created in #1 above
3. Create the delivery. In MD04, I see the reservation as well as the reservation.
4. PGI the delivery. MD04 no longer shows the delivery, but the reservation is still appearing.
5. Question: shouldnt the reservation automatically disappear after either #3 or #4 above? What the point of creating a reservation agains a sales order if it doesnt disappaear once the sales order has been delivered , and goods issued?. Are there any steps I am missing?
Thanks
XeviG.

Dear Rajesha,
This reservation is required because I need reserve a quantity of material by a specific order.
Thanks in advance,
XeviG.

Similar Messages

  • Deleted reservations with Balance Stock

    Dear All,
    Management requires below exception report as per the policy implemented in company
    Note-"In every case, stock items will be brought to project sites only when there is some requirement and MRP is generated. When there is changes in some project plan, and if the material which has already brought on site and now not required; in such cases, the Open reservations has to be deleted from Project Activity. In such cases, system will show the stock without Open reservations and such stock items are clear case."
    To acheive this is there any standard report available to see deleted reservations with the material code and curent Stock availabilty for the material.
    Please help.
    Thanks & Regards,
    Sandesh Sawant

    Sandesh Sawant wrote:
    Dear All,
    > Note-"In every case, stock items will be brought to project sites only when there is some requirement and MRP is generated.
    I do not think any standard report is available as per your requirements.
    you can refer the below reports to check valuated project stock..
    1) S_P00_07000140
    2) MBBS
    May be you can use transfer posting of stock from unrestricted to project and vise versa while doing transfering of material from your stock to project site just to track the material movements history.

  • Opening and closing stock with sales order and with out sales order

    hello,
    any body please help me my client want to check opening stock and and closing stock in areport.
    material contains batch and some material with sales order and some are with out sales order. my client is asking this in a single layout. please tell me isthere any teport or bapi or function module to get this report.
    this is very uregent. and layout is requesting like opening stock, production stock, sales stock and closing stock.
    please guide me to get this report.
    Thanks & Regads
    Bhakta

    Transaction MB5B
    For sales order related use specila stock as E and use radio button indicator in stock type
    For stock w/o sales order, use special stock indiactor as "space' and stock type valuated stock.
    to get a perticular month,opening stock/closing stock enter the start date/end date as month start and end date.
    See the o/p which will give the stock as required by you

  • Need to create stock item reservation with account assignment

    Hi Gurus,
    we are working on EBP 4.0 , extended classic scenario . We have a scenario where we want to create a shopping cart for stock item reservation with account assignment as work order.
    but when we try to do it , we are getting following error message
    "Unable to create stock reservation for this account assignment."
    Any ideas how this can be resolved?
    Regards,
    Mangesh

    Hi Mangesh,
    In reference to the info. you have provided, the issue seems to be with the account assignment category than anything else.What do you mean by Account assignment as work order? Need some clarity in this statement, to help you in this regard.
    You can create a cost center (account assignment) P.O and can mention the storage location. The stock will be updated in the storage location where as the FI document will be posted against the cost center.
    Rgds,
    Teja

  • The site in the Spanish App Store I reserved the iPhone 5 and would like to get it to turn. But I was told that if I'm lucky - I will come with an email confirmation. Excuse me, I'd like to reserve an honest in turn, not to play the lottery for luck.

    The site in the Spanish App Store I reserved the iPhone 5 and would like to get it to turn. But I was told that if I'm lucky - I will come with an email confirmation. Excuse me, I'd like to reserve an honest in turn, not to play the lottery for luck. I am disappointed by the work Apple

    It sounds as if AT&T has already told you they can't do what you want. It doensn't sould like anything that's fixable on your end.

  • Material wise reciept and Issue report with Opening and Closing Stock

    Hi
    I need a report,Material wise Receipt and issue with Opening and Closing stock.Is there any standard report available in SAP ?
    Or we have to go for Customised Report.
    Please reply

    Hi,
    MB5B gives total receipts - if i click on the receipts i can view the multiple material documents - BUT is there any way to drill down the reciepts or view the breakup of the receipts on the same screen OR is there any other report for this.
    Regards,
    Laxmi

  • Inventory opening and closing stock with value report

    Hi All,
    Is it possible to get details of both opening and closing stock with value of each items of last financial year (2009-10) in inventory report?
    Mizan

    Hi..
    you can  try this query
    Declare @FromDate Datetime
    Declare @ToDate Datetime
    set @FromDate =
        (Select min(S0.Docdate) from OINM S0 where S0.Docdate >='[%0]')
    set @ToDate =
        (Select max(S1.Docdate) from OINM S1 where S1.Docdate <='[%1]')
    select * from
        SELECT T0.itemcode,
        min(T0.Dscription) as 'Item Description',
        min(B1.ItmsGrpNam) as 'Item Group', W1.Whscode, C1.Location,
        (isnull((
            Select sum(isnull(inqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode
            and O1.Warehouse=W1.Whscode
            and O1.docdate<@FromDate ),0)-
        isnull((
            Select sum(isnull(outqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode
            and O1.Warehouse=W1.Whscode
            and O1.docdate<@FromDate),0)
        ) as [Opening Stock],
        isnull((
            Select sum(isnull(inqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode
            and O1.Warehouse=W1.Whscode
            and O1.docdate>=@FromDate
            and O1.docdate<=@ToDate and O1.inqty>0
            and O1.transtype in (20,18)),0
        ) as [Purchase Quantity],
        isnull((
            Select sum(isnull(outqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode
            and O1.docdate>=@FromDate and O1.docdate<=@ToDate
            and O1.outqty>0 and O1.transtype in (21,19)),0
        ) as [Purchase Return Quantity],
       isnull((
            Select sum(isnull(outqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode
            and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.outqty>0
            and O1.transtype in (13,15)),0
        ) as [sale Quatity],
        (isnull
            Select sum(isnull(inqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode
            and O1.docdate<=@ToDate),0
            isnull((
                Select sum(isnull(outqty,0))
                from OINM O1
                where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode
                and O1.docdate<=@ToDate),0)
        ) as [Closing Stock]
        FROM OINM T0
        INNER JOIN OITM T1 ON T0.ItemCode = T1.ItemCode
        INNER JOIN OITW T2 ON T1.ItemCode = T2.ItemCode
        INNER JOIN OITB B1 ON T1.ItmsGrpCod=B1.ItmsGrpCod
        INNER JOIN OWHS W1 ON T2.WhsCode = W1.WhsCode
        INNER JOIN OLCT C1 ON W1.Location=C1.Code
        Group by T1.itemcode, T0.Itemcode, W1.WhsCode, C1.Location
    ) a
    where (a.[Opening Stock]
            +a.[Purchase Quantity]
            + a.[Purchase Return Quantity]
            +a.[sale Quatity]+a.[Closing Stock]
           ) !=0
    Regards,
    Bhavank

  • Split valuation with batch management and project stock

    Dear Gurus,
    I need to combine two following requirements:
    1. split valuation with batch management (valuation type = batch number)
    2. project stock
    These two functionalities work fine separately but not together.
    I receipt PO for material with spiit valuation on a batch level into a project stock. Posting is OK and material document (MSEG table) seems to be OK (batch number, valuation type and project stock are in this table). The problem appears when I want to display material in this valuation type (MM03) or batch (MSC3n). They don't exist!!!  Short investigation showed that during goods receipt table MBEW (valuated stock) was not updated with this valuation type.
    But If PO is receipt into normal stock first and then posted into project stock everything is OK.
    Have you had or heart about such issue? I would appreciate any sugestion. 
    Thsnks in advance.
    Marcin Bernat

    Hi,
    As you already know ,u are using project stock and doing goods receipt against project, stock table QBEW will be updated and not MBEW. MBEW only updates in case of plant stock valuation. If u receive any goods against project stock it does not contribute to plant stock. Irrespective whether your material is managed in split valuation or not, If it is received against project stock it only updates QBEW. There is no need to update MBEW, if u r using split valuation in project. QBEW also have valuation type as another level like MBEW. If u want to see material price for project stock, it can be  seen in QBEW -valuation type and not in mm03.
    As u r receiving goods against project stock this is d only reason QBEW is updated and not MBEW.
    QBEW will store all information like MBEW for batch number, valuation type and project stock assignment.
    Hope it answers your question.
    Deepak.

  • My iMessage for my Macbook Air is not working. It says no delivered with a red ! next to it. I have tried serval different options on trying to get it to work to include logging out of iCloud and checking my date and time. I have done about everythin

    My iMessage for my Macbook Air is not working. I have updated everything. My system is running on OS X Yosemite Version 10.10. When I go to send a message, it says no delivered with a next to it. I have tried serval different options on trying to get it to work to include logging out of iCloud and checking my date and time and updating FlashPlayer. I have done about everything I can think of. Any help would be greatly appreciate!

    Why start a new and very similar thread to your other one which you have not responded to (have you read the replies?)
    I suggest that no response is made to this duplicate thread. 

  • HT1338 when I try to print, I get this error message "Communications Failure: The computer is no longer able to communicate with your printer. " followed by intruictions to turn off the printer and check connections etc. I am using an HP Officejet 6500 70

    when I try to print, I get this error message "Communications Failure: The computer is no longer able to communicate with your printer. " followed by intruictions to turn off the printer and check connections etc. I am using an HP Officejet 6500 709e, connecter wirelessly

    I'm using a mac (OS X - snow leopord) and am printing over the network (wirelessly).
    HP Photosmart Premium Fax All in One - C410a
    I was only able to print one page and then both my printer and my computer would display an error message about the printer's inability to print.  Since then I've been able to resolve my specific problem.
    I
    1. uninstalled HP from my computer (checked to ensure that my printer was no longer visible in my printers and the HP Utility software was nowhere to be found), 
    2. grabbed the software/driver update from Aug, 2010,
    3. installed the Aug, 2010 update, and my problems seem to have been fixed.
    This is where I got my 2010 update from (obviously you should get the driver/software applicable to your OS and specific printer):
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=mp-85379-1&cc=us&dlc=en&lc=en&...

  • HT1338 I am having trouble installing updates on my mac this is the error code the pops upThe update could not be verified. It may have been corrupted or tampered with during downloading. The update will be downloaded and checked again the next time that

    can some one help me? I have been trying to update my MAC and it will not download because this message come up
    (The update could not be verified. It may have been corrupted or tampered with during downloading. The update will be downloaded and checked again the next time that Software Update runs.)

    For anyone that comes across this. I managed to fix the problem. It had something to do with the date on my computer. Mavericks installer apparently does a date check of some sort and that is where the error is coming from. Open terminal and check the system date. It may be wrong. Another poster in the forums told me how to to check the date and change it. Click here for the link to the explanation. Be careful because the date is in a weird format.

  • Can't download the latest iTunes. A window pops up... The update could not be verified. It may have been corrupted or tampered with during downloading. The update will be downloaded and checked again the next time that Software Update runs. No iTunes now.

    Can't download the latest iTunes. A window pops up... The update could not be verified. It may have been corrupted or tampered with during downloading. The update will be downloaded and checked again the next time that Software Update runs.
    Now, iTunes won't launch and can't be updated. Please help.
    If I have lost my music collection I will be switching platforms ASAP. It is insane that Apple has updates seemingly every day for their products.

    I was in your same situation with 14 downloads and 14 attempts. 
    You have to make sure that your Mac is booting into 64 bit mode.  You can make sure of this by going into System Preferences and scrolling down to 'Software' and making sure that you are booding with 64 bit Kexts. 
    If not, restart while holding the 6 and 4 keys down until you see the spinning gear wheel and try installng again. 
    BUT, what I also did was to go into Applications, click on the Lion installer, Get Info, and give yourself custom priviliges to Read And Write. 
    I did this simultaneously, and I don't know what function did it, but it worked for me, with no further downloads of the installer. 
    Good luck! 

  • A year or so ago I had turned on a toolbar that sat at the top with the other toolbar, and had many tools for development and checking of websites. You could tu

    A year or so ago I had turned on a toolbar that sat at the top with the other toolbar, and had many tools for development and checking of websites. You could turn Java on/off, javascript on/off, turn on source view, and many other things. Now I cant find that toolbar. All that I can find now turns on a panel in the lower half of the window that probably does all the same stuff, but it takes up much more room. Where did that toolbar go? or was it an add-on or plug-in?

    It sounds like you may be referring to the Web Developer add-on.
    * https://addons.mozilla.org/firefox/addon/web-developer/

  • Content migrated with ICE, Name property and Check In

    I have pulled in a new portal server several KM folders, originally located in another portal, with <i>Content Exchange</i> (online ICE protocol).
    When I edit locally one of these migrated files, save, and check it in, I get a message complaining that the resource has no name.
    Three curious things:
    1) If I open the <i>Details</i> view for that file, I can see that the resource's name property is indeed correctly set.
    2) After choosing <i>Edit locally</i>, the message reports the correct name of the resource!
    <i>You are currently editing the document "REAL_NAME_OF_THE_FILE.doc"...</i>
    3) From this page, if I choose <i>Show Properties</i> (showing me again the correct resource's name) and subsequently <i>Hide Properties</i>, no problem arises when checking the file in.
    Please notice that:
    1) This problem involves <b>only the resources migrated with ICE</b>.
    2) If I change either the resource ID or its name from the Details view, no problem arises anymore.
    We're using the ActiveX control to edit locally. Our portal version is:
    J2EE Engine 6.40 PatchLevel 87289.311
    Portal 6.0.9.0.0
    KnowledgeManagementCollaboration 6.0.9.3.0 (NW04 SPS09 Patch3)
    Have you gurus any idea?
    Thanks all, Davide

    I can't find any SAP note about such a problem. Has anyone any info about it?
    Thanks, Davide

  • In iphoto, when I click on Print, the preview image it shows me is an enlarged section of my photo. I cropped the photo and checked with no restraints. Once the photo goes to Print, I can't fix it back to the way it is in iphoto.

    In iphoto, when I click on Print, the preview image it shows me is an enlarged section of my photo. (In iphoto I hadI cropped the photo and checked "with no restraints." )
    Once the photo goes to Print, I can't fix it back to the way it is in iphoto.

    It is working now. I no longer get the message about the item not being available in the US and I can access the store.

Maybe you are looking for

  • Import Comments data and Dimension Members from csv file via Data Manager

    Dear Experts, I have two questions regarding the data manager. Q1.Is it possible to import "Comments" from the csv file via Data Manager? We'd like to import the amount with "Comments". My image of csv file is like below; ACCOUNT,CATEGORY,TIME,ENTITY

  • Transfer Demand Plan to R/3

    Hi All, I need to transfer the Demand Plan to R/3. Please let me know the importance of Period Split profile in the transfer profile screen. we are using the posting periodicity in the planning book. What is the use of Distribution Function? Is it po

  • Message Status in Outlook

    I am curious if there is a fix for this issue? If you respond to a E-mail from Outlook it will apply a gray message bar indicating that you have responded and it will give you the date and time. It will also indicate if you have forwarded the message

  • Some BDC question

    sir, plz help me to find out answer of the following question . 1.You are running a report. It is taking long time for execution. What steps will you do to reduce the execution time. 2.After running a BDC program in background, next day morning when

  • Corsair Ram for iMac late 2013

    Hi, I got a new iMac 27" late 2013, and bought 32GB Ram somewhere else. It's 4x8GB Corsair Mac Memory DDR3 1600MHz PC3 12800 (CMSA16GX3M2A1600C11). I got several Kernel Panics, but only with the Corsair Ram. Everything seems to work fine if I use the