Qty  not updated in MMBE report

Dear Experts,
We have define one material (project material) type defined as Qty update and Value update, when i pass the MIGO value is updating but the qty is not updated in MMBE report, where as qty is showing in MB51.
why the qty is not updated in MMBE for this particular material type?
i am FI/CO consultant.

Hi,
This depends on the selection criteria on the initial screen of MMBE t-code, make sure your entries are right.
Secondly, ensure special stock indicator is checked. Check the movement type...you will need to scoll to the left on the overview screen, in case you have posted the material to the blocked stock.
Regards,
Maheshwari

Similar Messages

  • Data Migration Opening Balances are not updating in the Report F.08

    Hi,
    We have uploaded the GL balances in 2008 for the year 2007. But they are not updating in the F.08 report when i executed for 2008.
    Why they are not updating in the report. In which table can i check the Data migration values in the system?
    Thansk
    Kishore

    Hi We have uploaded all the values in 2008 with 2008 date. fiscal year is K4.
    F.08 Report for the year 2008 is showing only 2008 accumulated values. But not showing the Opening balances which we have uploaded in 2008 for the before years like 2007.
    Why it is showing like that?
    Thansk
    kishore

  • Quantity column is not updating in YR02 report

    Dear Experts,
    While doing download the asset data into excel through t.code YR02 the field quantity is not updating. If i checked in asset master data, there i am getting asset quantity 1 for each asset but in YR02 report i am not getting.
    Please help me to resolve this issue.
    Thanks,
    Anjiee
    Edited by: anjiee on Mar 21, 2011 12:47 PM

    Transaction YR02 is in customer namerange and hence it is not a standard functionality of the system .
    Hence whenever you are quoting any queries then you will have to also provide the Y programme that you have created for the purpose .
    I mean to say the coding of the programme to comment further .
    Cheers ,
    Dewang

  • Treasury deals without bank details not updated in CM report

    Hi all,
    when creating a deal in Transaction Manager via trans. code FTR_CREATE without Bank details the respective cash flows data are not transferred to Cash Management report FF70 due to some reason. please note, that planning level Bank unknown (Derived from Table T036V ) is specified per every financial instrument in question in Customizing ( TRM -> Transaction manager -> General settings -> Link to Cash Management -> Assign Planning Levels ).
    In this case I would expect an entry to appear in the Cash Management report FF70, in a respective Grouping and on earlier mentioned Planning Level Bank unknown  on the respective payment dates. However I cannot find those entries there.
    On the other hand update of CM report FF70 works fine when bank details are specified in the tab Payment details on a deal level.
    appreciate your suggestions/ solutions for this issue.
    BR,
    Renatas

    Hi Renatas,
    Yes, I believe so. As per my understanding, all transactions can be shown either under a bank or a customer in a CM report. (Keeping aside Vendors as we are not considering them at the moment).
    In your case, since you don't specify the bank details, the transaction is bound to appear under Customer.
    Until the transaction is posted, it will appear in the Customer row with planning level which you have maintained for Bank Unknown case. And after posting, it will move to planning group (thus level) which you have maintained in the customer master.
    The above explaination is solely based on my experience of testing various scenarios. You may try it in your development box before confirming.
    Hope it resolves your issue.
    Thanks and regards,
    Abhinav

  • Withdrawl qty not updating after GI

    Dear SAP Gurus,
    I have a problem, In project builder after GR of stockable item the material qty is updated in purchase data tab.
    But when GI is done withdrawal qty is not updated. Even Commitment qty is not updated whereas actual cost is updated.
    Kindly guide me what to do.
    Thanks and Regards
    Suhel

    Hi,
    Committed quantity doesnot come into picture after withdrawl. When you assign a material to project, reservation gets generated. After this when availabilty check is performed, system checks whether this material is available in stock. If it is available then sytem updates commitment quantity, which confirms that we have stock against reservation and go ahead with goods issue.
    Whereas withdrawl quantity is updated when goods issue is performed ie goods are withdrawn from storage location.
    Reward points if helpful.
    Regards

  • BAPI_GOODSMVT_CREATE (Type: 261) withdrawal qty not updated

    Dear All, <br />
    <br />
    I am calling <b>BAPI_GOODSMVT_CREATE</b> (Goods Issue: 261) to issue goods to production order. No error returned from the function and unrestricted use stocks are reduced as expected. The only problem I have is that the withdrawal quantity for that material is not updated. (increased) <br />
    <br />
    I also tried doing the same thing in <b>MIGO</b> : <b>Good Issue</b> / <b>Production Order</b> and found no such problem. Anyone know have any idea about this? tks in advance :D<br />
    <br />
    <pre class="jive-pre"><code class="jive-code jive-java">            l_input_item-spec_stock = <font color="navy">'E'</font>.
                l_input_item-val_sales_ord = g_kdauf.    &quot;Sales order no.
                l_input_item-val_s_ord_item = g_kdpos.    &quot;Sale Order Item
              l_input_sku-matdoc_itm      = l_line.
              l_input_sku-grid_value      = w_report-j_3asize.  &quot;Grid Value
              l_input_sku-stock_cat       = w_report-j_4kscat.   &quot;Stock Category
              APPEND l_input_sku.
              l_input_item-orderid        = g_aufnr. &quot;ORDER NUMBER
              l_input_item-move_type      = <font color="navy">'261'</font>. &quot;Movement Type
              l_input_item-material       = w_report-matnr. &quot;Material No.
              l_input_item-batch          = w_report-charg. &quot;Batch
              l_input_item-entry_qnt      = w_report-iss_menge. &quot;New Qty
              l_input_item-entry_uom      = w_report-meins.
              l_input_item-plant          = w_report-werks.    &quot;Plant
              l_input_item-stge_loc       = w_report-lgort.  &quot;Location
              l_input_item-quantity       = w_report-iss_menge.
              l_input_item-base_uom       = w_report-meins.
              APPEND l_input_item.
            CALL FUNCTION <font color="navy">'BAPI_GOODSMVT_CREATE'</font>
                   EXPORTING
                     goodsmvt_header               =   l_input_header
                     goodsmvt_code                 =   l_input_code             
          IMPORTING
                     goodsmvt_headret              =   l_output_header
                   TABLES
                     goodsmvt_item                 =   l_input_item
                     goodsmvt_serialnumber         =   l_input_serial
                     <font color="navy"><b>return</b></font>                        =   l_output_return
                     afs_goodsmvt_sku              =   l_input_sku
                 CALL FUNCTION <font color="navy">'BAPI_TRANSACTION_COMMIT'</font> (called if no error return)
    </code></pre><br />
    <p />
    <br />
    I wonder it's becuase I didn't pass <b>RSNUM</b> and <b>RSPOS</b> (Reservation no. and item no.). Since when I check the Material Doc genereated by BAPI and MIGO, there's no Reserve no. in the one from BAPI. However, I get <b>"Internal Error"</b> message when I add these 2 numbers.
    <br />
    <pre class="jive-pre"><code class="jive-code jive-java">     
              SELECT resb~rsnum
                     resb~rspos
                     resb~rsart
                INTO (g_rsnum, g_rspos, g_rsart)
                FROM resb JOIN afko ON resbrsnum = afkorsnum
                WHERE afko~aufnr = g_aufnr
                  AND resb~matnr = w_report-matnr.
              ENDSELECT.
              l_input_item-reserv_no      = g_rsnum.  "'0000000104'.  "Reserve No.
              l_input_item-res_item       = g_rspos.  "'0004'.  "Reserve Item No.                      
    </code></pre><br />

    Hi Sam,
    Thanks for your reply. Sorry for terrible format maybe it's because i was not posting with IE.
    In fact I called BAPI_TRANSACTION_COMMIT at the end. Unrestricted use stock reduced but withdrawal quantity was still not changed. That's the problem I have. Also I tried your method, still the same result.
    I wonder it's becuase I didn't pass RSNUM and RSPOS (Reservation no. and item no.). Since when I check the Material Doc genereated by BAPI and MIGO, there's no Reserve no. in the one from BAPI. However, I get "Internal Error" message when I add these 2 numbers.

  • Items qty not updated  in VL02

    Hi,
            I've searched in forum.I've got solution.I've 26 line items and want to update all the records.It updates only 24 items remaining 2 items are not updated.Because the screen size is for 12 items.Please assist me.
    n = 1.
    LOOP AT it1 WHERE vbeln = it-vbeln.
    CONCATENATE 'LIPSD-G_LFIMG(' n ')' INTO a.
    PERFORM bdc_field USING a it1-G_LFIMG.
    n = n + 1.
    IF n gt 12 .
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=P+'.
    n = 1.
    PERFORM bdc_dynpro USING 'SAPMV50A' '0220'.
    ENDIF.
    ENDLOOP.
    PERFORM bdc_dynpro USING 'SAPMV50A' '0220'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=SICH'.
    Thanks
    Bala

    Hi BP,
              If i give P++,it directly goes to the last page.It was not update the middle records like13,14th items.
    Thanks
    Bala.

  • Product Hierarchy Not Updating in KE30 Report

    Hi,
    We are Maintaining Product Hierarchy in the Material Masters and we are using a KE30 Report from CO-PA here we are able to see all the feilds getting updated in the report except for product hierarchy. that too only when the material are belonging to WBS Stock.
    Can any one help me in exploring the reason for the same
    Best Regards,

    Hi
    In the absence of info, its very difficult to comment
    1. Is the new sales material code assigned to Prod Hie?
    2. During billling is the COPA doc generated? Or the revenue is posted to WBS Element?
    If it is posted to COPA directly, then check point 1 above should be the reason
    If it is posted to WBS, then check the settlement rule of the WBS... PSG will be the settlement receiver.... Have you mentioned Prod No in the settlement rule?
    Br,Ajay M

  • Planned quantity not updated in the report.....

    Hi,
    We have created a production order and entered the qty as 10. After that partial confirmation is done and WIP calculated. Now during month end when we ran the report KKAQ, it is reflecting both Planned qty and GR qty as ZERO.
    Can anybody let me know how system updated the Plan qty and GR qty in KKAQ reprot. is there any OSS note which provide the more details on KKAQ report or is it link with confirmation/system status.....
    Does the plan Qty in KKAQ will update immediately after the Prodcution order creation......
    Please suggest......
    Regards,
    Sree......

    Hi
    In MC7F choose the info S025 and click on details
    There in System parameters remove the tick for "key figure restricted DB update:off" if selected.
    Probably this may be the reason for your Problem
    Regards
    Brahmaji

  • Sales order qty not updated in copa

    Hi Gurus,
    My client has activated Costing based COPA.
    We have activated Incoming sales orders with option
    Transfer with date of deliery/scheduled billing date.
    When We are posting sales order we are able to see a copa document with record type A.
    In that document we want to see the Sales order quantity or delivery quantity, delivery date fileds.Please let me know what all the value fields We need to assign.
    Do I need to write any derivation rule for incoming sales arders also.
    we are able to capture the  total price, material etc from the sales order in COPA document.We need only sales order qty or Delivery qty or delivery date to be updated in COPA document.
    Please suggest me
    Regards
    Chaitanya

    Hi Chait,
    Pl check whether your client has assigned SD Qty Fields to COPA Quantity fields in KE4M. Sd quantity fields are FKIMG- Billed Quantity, KWMENG-Order Quantity and the same shall be assigned to ABSMG-Sales Quantity. If not, please maintain the same. Otherwise, we need to look for some other work around solution.
    Trust this resolve your problem!
    Cheers!

  • Not updating Prompts when report is moved from Dev to Prod

    Hi,
    I have a report In development which uses a Prompt ( Dynamic Lov) pointed to an existing prompt group.
    When this report is moved to production the prompt does not give any values as the it is not pointed to any prompt group.
    Could any one help me why the prompt is not being updated when it is moved from DEV to PROD.
    Thank you..!!

    Need more info...
    What version and are you using BOE or CRS?
    Thank you
    Don

  • Delivered qty and put in stock qty not updated after GR reversal

    Hi,
    We encountered a strange issue while making a 102 movement for a production order.
    Planned order qty  - X
    Production order qty  - X+Y
    Confirmed Qty  - X
    GR posted for Splits of Qty X
    GR Posted for Qty Y
    At this time Quantities in Production shows like
    Planned Order   X
    Order               X+Y
    Delivered          X+Y
    Commited        X
    As wrong posting has been done for Qty Y, GR reversal has been carried for Y. After Reversal
    Deliveried Qty and Put in Stock qty still shows X+Y.
    This is an issue as settlement can not done as it has difference in quantities. This issue was nver observed earlier.
    Looked for any available SAP note for this issue and couldn't get one. Any help to fix this issue or reference to any SAP note is appreciated.
    Regards,
    ppcon

    Hi,
    Look into the Transaction : COGI.
    If the entry is there act upon the entry.
    If this is the case, suggested is to schedule the Program : "CORUPROC" in thr regular intervals.
    Hope this helps..
    Revert for further discussion..
    Regards,
    Siva

  • Sale quantity is not updated in COPA report

    Dear All
    I am using Account based COPA. In the report COGS and the revenue is captured correctly, but the quantity is not coming. While seeing the line items I found that at the time of PGI one line item with +ve quantity is generated and at invoicing one line item with -ve quantity is generated and as a result quantity becomes ZERO.  A screenshot is pasted below for the convenience.
    Can you please help me in finding the error in my configuration or in report.
    Regards
    Rajneesh Saxena

    Hi Rajneesh sir,
    I believed till now that, at the time of PGI only COGS value is transfer to COPA and not even sales quantity in accounting based method, but after observing your thread I need to frame my understanding differently now.
    OK, since the Sales quantity is transfered to COPA at the time of PGI, why we need to transfer again at the time of billing?
    So, my suggestion is why don't you de-assign the quantity field under the billing settings and try? Transaction code KE4M
    Regards...
    Jose

  • Serial number not updated in 1Q09 report

    Hi All,
    We have done a mvt type 282 for a material with 96 serial numbers. Out of this 96, only 77 have gotten updated to the required plant. The other 12 have not been assigned a plant eventhough the material document states the plant clearly.
    Please advice how to sory this issue.
    Regards,
    Savindi

    Hi,
    Please cross check the Serial number details sent to network while doing 281 movement. and go to ITOB stucture or in SERI table and see whether same serial numbers present for the material you have entered ?
    go to IQ03  and check the plant and status of serial number lying at.
    Regards,
    Ninad Kshirsagar

  • Profit Center Plans not updated in the reports

    Dear All
    We have an issue with the COPA Plan allocations.  We have several versions that we use for planning.
    We have run  the plan allocatins in 0 version and the figures have flowed from Cost cneter to profiot center to copa.
    for other versions, the plans have gone into COPA, however does not appear in the profit center reports, the cost center balance also has become zero.
    Do you have any idea what the root cause could be?
    (Profit center line itesm are activated for these versions.,)
    Thanks
    Gayani
    Edited by: gayani16k on Jun 13, 2011 6:38 PM

    Hi
    You can try IMG > Financial Accounting (New) > General Ledger Accounting (New) > Planning > Transfer Planning Data from CO-OM
    May be the integrated plan setings was not activated for these versions
    br, Ajay M

Maybe you are looking for