Error in transfer posting

hi,
  after quality inspection i move the stock into warehouse integrated storage location. if i clear inspection lot in qa32 for a material after saving it will pop up express message"error during creation of transfer order for a material".i configured that after qc inspection automatic TR is created.i just proceed with manual.
its a issue related with workflow or configuration....i checked with automatic TO all the things are deactivated.....where i am missing
Thanks
Muthuraman.D

Hello,
It is because the valuation class for both line items (material masters) are different. Check in OBYC for KON and valuation class 3000, any G/L account is maintained or not?
Prase

Similar Messages

  • Error in Transfer posting for movement type 303

    Hi Sir,
    I am getting following error while doing Transfer posting for movement type 303 thru BAPI_GOODSMVT_CREATE
    Error in Function:
    Order    not found or not permitted for Goods Movement.
    I am passiing all mandatory parameter for it as per BAPI Documentaion in tcode BAPI
    Transfer posting
    Transfer posting without reference to a reservation
    The following fields must be populated:
    Material number
    Plant
    Storage location
    Movement type
    Movement indicator
    Quantity in unit of entry
    ISO code unit of measurement for unit of entry
    If I am doing manually by MB1B tcode, it is successfully done.......here its not asking any ORDER No...
    Please help me .........
    Regards,
    Krishan

    I'm not sure what you're system set up is...   So I'd suggest looking at everything you enter on the screen and then checking to make sure you are passing all the information in the BAPI.
    With that said our system does require posting date, and batch.  You might check that.   Also check that you've included all the required information in the header.
    Did you use the same data when you tried to process the BAPI that you used when you tried to do MB1B manually?

  • Goods delivery error for transfer posting

    I have created a P.O for transfer posting for a material from Plant 2000 to plant 3000.where in my account assignment I have mentioed the WBS element.
    created the delivery document---VL10B and outbound delivery VL01N.
    during PGI, system gives error that no WBS element has been assigned.I went to item level and in financial posting TAB page I could not locate the same WBS number in the filed, which is not editable too.the movement type is 641.
    Please advcie what other things to check.
    Zinni

    Check your delivery type which  copy control and  how this value is passing.I think through some routine it is populated.Check the routine in VOFM transaction.

  • Error in transfer posting (MIGO,MB1C,MB1B)

    Hi Expert,
    Been having trouble in all my transfer posting both in migo, mb1c, mb1b. the error always say "internal program error at: Text for characteristic'" can you tell me what cause this error on my material and how could i fixed it,.
    Thanks and Regards,

    You should contact your ABAPer,by debugging he will tell you the real problem.

  • BAPI_GOODSMVT_CREATE error - Duplicate Transfer Posting

    Hello,
    I'm using BAPI_GOODSMVT_CREATE for transfer posting with GM Code 04 and Movement Type 311.
    But the posted material document is incorrect. Instead of 2 lines only, the line items becomes 4.
    Could anyone please help me?
    Thanks in advance!

    Hi Gold Yap,
          I have done the Transfer posting by using BAPI_GOODSMVT_CREATE.
         Below i added my sample code. Please go through.
    Report XYZ.
    TABLES : mslb , mchb .
    DATA : BEGIN OF i_stock OCCURS 0 ,
           matnr LIKE mslb-matnr ,
           werks LIKE mslb-werks ,
           charg LIKE mslb-charg ,
           sobkz LIKE mslb-sobkz,
           lifnr LIKE mslb-lifnr ,
           lblab LIKE mslb-lblab ,
           END OF i_stock .
    DATA : BEGIN OF i_batch OCCURS 0 ,
           matnr LIKE mchb-matnr ,
           werks LIKE mchb-werks ,
           lgort LIKE mchb-lgort ,
           charg LIKE mchb-charg ,
           clabs LIKE mchb-clabs ,
           END OF i_batch .
    DATA: BEGIN OF it_mess OCCURS 10,
          charg LIKE mslb-charg ,
          lgort LIKE mchb-lgort,
          lifnr LIKE mslb-lifnr,
          err LIKE bapiret2-message,
          flag,
          END OF it_mess.
    DATA match.
    DATA :  header LIKE bapi2017_gm_head_01 . "OCCURS 0 WITH HEADER LINE .
    DATA :  code LIKE bapi2017_gm_code .  " OCCURS 0 WITH HEADER LINE .
    DATA :  item LIKE bapi2017_gm_item_create OCCURS 0 WITH HEADER LINE.
    DATA : i_return LIKE bapiret2 OCCURS 0 WITH HEADER LINE .
    DATA : matdoc LIKE bapi2017_gm_head_ret .
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME .
    SELECT-OPTIONS : s_matnr FOR mslb-matnr .
    PARAMETERS : p_werks LIKE mslb-werks DEFAULT 'TPFB' .
    SELECTION-SCREEN END OF BLOCK b1 .
    AT SELECTION-SCREEN OUTPUT .
      LOOP AT SCREEN .
        IF screen-name = 'P_WERKS' .
          screen-input = '0' .
          MODIFY SCREEN .
          CLEAR screen .
        ENDIF.
      ENDLOOP .
    START-OF-SELECTION .
      CLEAR: i_stock[],i_stock.
      CLEAR: it_mess[],it_mess.
      CLEAR: i_batch[],i_batch.
      SELECT matnr werks charg sobkz lifnr  lblab
      FROM mslb INTO TABLE i_stock
      WHERE matnr IN s_matnr
        AND werks = p_werks.
      DELETE i_stock WHERE sobkz <> 'O'.
      DELETE i_stock WHERE lblab <= '0.000'.
      IF i_stock[] IS INITIAL .
        MESSAGE 'NO Data Available In MSLB Table' TYPE 'S' .
      ELSE.
        DELETE i_stock WHERE charg = 'COMMON' .
        IF i_stock[] IS INITIAL .
          MESSAGE 'Already Transfer Posting to Common Batch' TYPE 'S' .
        ENDIF.
      ENDIF .
      SELECT matnr werks lgort charg clabs
      FROM mchb
      INTO TABLE i_batch
      WHERE matnr IN s_matnr
        AND werks = p_werks .
      DELETE i_batch WHERE clabs <= '0.000'.
      IF i_batch[] IS INITIAL .
        MESSAGE 'NO Data Available In MCHB Table' TYPE 'S' .
      ELSE .
        DELETE i_batch WHERE charg = 'COMMON' .
        IF i_batch[] IS INITIAL .
          MESSAGE 'Already Transfer Posting to Common Batch' TYPE 'S' .
        ENDIF.
      ENDIF .
      CLEAR : header,code,matdoc  .
      header-pstng_date  = sy-datum.
      header-doc_date    = sy-datum.
      header-pr_uname    = sy-uname.
      header-header_txt  = 'Transfer Posting'.
      code-gm_code       = '04'.
      SORT i_batch BY matnr werks charg.
      LOOP AT i_batch.
        CLEAR: item[],item.
        item-material        = i_batch-matnr.
        item-plant           =  i_batch-werks.
        item-batch           = i_batch-charg.
        item-entry_qnt       =  i_batch-clabs .
        item-stge_loc        = i_batch-lgort .
        item-move_type       = '309'.
        item-move_batch = 'COMMON'.
        APPEND item .
        CLEAR item .
        match = 'X'.
        PERFORM bapi_run USING match.
      ENDLOOP.
      LOOP AT i_stock .
        CLEAR: item[],item.
        item-material        = i_stock-matnr.
        item-plant           =  i_stock-werks.
        item-batch           = i_stock-charg.
        item-vendor          =  i_stock-lifnr .
        item-entry_qnt       =  i_stock-lblab .
        item-move_type       = '309'.
        item-spec_stock      =  'O'.
        item-move_batch = 'COMMON'.
        APPEND item .
        CLEAR item .
        match = 'Y'.
        PERFORM bapi_run USING match.
      ENDLOOP.
      IF i_stock[] IS NOT INITIAL OR i_batch[] IS NOT INITIAL .
        IF it_mess[] IS INITIAL.
          MESSAGE 'Transfer Posted Successfully' TYPE 'S' .
        ELSE.
          SORT it_mess BY charg err.
          WRITE:/2 'Batch',11'Location',20'Vendor'.
          LOOP AT it_mess.
            AT NEW charg.
              SKIP.
            ENDAT.
            IF it_mess-flag = 'X'.
              WRITE: /2 it_mess-charg COLOR 6, it_mess-lgort COLOR 3
                     INTENSIFIED OFF,it_mess-lifnr COLOR 2 INTENSIFIED OFF.
            ENDIF.
            WRITE: /10 it_mess-err.
          ENDLOOP.
        ENDIF.
      ENDIF .
    *&      Form  bapi_run
          text
    -->  p1        text
    <--  p2        text
    FORM bapi_run USING match .
      CLEAR: i_return[],i_return.
      CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
        EXPORTING
          goodsmvt_header = header
          goodsmvt_code   = code
        TABLES
          goodsmvt_item   = item
          return          = i_return.
      IF i_return[] IS INITIAL.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            wait = 'X'.
      ELSEIF i_return[] IS NOT INITIAL.
        CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
        LOOP AT i_return WHERE type = 'E'.
          it_mess-charg = i_stock-charg.
          IF match = 'X'.
            it_mess-lgort = i_batch-lgort.
          ELSEIF match = 'Y'.
            it_mess-lifnr = i_stock-lifnr.
          ENDIF.
          it_mess-err   = i_return-message.
          IF sy-tabix = 1.
            it_mess-flag = 'X'.
          ENDIF.
          APPEND it_mess.
          CLEAR  it_mess.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    " bapi_run
    Regards,
    S.C.K

  • Idoc error for transfer posting

    hi i am working on idoc type WMMBID02.when i am doing stock transfer i.e. transaction MB1B trough idoc i am getting as
    Deficit of BA Unrestr. prev. 1,096 EA : 100536 PRDC RG01 9ANNA19002
    Message no. M7021
    but when i check the stock for the material in MMBE it has a lot of stock quantity.
    i.e. in MMBE the unrestricted stock is 200,000 and when i am transfering 1,096 stock it is giving me the error and i am able to the mb1b manually in the system.
    anyone please suggest.

    The error is saying Deficit of BA Unrestr. prev. 1,096 EA : 100536 PRDC RG01 9ANNA19002
    BA stands for batch
    Unrestr for stock status unrestricted
    prev  for previous period.
    In other words you do not have 1096 EA  in previous period for your material 100536 in plant PRDC with batch number 9ANNA19002
    maybe your posting date is wrong and it should be a date of the current period.
    maybe your batch number is wrong.
    maybe the quantity is too high.
    In MCHB table you should see the previous period stock in field CVMLA

  • Error in transfer posting between storage location

    Hi experts,
    while i am transferring the material from one storage location to other in MB1B by movement type 311 , while saving it shows the below error
    Data for creating a delivery is incomplete (Vendor)
    Message no. M7279
    regards
    arun

    Hi,
    Check mvmt type 311 is within plant how it is giving error on vendor.
    Tahnks
    SUresh

  • Migo Error in transfer posting

    Dear gurus
    In Development server when im performing Good Receipts against process order movement type the valuation type box is disabled but in production server the valuation type box is enable why is it so ?
    Regards
    Saad Nisar

    Hi,
    Check the materail in dev and production. The material in production might have split valuation. If you want to see the valuation type in dev server, then extend the material master for vaulation type.
    Ravi
    Edited by: Ravi Sundaram on May 26, 2010 5:36 AM

  • WM- WM stock (quality) to not activated storage loc-Transfer Posting issue

    hi friends
    I Have a error during transfer posting (321 mov type). After quality inspection the stock is rejected . so i have to move to WM not
    activated Storage location. After transfer posting, TR  is generated From material document. then iam trying to create to transfer order , but i have the error
    System cannot find source storage bin
    Message no. L3 008
    Diagnosis
    The system was not able to determine a source storage bin for this material.
    This problem can be caused for several reasons:
    1. The material no longer exists in your warehouse.
    2. The material is in your warehouse, but currently cannot be reached by the system (for example, the material is just being transferred by one of the conveyor machines).
    3. The material is in your warehouse, but not in the storage type and storage areas that are defined in your system for the material search.
    Procedure
    Check to see if the material really exists in your warehouse.
    If the reason for the error is the third one mentioned above, contact your system administrator
    Our bussiness is
    lXRM storage location is WM activated
    lXA   storage location is not WM activated
    1. create PO
    2.GRN- Quality Inspection
    3 If ok Means Stock is move to lXRM
        If not ok Means Stock is move to lXA.
    my queries is i want to move quality stock (WM) to not activated storage location.
    with regards
    dinesh

    hi friends
                     thanks for response,
    1. create PO
    2.GRN- Quality Inspection,* Initially i GRN receipt LXRA Storage location
    3 If ok Means Good Stock is move to lXRM. (storage location)
    If not ok Means Bad Stock is move to lXA.(storage location)
    we have not quality module, once do the Migo the manually the assign quality inspection(STOCK TYPE).  After quality inspection
    done, Then do the 321 mov type user should decide some good quantity move to unrestricted stock LXRM (Storage
    location) ,some bad quantity move to the scrap storage location (lXA) .
    *STORAGE LOCATION LXA is not activated WM
    My request is, i want to move to the Scrap location (LXA). after 321 movement type done, TR is generated then i am trying to do the transfer order . system is not accepted , iam getting error
    wiht regards
    dinesh
    Edited by: code acess on Aug 27, 2011 4:45 AM
    Edited by: code acess on Aug 27, 2011 4:46 AM

  • Error while doing transfer posting

    Hi,
    While doing transfer posting I am getting an error given below:
    "Deficit of SL Bl.stock returns 10 SU : (material) (plant) (stor loc)"
    Please help me in this regard.
    Thanks in advance.
    Sonal

    Hi,
    Please check once again. There is a deficit of stock in the storage location in the plant. I guess you are mentioning the incorrect s.loc in mb1b.
    Also check if there is any return material in the storage loc.
    Regards,
    satyajit
    Edited by: Satyajit Kumar on Dec 23, 2008 11:24 AM
    Edited by: Satyajit Kumar on Dec 23, 2008 11:25 AM

  • Transfer Posting error upon u201CQM Usage Decision with WM HUu201D

    Hello,
    I am switching from the SAP system u201CUsing MIGO with WM (no SU) and Inspection Lot processingu201D to a process using u201CInbound Delivery with WM-HU and Inspection Lot processingu201D.
    For e.g. I have a material with 10 pcs packed in one HU, PGRd and putaway. Inspection Lot is created for the HU containing 10 pcs. I am ideally hoping to do Posting change of 6 pcs to Unrestricted (with underlying mvmt typ 321) and Transfer Posting of 4 pcs to Qty. for Sample usage (with underlying mvmt typ 331).
    In QA11, when I select posting key u201CVMENGE01 To Unrestricted useu201D, I get the error message u201CHandling Unit is locked. No assignment possible. Message No. HUFUNCTIONS007u201D. (I donu2019t have any document open to cause locking).
    When I select posting key u201CVMENGE03 Qty. for Sample usageu201D, I get the error message u201CHandling Unit is locked. No assignment possible. Message No. QHU17u201D.
    Here is the status in u201CInspection Lot Stocku201D tab of QA11.
    u2022     Inspection Lot Qty.: 10 pcs
    u2022     Sample size: 4 pcs
    u2022     Status for u201CHU Transfer Postingu201D is Green
    I am currently doing GR first and then putaway. Though I am open to doing putaway and then do PGR, if that can help, in any way.
    Can anyone please help me with this issue? Please let me know if I need to provide more info. Thanks for your help in advance.

    hi
    I did GR for 10 PCs with serial numbers. During QM, when usage decision, in the tab "Inspection lot stock", I input 8 PCs to the unres, 2 to blocked stock.
    Upon posting, system pops up a Serial Number dialog showing "TF quality to unrest" with No. serial no is 10/8, and a list of 10 serial numbers.
    I select 8 serial to post to unres. But still, the system keeps having error "Exactly 8 serial numbers must be selected (instead of 10)"...
    This error is dur to
    You have selected 28 to U/r & rest you want to put to Block.
    so what system does is by default it will select first U/R qty which is 8.
    While stock posting it is showing 10 Sr numbers.out of which you have to select 8 for U/R.
    so only select those 2 numbers which you want to put to block...Click on delet(bucket)
    now only 8 will remain which you wnat to put to U/R.
    select all 8 and click on ok
    save.
    Rest of the 2 Sr number will automatically move to unrestricted.
    This is how sap in UD works for Sr nos.
    This will solve your problem.
    Regards
    Sujit

  • Storage bin does not exist error when during transfer posting in MB1B

    Hello All,
    I am getting the error message "  Storage bin [WH no, Storage type] does not exist Check your entry"  during transfer posting in MB1B from one storage location  to another for ex 0007 to 0001. But i can able to do transfer posting from 0001 to 0007 without any error.
    Please provide your solutions/suggestions
    Thanks
    Benny

    Benny Sampath wrote:
    Here is the error message "Storage bin 56A 870  does not exist (check your entry)"
    >
    > Thanks
    > Benny
    I can only see 2 values instead of the expected 3.
    what is 56A ? is it bin, warehouse or storage type?
    what is 870 ? is it bin, warehouse or storage type?
    one variable that is need  to have a hit in table LAGP is missing, hence you get this error.
    you have to find out why this variable is missing.
    But there is a wide area to look. Hence you should first answer the questions, as this would limit the options where to look.

  • MB1B transfer posting error "SL stock in transfer exceeded by 20 PC."

    Hi All,
    I'm doing a MB1B transfer posting for my materials from 1 storage location to another using movement type 311,
    but some of the materials I encountered this error.
    "SL stock in transfer exceeded by 20 PC : 'Material name' 'Plant' 'Stor. Loc' "
    I went to MB5T to check the materials if it's in the stock in transfer, but they are not in the list.
    I've also check in MMBE to check the stock value of these materials, it shows 100 in unrestricted use which is more than what I'm transferring.
    May I know what have i missed checking?
    Please help and thank you.

    Hi There
    Seems you are trying to do the One step Transfer between locations (311), So it is not required to look into the 313, 315 steps (Stock in trasfer, Removal and palce in transfer)
    From the Suppling location these Material and Batch is reserved for some purpose(261 or 201) and these material may under Dynamic Availability Check, In this case even if you have the stock in Location if it is hard allocated for some other purpose you cant use this qty
    Please check the above settings.
    Thanks
    Senthil P

  • Error in OASV (Transfer posting)

    Hi Experts,
    Help me on this
    I was doing transfer posting in OASV,got error message with respect to tax code Vo and created Vo with juridiction code  in the ststem and also checked setting in OBCL. Only inpux tax V0 is assigned.
    Now i am getting below error.
    Error in assigning the tax group
    Message no. FF716
    Diagnosis
    To guarantee a connection between the automatically created tax items, the initiating line items, and the tax information used for reporting, a unique code is assigned to the line items belonging together. An error occurred during this assignment.
    Procedure
    Contact your system administrator.
    Procedure for System Administration
    Create an OSS message.
    Regards,
    Pandu

    Hi,
    Please check once again. There is a deficit of stock in the storage location in the plant. I guess you are mentioning the incorrect s.loc in mb1b.
    Also check if there is any return material in the storage loc.
    Regards,
    satyajit
    Edited by: Satyajit Kumar on Dec 23, 2008 11:24 AM
    Edited by: Satyajit Kumar on Dec 23, 2008 11:25 AM

  • SLED error in LQUA table after batch to batch transfer posting -

    Hi All,
    I have done a batch to batch transfer posting in 309(same material - batch to batch).
    At IM level the receiving batch charecteristics have been copied.
    When i create a TO from the posting change number using LT05 and check the bin stock status or check LQUA table,the SLED of the receiving batch has the SLED of the issuing batch.
    Problem is not with IM stock/WM stock but,only the batch characteristics are not getting copied at WM level.
    Please suggest a solution to this issue.
    Regards
    Deepak

    Hi All,
    Stock of the material in IM and WM are as follows
    IM sloc -  - batch A - 50EA - SLED  -  15/5/2010   WM - bin A01 - 50EA
    IM sloc -  - batch B - 50EA - SLED - 15/10/2010 -  WM - bin A02 - 50EA
    Scenario is I have done a batch to batch transfer posting of the same material for 20 EA from batch A to batch B in MB1B.
    batch charecteristics of the both batches is
    After I create a TO from the posting change number.
    After the TO creation and confirmation IM stock is
    IM sloc -  - batch A - 30 EA - SLED  -  15/5/2010  
    IM sloc -  - batch B - 70 EA - SLED - 15/10/2010
    WM - batch A - bin A01 - 30 EA - SLED  -  15/5/2010  
    WM - batch B  - bin A01 - 20 EA - SLED  -  15/5/2010 (wrong SLED)
    WM - batch B - bin A02 - 50EA - SLED   -  15/10/2010
    Can someone suggest if there is any configuration settings or this is s standard system behaviour.
    Regards
    Deepak

Maybe you are looking for

  • Capture willl not work with FCP 5.1.1 installed on Mac Pro 2.66.

    I need some help, Please! Hello, I have just installed my crossover copy of Final Cut Studio 5.1 in a new Mac Pro. The only problem that I have encountered is with capture. After running for several seconds capture stops and the spinning beach ball m

  • CS2 with Leopard?

    I just received my new shiny 24" iMac to replace my old 20" one. I have been running CS2. I understand that CS2 will not run on the new Mac OS, is that right? I hate to have to go buy new software to do photo editing.  I use nothing in the CS2 suite

  • ERP Quotation from Opportunity

    Hi,    I am not able to create ERP quotation form CRM Opportunity. the setting is done in Cross-system Copy Control for Opportunity and SAP-ECC Quotation. what other settings to be done to create ERP quotation as follow UP With Regards Selvam T

  • Help on scenario: RFC Sender - File Receiver

    Hello All, I am stuck with a scenario where the sender is RFC and the receiver is FILE.  I have a simple RFC which has only two import parameters (No export parameters, no tables) and at the other end I have a file with two fields. I have a requireme

  • U510 Win 7 neu Installation Wie SSD nutzen

    Hallo Leute ich habe ein Problem mit der Neuinstallation von Win 7.Kurz zur Erklärung mein Bruder hat Wín 7 direkt auf die 24 GB SSD Installiert und die ist nun voll. Also hat er mich gefragt wie das sein kann. Ich habe mich jetzt schlau gemacht und