2lis_03_bf, Material movements not matching R/3

Hi,
For a particular movement type. I have it shown as Receipts in MMBE in R/3 and the same data is appearing under issues in BW.Please suggest me what has to be done to handle this problem.
Movement type is 202 and the records in R/3 show more records and also under receipts. In BW the no of records doesn't match anyway and also are shown in Issues.
Thanks in advance.
Regards,
Kiran

0TOTALSTOCK is a non cumulative key figure computed from received and issued stock, look at it's definition and you'll see how it's built.
You might also have to check/maintain the validity area (see <a href="http://help.sap.com/saphelp_erp2004/helpdata/en/02/9a6a1f244411d5b2e30050da4c74dc/content.htm">here</a>)
Message was edited by:
        Pabloj

Similar Messages

  • Non Cenvatable material - Value not matching in MIGO and MIRO

    Dear SAP experts!
    We have the following problem.
    We are using TAXINN.
    We create a Purchase Order for a raw material, which is non cenvatable for a particular vendor.
    When we carry out Goods Receipt, we change the Material type from Raw Material to Non Cenvatable in the Material Type in the Excise Item Tab and post the BED and AED values, the values are getting inventorized correctly.
    And MIRO posting is also happening correctly. Both, MIGO and MIRO values are tallying. i.e, The total value is sum of Basic PriceBEDAED+CST.
    But, if we change any of the BED or AED value at the time of posting GR in the excise Invoice tab, then we are facing problem.
    Value during MIGO posting is correct. That is the total value is sum of Basic PriceBEDAED+CST.
    But, During MIRO posting, the value of BED and AED is not getting picked.
    The value during MIRO shows only Basic Price+CST and not BED amount and AED amount.
    Can any one tell me, where it is going wrong.
    Your response is highly appreciated.
    Thanks and Regards,
    Muthuraman.K

    you have to used non deductable condition type in Taxinn to post tax to inventory
    that is
    JMIP IN: BED inventory % say 8%
    JAIP IN AED inventory % Say 4 %
    JMX2     IN: A/P BED inventor  100 %
    JAX2     IN: A/P AED inventor  100%
    and the above condition should be assigned to proper Classify Condition Types
    TAXINN     JMIP     BEDINVENTP BED Inventory Percentage
    TAXINN     JAIP     AEDINVENTP AED Inventory Percentage
    TAXINN     JMX2     BEDINVENTT BED Inventory Total
    TAXINN     JAX2     AEDINVENTT AED Inventory Total
    And also u will have to assign condition type JMX2 and JAX2 in Maintain Excise Defaults
    this will solve your issue

  • Amount not turning up for material movement type : 601 from 2lis_03_bf

    Hi all,
    i have loaded the inventory cube from 2lis_03_bx the quantity is turning up for movement type 601 but the amount is not getting reflected it is always blank.
       If   (  SOURCE_FIELDS-BWVORG EQ '000'         "Other Issues
       OR    SOURCE_FIELDS-BWVORG EQ '101'        "Returns / Vendor
       OR   SOURCE_FIELDS-BWVORG EQ '104'         "Material Transfer
       OR  SOURCE_FIELDS-BWVORG EQ '105'          "Stock Adjustment InvD
       OR   SOURCE_FIELDS-BWVORG EQ '106'         "Stock Ajdustment Other
       OR  SOURCE_FIELDS-BWVORG EQ '110' )
       "Issues from stock transfer
       AND SOURCE_FIELDS-BWAPPLNM EQ 'MM'
    only movements which are relevant for stock control
       AND SOURCE_FIELDS-BWBREL EQ '1'
       AND SOURCE_FIELDS-BWGEO  <> 0
    SEE OSS NOTE 630254
       AND (  SOURCE_FIELDS-BSTTYP IS INITIAL OR
                   (  SOURCE_FIELDS-BSTTYP CA 'EQ'  AND
                      SOURCE_FIELDS-KZBWS CA 'AM' ) ).
    *IF THE RETURNCODE IS NOTE EQUAL ZERO, THE RESULT WILL NOT BE UPDATED
         RESULT = SOURCE_FIELDS-BWGEO.
    and i can see for other movement type like 641 the amount is turning up.
    Can anyone advise me on this
    thanks

    does the material movement type : 601 will be updated from this data source : 2lis_03_bx nor it is from 2lis_03_um??
    Can anyone advise me on this!!
    thanks

  • Regarding : Material document data and PO data do not match (Plant)

    Hi Gurus,
    Please go through this BAPI program.
    While uploading it is giving an error ' Material document data and PO data do not match (Plant) '.
    Please help regarding this issue.For all Other moment types it is working fine except this 351 moment type.
    dATA: i_excel TYPE truxs_t_text_data. "work table for excel upload
    DATA: BEGIN OF it_itab OCCURS 100,
          docdate(10),
          postdate(10),
          mvt_type(3), "Movement Type
          plant(4), "Plant
          lgort(4),
          pur_doc(10), "Purchase Document No
          po_item(3), "Purchase Document Item No
          material(18), "Material Number
         delnote(16),
          erfmg(13),
          uom(3),
         lfmng(13), "Quantity
          batch(10) TYPE c,
          vfdat TYPE vfdat,
          END OF it_itab.
    DATA: it_goodsmvt_head TYPE TABLE OF bapi2017_gm_head_01      INITIAL SIZE 100,
          it_goodsmvt_code TYPE TABLE OF bapi2017_gm_code         INITIAL SIZE 100,
          it_goodsmvt_item TYPE TABLE OF bapi2017_gm_item_create  INITIAL SIZE 100.
    DATA: wa_goodsmvt_head LIKE LINE OF it_goodsmvt_head,
          wa_goodsmvt_code LIKE LINE OF it_goodsmvt_code,
          wa_goodsmvt_item LIKE LINE OF it_goodsmvt_item.
    DATA: w_mat_doc  TYPE bapi2017_gm_head_ret-mat_doc,
          w_year     TYPE bapi2017_gm_head_ret-doc_year.
    DATA: BEGIN OF it_errmsg_goodsmvt OCCURS 10.
            INCLUDE STRUCTURE bapiret2.
    DATA: END OF it_errmsg_goodsmvt.
    DATA : obj_type LIKE bapiache09-obj_type,
           obj_key  LIKE bapiache09-obj_key,
           obj_sys  LIKE bapiache09-obj_sys.
    DATA: v_date1 TYPE sy-datum.
    DATA: v_date2 TYPE sy-datum.
    DATA: w_lines TYPE i.
    DATA: errflag.
    SELECTION-SCREEN BEGIN OF BLOCK bk1 WITH FRAME TITLE text-100.
    PARAMETERS: p_file TYPE  rlgrap-filename.
    SELECTION-SCREEN END OF BLOCK bk1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          field_name = 'P_FILE'
        IMPORTING
          file_name  = p_file.
    Start-of-selection processing
    START-OF-SELECTION.
      CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
        EXPORTING
          i_line_header        = 'X'
          i_tab_raw_data       = i_excel
          i_filename           = p_file
        TABLES
          i_tab_converted_data = it_itab[]
        EXCEPTIONS
          conversion_failed    = 1
          OTHERS               = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      LOOP AT it_itab.
        REFRESH it_goodsmvt_head.
        REFRESH it_goodsmvt_item.
        CONCATENATE it_itab-docdate6(4) it_itab-docdate3(2) it_itab-docdate+0(2) INTO v_date1.
        CONCATENATE it_itab-postdate6(4) it_itab-postdate3(2) it_itab-postdate+0(2) INTO v_date2.
        wa_goodsmvt_head-pstng_date = v_date2.
        wa_goodsmvt_head-doc_date   = v_date1.
       wa_goodsmvt_head-ref_doc_no = it_itab-delnote.
    wa_goodsmvt_head-pr_uname   = sy-uname.
        APPEND wa_goodsmvt_head TO it_goodsmvt_head.
    Maintain it_goodsmvt_code
        wa_goodsmvt_code-gm_code    = '04'.
    Maintain it_goodsmvt_item
    *LOOP AT it_itab.
    IF wa_goodsmvt_item-po_number IS INITIAL.
        wa_goodsmvt_item-po_number    = it_itab-pur_doc.
        wa_goodsmvt_item-move_type    = it_itab-mvt_type.
        wa_goodsmvt_item-MOVE_PLANT      = it_itab-plant.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            input  = it_itab-material
          IMPORTING
            output = it_itab-material.
        wa_goodsmvt_item-material     = it_itab-material.
        wa_goodsmvt_item-stge_loc     = it_itab-lgort.
        wa_goodsmvt_item-po_item      = it_itab-po_item.
        wa_goodsmvt_item-entry_qnt    = it_itab-erfmg.
        wa_goodsmvt_item-ENTRY_UOM_ISO    = it_itab-uom.
       wa_goodsmvt_item-po_pr_qnt    = it_itab-lfmng.
        wa_goodsmvt_item-batch        = it_itab-batch.
        wa_goodsmvt_item-expirydate   = it_itab-vfdat.
       wa_goodsmvt_item-NO_MORE_GR   = 'X'.
        wa_goodsmvt_item-mvt_ind      = 'B'.
        APPEND wa_goodsmvt_item TO it_goodsmvt_item.
        CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
          EXPORTING
            goodsmvt_header  = wa_goodsmvt_head
            goodsmvt_code    = wa_goodsmvt_code
          IMPORTING
            materialdocument = w_mat_doc
          TABLES
            goodsmvt_item    = it_goodsmvt_item
            return           = it_errmsg_goodsmvt.
    Process of commit work
        IF it_goodsmvt_head[] IS NOT INITIAL.
          DESCRIBE TABLE it_goodsmvt_head LINES w_lines.
        ENDIF.
        IF it_goodsmvt_item[] IS NOT INITIAL.
          DESCRIBE TABLE it_goodsmvt_item LINES w_lines.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
            EXPORTING
              wait = 'X'.
        IMPORTING
        RETURN        =
          CLEAR errflag.
          READ TABLE it_errmsg_goodsmvt INDEX 1.
          IF it_errmsg_goodsmvt-type EQ 'E'.
            WRITE:/'Error in function', it_errmsg_goodsmvt-message.
            errflag = 'X'.
          ELSE.
            WRITE:/ it_errmsg_goodsmvt-message.
          ENDIF.
          IF errflag IS INITIAL.
            COMMIT WORK AND WAIT.
            IF sy-subrc NE 0.
              WRITE:/ 'Error in updating'.
              EXIT.
            ELSE.
              WRITE:/ 'Material Document created successfully and the Document Number for the Material',
                      wa_goodsmvt_item-material,'is:', w_mat_doc, w_year.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDLOOP.

    Hey,
    Just wanted to post that in my case this was the error of MVT_IND field in item table. When I made it from 'B' to blank then it worked.
    Mine is solved....
    Thanks

  • Status 51 material document data and po data do not match(vendor)

    i am using we19 to try an inbound idoc mbgmcr(receipt for po)
    i put in gm_code 01
    movement indicator B(goods receipt for po)
    vendor 3815
    PO 4500015241
    PO Order Item 00030
    Movement type 101
    qty in unit of entry  1
    iso code unit of measurement pc
    on the po screen i see the po item and qty to be delivered is 75
    when i run the inbound idoc i get
    status 51 material document data and po data do not match(vendor) but as i say on the po inquiry screen i see the po vendor item with 75 to be delivered
    what am i missing????????????????

    thank you
    i put in the leading zeros and got rid of that problem
    now i am getting status 51
    posting only possible in 2004/07 and 2004/06
    but in the posting date i use 07/02/2004  i have tried several dates in the period but get the same error
    any ideas?
    thanks you

  • Error: LK047 Material movement could not be posted in the system via IDOC

    I am trying to create an article document (goods movement doc) for an already created purchase order.
    but this is via an IDOC (WMMBXY). after filling the data in WE19, i shoot the idoc in to the system. in we02 i get the following error message: LK047 Material movement could not be posted in the system . Can someone please help.
    the following fields are filled:
    Segment: E1MBXYH
    Document date        20091124
    Posting date         20091124
    Reference            9999999999
    Doc.Header Text      POS/1110
    Transaction code     MB01
    USNAM                user12
    Segment: E1MBXYI
    Processing ind.      1
    Material             832924
    Plant                1110
    Movement Type        101
    Debit/Credit     +
    Currency             EUR
    Qty in un.entry      250
    Unit of Entry        PAK
    Qty OPUn             90
    OrdPriceUnit         KG
    Purchasing Doc.      9100000141
    Item                 1
    Profit Center        11090
    G/L Account          22706
    Movement Type        101
    SLED/BBD             20091231

    Hello Shankar,
    Glad to hear from you!
    In your question, please make sure you use leading zeros for the MATNR field.  In header segment field E1MBXYH-BKTXT, we use header text. Hope you are using inbound posting function L_IDOC_INPUT_WMMBXY.
    Please try with this and it works for us.
    Thanks a lot,
    Venu

  • When watching a movie in Itunes the sound does not match the lips

    when watching a movie in Itunes the sound does not match the lips, is this normal? & If I purchase a movie will it play like a normal dvd?

    Try the suggestions in this thread.

  • Status 51 -- Error: LK047 Material movement could not be posted in the sys

    I am trying to create an article document (goods movement doc) for an already created purchase order.
    but this is via an IDOC (WMMBXY). after filling the data in WE19, i shoot the idoc in to the system. in we02 i get the following error message (status 51): LK047 Material movement could not be posted in the system . Can someone please help.
    the following fields are filled:
    Segment: E1MBXYH
    Document date 20091124
    Posting date 20091124
    Reference 9999999999
    Doc.Header Text POS/1110
    Transaction code MB01
    USNAM user12
    Segment: E1MBXYI
    Processing ind. 1
    Material 832924
    Plant 1110
    Movement Type 101
    Debit/Credit +
    Currency EUR
    Qty in un.entry 250
    Unit of Entry PAK
    Qty OPUn 90
    OrdPriceUnit KG
    Purchasing Doc. 9100000141
    Item 1
    Profit Center 11090
    G/L Account 22706
    Movement Type 101
    SLED/BBD 20091231

    Hello Shankar,
    Glad to hear from you!
    In your question, please make sure you use leading zeros for the MATNR field.  In header segment field E1MBXYH-BKTXT, we use header text. Hope you are using inbound posting function L_IDOC_INPUT_WMMBXY.
    Please try with this and it works for us.
    Thanks a lot,
    Venu

  • Stock to be deleted which have no material movement hostory & not in Tables

    Hello, I have a strange issue as below.....
    we have plant ABC with 2 storage locations 100 & 200. Sloc 200 created in 2003 & only one transaction done with 101 mvt type for 100 quantity. but now we can find 300 quantities with batch xyz, 200 extra,No material movement is done for this extra 200 quantity, I have checked in stock (MMBE) - Environment-material movements...but system shows only stock of other storage locations & for this 200 Sloc no data exists.
    I have checked in Tables MSEG , MCHB also but could not find any documents or stock quantity.
    Please help how to delete this stock.
    Bheema

    Check in MB51 against that material any documents available.If you are not able to see then these documents might have archived.If you want to remove those extra stock you can use 551 movement to scrap.Check any purchase orders available for the material so that you can get some idea.If you are not able to use above option then contact SAP to remove the qty.

  • Image on monitor window does not match red playhead as it moves

    While editing a movie, imported slides do not match the monitor view. As the red playhead moves along to the right, when a slide changes the image on the monitor remains on the previous slide. After about 15 secs the next slide appears, but briefly then it's on to the next slide.
    This is annoying. I have tried everything I can think of to overcome this (eg rebooted, pulled the plists, varied length of slides, started new movie etc). Fortunately, it does not happen with imported movies from the video camera. I can overcome the problem by placing transitions between all the slides, eg use a one-frame cross-disolve, but I'd rather not have to trick it this way. Does anyone have any ideas on this please? Thanks,
    Keith

    I also had the same problem. I have discovered that it is due to the upgrade of Quicktime. To reinstall an older version of Quicktime is quite tricky but I have solved the problem. There is no need to uninstall Quicktime 7.6.6. as this will be done later during the installation of the earlier software. Try this: Download a copy of Pacifist. From www.mac.oldapps.com download a copy of Quicktime 7.6.4. Open Pacifist, drag the installer box icon of QT 7.6.4 onto the Pacifist window. Click open package. When asked click "Replace" check the "all" box. This will over-ride QT 7.6.6 replacing it with 7.6.4 and your problem should be solved. Good luck! Let me know how you get on, please.

  • Movie Cover-Art Does Not Match Movie When Sharing On iPad?

    The movies that are on my iTunes display properly.  The movie cover-art matches the actual movie.
    I turned on sharing in iTunes and when I select Video > Sharing on the iPad The Cover-Arts do not match
    the actual movie it represents?
    Seems to look right on my AppleTV and on my iPhone but not the iPad.  I also noticed that when I select the
    the sharing icon on the iPad it loads it way faster than before.  I am thinking that it's loading it from bad cache.
    Is there a way to have it actually reload the data or clear its cache?
    What I have tried;
    I have re-booted the iPad and that did not work.
    I have also turned sharing off and on on iTunes and that did not work

    Bump

  • Burned iMovie .mov to DVD and it caused movie to skip/have weird transitions between scenes and sound to not match with picture. What can I do to help fix this when reburning?

    Burned iMovie .mov to DVD and it caused movie to skip/have weird transitions between scenes and sound to not match with picture. What can I do to help fix this when reburning?
    Movie details
    QuickTime Movie
    Size: 17.95 GB
    Duration 17:39
    2 audio channels
    Codecs- Linear PCM, Apple ProRes 422, Timecode
    Thanks!!

    You can't use iMovie to create a video DVD - for that you need iDVD:
    Why is there no iDVD on my new Mac? How do I get it and how do I install it?
    https://discussions.apple.com/docs/DOC-3673
    To burn a DVD with iDVD from the latest version of iMovie, you have to export the movie using the Export button and select 480p as the size. Open iDVD and start a new project, then drag that exported movie file into the iDVD menu window, avoiding any drop zones you see.

  • Audio and Video do not Sync on movie or TV show playback. Voice and video do not match

    I am using the latest version of Itunes and the latest version of Quicktime and Windows 7 on a newer business level computer. On any movie or any TV show I rent or purchase, the video and audio do not match on playback. I have tried uninstalling and reinstalling Itunes, Quicktime and have even reinstalled Windows 7 recently for other reasons. Nothing works. I have to hit pause for a second or two, then it will play OK for a few mins., but the problem returns. Any advice would be most appreciated.
    Thanks.

    See if this article will help:
    iTunes for Windows plays video files without any audio
    http://support.apple.com/kb/TS1696

  • Any movie I play either in my library or thru my ipod has the audio choppy and not match the video windows 8

    I am so ****** off! I have been trying to resolve this for 2 months now with NO help from Apple. I can play a movie fine in quicktime but when I try to play it in itunes the audio is choppy and does not match the video. The setting seem to be the same. It all worked fine up until a quicktime update 2+ months ago.

    I hope that this helps your situation. https://discussions.apple.com/message/23344208#23344208 You can try adjusting your Itunes playback settings for the audio to match your computer's audio settings. I posted in that thread about my positive results. Good luck.

  • HT1390 I RENTED A MOVIE & HAD IT SENT TO MY COMPUTER THE MOVIE KEEPS BREAKING UP THE SOUND DOSE NOT MATCH THE PICTURE WHATS UP WITH THAT

    movie is breaking up & sound dose not match picture ;plus I need to move the movie to another computer windows xp to windows 7

    D3NC wrote:
    Apple promotes the rental service as being able to allow viewers to watch, start/stop, content on all account related iOS devices.
    It would be nice but I've never seen them explicitly advertise that.
    Can I play my rental on more than one device?
    If you download a rented movie on your computer: You can transfer it to a device such as your Apple TV (1st generation), iPhone, iPad, or iPod if it’s a standard-definition film (movies in HD can only be watched on your computer, iPad, iPhone 4 or later, iPod touch (4th generation or later), or Apple TV). Once you move the movie from your computer to a device, the movie will disappear from your computer's iTunes library. You can move the movie between devices as many times as you wish during the rental period, but the movie can only exist on one device at a time.
    If you download a rented movie on your iPhone 4 or later, iPad, iPod touch (4th generation or later), or Apple TV: It is not transferable to any other device or computer.
    from:
    http://support.apple.com/kb/HT1657

Maybe you are looking for

  • Repetitive entries in iCal

    I regularly have to enter information on events that occur the same day, every week, every month between the same hours. Is there a way I can enter an event once and repeat it for as many months as I choose in the calendar year?

  • How can I control the order of iDVD menu items using the Arrow keys?

    I have a submenu screen containing 10 selectable buttons plus the Return Arrow button.  I have ordered all the slideshows in the correct order in the DVD map.  However, when I run the program, the arrow keys jump the selection focus in an apparently

  • IPad smart cover ripping at sides

    My iPad smart cover at the sides is breaking and separating. I lost the receipt will apple still give me a new one if I take it back With out the receipt?

  • Black border around my desktop and everything is zoomed out?

    i have a macbook air and just this morning i noticed the desktop screen is zoomed out and there is a black border around the page, also when i go on safari or any other app everything is slightly zoomed out including text. even when i zoom in on the

  • "Approver Not Found"

    Hi all, In purchasing, though i am able to get the approval done for Standard Purchase Order and Requisition through the respective hierarchy, I am unable to do so the same for Blanket and Planned Purchase Order. Further, The Hierarchy as define in H