REG: while doing PGI with ref to OBD should pick stock from one location

Hi experts ,
I have a n issue while doing PGI with ref to OBD.
1.We are purchasing Raw material Aluminium circle 1000 nos from "X" vendor & keeping stock in Main stores i.e 0001 location plant-1.
2.From there we are issuing to production line i.e 0003 location(Plant 1)500 nos.
4.Remaining stock of 500 nos is in 0001 location in under some Batches.
5.Meanwhile we are suppose to transfer the aluminium circle to plant 2 .
6.For this we are raising STO for aluminium circles  600 nos to Plant 2.
7.With ref to STO we are raising OBD for Plant 2.
8.With ref to OBD While doing PGI it should picks the stock from 0001(Main Stores)  location only.
9.But the STO qty is 600 nos ,availablity of stock in 0001 is 500 nos only .
10.While PGI  it takes 500 nos from 0001 location & remaining 100 nos picking from Production line 0003.It should not pick from Production line 0003 location .
11.For this system should not allow to pick from 0003 location & also system should throw error message "Deficit of QTY in 0001 location"for 100 nos.
KIndly suggest me asap.
Thanks in advance
vichu
Edited by: viswanathan seenuvasan on Dec 10, 2009 7:01 AM

Hi,
As I understand the picking is done automatically in outbound delivery. Am I right?
a)
If picking is not done automatically but manually, why the user defines the production storage location in the OBD? In this case some training would be necessary....
b)
If it is done automatically: which settings are you using? Batch determination only?
1. In stock determination (SPRO > MM > IM > Stock determination > Define strategies for Stock Determination) you can define which storsage location should be used by system, and you can assign the stock determination rule to the applications (SPRO > MM > IM > Stock determination > Assign Stock determination Rule in the Applications)
(you also have to assign the stock determination group to the material master (MARC-EPRIO))
http://help.sap.com/erp2005_ehp_04/helpdata/EN/d8/2f3746996611d1b5480000e82de955/frameset.htm
2. You have to use batch determination
http://help.sap.com/erp2005_ehp_04/helpdata/EN/25/283aac4f7811d18a150000e816ae6e/frameset.htm
3. You have to use availability check in delivery not to ship out goods for which reservation already exists (if goods are in production storage location I assume you have a PrdOrd...)
http://help.sap.com/erp2005_ehp_04/helpdata/EN/93/744cd9546011d1a7020000e829fd11/frameset.htm
I haven't tries this but I assume it should work...
Please check SAP online help.
Regards,
Csaba
Edited by: Csaba Szommer on Jan 1, 2010 11:02 AM
Forget stock determination. Instead of it you should use picking location determination - suggested by Laksmipathi. It wokrks fine with batch determination.
SPRO > LE > Shipping > Picking > Determine Picking Location > Assign Picking Location
Edited by: Csaba Szommer on Jan 1, 2010 5:03 PM

Similar Messages

  • While doing MIRO with unplaned cost system is picking  accurel G/L account

    Dear All,
    While doing MIRO with unplaned delivery cost system is picking accural G/L account rather than cost element from PO.
    Thanks
    KMR

    Hi,
       It depeneds how the Unplanned Delivery Cost has been configured for the comany code.
    SPRO>Material Management>LIV>Incoming Invoice>Configure Unplanned Delivery Cost.
    Against Comapny Code put blank if : Unplanned delivery costs are distributed among the invoice items ( here the Materil account or the Account in the PO will be used. )
    Put     2 if : Unplanned delivery costs are posted to a separate general ledger   account  ( here the posting key UPF will be used to determine the g/l account ).
    Thanks and Regards

  • While doing PGI

    Dear Gurus,
    What are the feild and tables which are effected,while doing PGI with the help of Outbound Delivery.
    Through MM, SD or FI.
    regards,
    Manoj Kumar

    Dear,
    Visit
    http://www.erpgenie.com/abap/tables.htm
    which gives a detailed table links related to SD, MM, FI.
    Regards,
    Syed Hussain.

  • Error while doing PGI for Outbound delivery using BAPI BAPI_GOODSMVT_CREATE

    Hi All,
    I am getting an below error while doing PGI for outbound delivery using the BAPI BAPI BAPI_GOODSMVT_CREATE:
    Goods movement not possible with mvmt type 601
    Can anyone suggest me what will be the solution for it?
    Regards,
    Raghuraman.k

    I tried with the above BAPI but it is not working.
    In my case a delivery has one line item with batch split and other line item without batch split.
    Below is my code :
    DATA : gwa_header_data TYPE bapiobdlvhdrcon,
           gwa_header_ctrl TYPE bapiobdlvhdrctrlcon,
           lv_delivery     TYPE bapiobdlvhdrcon-deliv_numb,
           git_item_data TYPE STANDARD TABLE OF bapiobdlvitemcon,
           gwa_item_data TYPE bapiobdlvitemcon,
           git_item_ctrl TYPE STANDARD TABLE OF bapiobdlvitemctrlcon,
           gwa_item_ctrl TYPE bapiobdlvitemctrlcon,
           git_return    TYPE STANDARD TABLE OF bapiret2,
           gwa_return    TYPE bapiret2.
    *Header data
    gwa_header_data-deliv_numb = '0808000002'.
    *Header Control data
    gwa_header_ctrl-deliv_numb = '0808000002'.
    gwa_header_ctrl-post_gi_flg = 'X'.
    *Delivery Number
    lv_delivery = '0808000002'.
    *Item data and its corresponding control data
    gwa_item_data-deliv_numb      = '0808000002'.
    gwa_item_data-deliv_item      = '900002'.
    gwa_item_data-dlv_qty         = 4.
    gwa_item_data-dlv_qty_imunit  = 4.
    gwa_item_data-fact_unit_nom   = 1.
    gwa_item_data-fact_unit_denom = 1.
    APPEND gwa_item_data TO git_item_data.
    gwa_item_ctrl-deliv_numb      = '0808000002'.
    gwa_item_ctrl-deliv_item      = '900002'.
    gwa_item_ctrl-chg_delqty      = 'X'.
    APPEND gwa_item_ctrl TO git_item_ctrl.
    gwa_item_data-deliv_numb      = '0808000002'.
    gwa_item_data-deliv_item      = '900003'.
    gwa_item_data-dlv_qty         = 6.
    gwa_item_data-dlv_qty_imunit  = 6.
    gwa_item_data-fact_unit_nom   = 1.
    gwa_item_data-fact_unit_denom = 1.
    APPEND gwa_item_data TO git_item_data.
    gwa_item_ctrl-deliv_numb      = '0808000002'.
    gwa_item_ctrl-deliv_item      = '900003'.
    gwa_item_ctrl-chg_delqty      = 'X'.
    APPEND gwa_item_ctrl TO git_item_ctrl.
    gwa_item_data-deliv_numb      = '0808000002'.
    gwa_item_data-deliv_item      = '000020'.
    gwa_item_data-dlv_qty         = 10.
    gwa_item_data-dlv_qty_imunit  = 10.
    gwa_item_data-fact_unit_nom   = 1.
    gwa_item_data-fact_unit_denom = 1.
    APPEND gwa_item_data TO git_item_data.
    gwa_item_ctrl-deliv_numb      = '0808000002'.
    gwa_item_ctrl-deliv_item      = '000020'.
    gwa_item_ctrl-chg_delqty      = 'X'.
    APPEND gwa_item_ctrl TO git_item_ctrl.
    BREAK-POINT.
    CALL FUNCTION 'BAPI_OUTB_DELIVERY_CONFIRM_DEC'
      EXPORTING
        header_data    = gwa_header_data
        header_control = gwa_header_ctrl
        delivery       = lv_delivery
      TABLES
        item_data      = git_item_data
        item_control   = git_item_ctrl
        return         = git_return.
    BREAK-POINT.
    IF git_return IS INITIAL.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    ENDIF.

  • Error message while doing PGI

    HI Guys
    I created Order and while doing PGI error message comes
    Error message is:
    Account 892000 requires an assignment to a CO object
    Message no. KI235
    Diagnosis
    You have not defined a CO account assignment for an account that is relevant to cost accounting.
    System Response
    Account 892000 is defined as a cost element.
    This means that you must always specify a CO account assignment.
    Procedure
    Enter one of the following CO account assignments
    Order
    Cost center / cost center/ activity type
    Sales order item (for a project or cost relevant)
    Project / WBS element
    Cost object (Process manufacturing)
    Network/ Network activities
    Business process
    Profitability segment
    Real estate object
    The posting row affected is 000, account 892000.
    Help me in this issue ...as early as possible

    Hello,
    sales order items are not in all cases available as account assignment    
    object, this is only the case if it is an order with make-to-order        
    production (VBAP-KZVBR='E').                                                                               
    If the sales order item itself is a co-object (VBAP-KZVBR='E'), the       
    cost and revenues can be carried on the position itself and the field     
    VBAP-OBJNR contains the number of the co-object. Please check this for    
    your case.                                                                               
    Even if the VBAP-KZVBR is set to 'E', but if the field VBAP-OBJNR is      
    blank, the order cannot be the accounting object in KB21N - you should    
    rather use the receiving order for the activity allocation.                                                                               
    You can check this in KB21N via the F4-help: if the sales order item      
    is not displayed here, it's is not considered as valid account assigment  
    object.                                                                               
    I hope this information will help to clarify the issue.                   
    Regards
    Claudia

  • While doing PGI I system getting Error

    Dear SD Experts,
    While doing PGI in delivery system getting Error   "The batches are not defined for delivery item 000010".
    Error Massage :- Message no. VL605
    I already defined Batches to the given item. Its appearing Under Material and its specified in Batch split Tab.
    Kindly suggest me where I was wrong and what configuration I missed.
    Regards,
    Manzoor Ahmad

    hi
    select the stock against the batch which should be equal to delivery quantity.
    that means delivery quanquantity should be equal to picing quantity.
    after selecting manually press F3 to go back.
    system will give a POP UP message say YES
    then the batches against the quantity will be copied in the delivery document
    again go back you will come to over view of delivey screen
    then in picking tab page you will find all picked quantity if not give it manually
    and save the delivery document with out pressing PGI.
    hope this clears your issue
    balajia

  • Problem while doing PGI

    I tried searching for this error below but i could not find any relevant thread.
    I get the following error while doing PGI:
    Fld selectn for mvmt type 601 / acct 7001012003 differs for Sales order (013)

    but i could not find any relevant thread
    Surprising!!!!!!
    Not sure with what text you had searched.  Either the error message should be typed in full without any abbreviation or with error message number.  More than 15 threads you can find in Google.
    G. Lakshmipathi

  • Error:while doing PGI in STO getting error

    Dear sir,
    while doing pgi in sto i m getting this error and i tried in obyc setting is there is there any other option to solve this isssue.
    Account determination for entry CAIN AUM ____ ___ 7920 not possible
    regards,
    Debesh

    Hi
    Account determination for entry CAIN AUM ____ _ 7920 not possible
    This is a clear OBYC error
    Here CAIN is chart of accounts
    AUM is transaction key
    Go to OBYC select AUM double click that
    system will ask for chart of accounts give CAIN as chart of accounts
    maintain the necessary settings for 7920 and for the valuation grouping code
    Here system has not given what is your valuation grouping code
    In t code OMWD you can see what is the valuation grouping code assigned to your plant
    make the necessary settings
    I feel by chance or by mistake in your delivery doc there is a line item with 0 qty in both delivery and picking
    That is why system has gone for AUM  transaction key
    check that and delete that item and then without the above said settings being maintained the PGI can get processed
    Check and revert back
    Regards
    Raja

  • Reduction logic while doing PGI for Delevery

    Hello all,
    we have one requirement to make the consumption for MTO(Make to Orders) while MRP running through MD04. We have done some changes in enhancement spot to made the consumption forcifully for MTO's.
    But while accessing MD63 for VSF(Planning with Final Assembly) MTO's we are not able to display the reduction quantity while doing PGI for particular Delivery.But this functionality is working fine for VSE(Planning without Final Assembly) MTO's as SAP standard.
    Please help me out to achieve the same functionality for VSF(Planning with Final Assembly) MTO's .
    Thanks and Regards,
    Siva.

    Hello all,
    we have one requirement to make the consumption for MTO(Make to Orders) while MRP running through MD04. We have done some changes in enhancement spot to made the consumption forcifully for MTO's.
    But while accessing MD63 for VSF(Planning with Final Assembly) MTO's we are not able to display the reduction quantity while doing PGI for particular Delivery.But this functionality is working fine for VSE(Planning without Final Assembly) MTO's as SAP standard.
    Please help me out to achieve the same functionality for VSF(Planning with Final Assembly) MTO's .
    Thanks and Regards,
    Siva.

  • Error while doing PGI

    while doing PGI i am getting error : "     Item 000010 requires exactly 10 serial numbers for the asset "
    i tried by Extra --> serial no here i am not able to do anything, there is no automatic button in pop up screen.
    and in mm02 also i tried in sales:general plant/data
    i am not able to do PGI, is there is any other solutions

    Dear Mohan,
    As per your message the material alredy got assigned some serial number so those serial numbers only you need to assign in the delivery before PGI.
    But you have mentioned that there is no popup menu when you go through Extras -->Click on serial numbers this is the place you can assign the serial numbers to the material (go to drop dowmn for existing serial number).
    I hope this will help you,
    Regards,
    Murali.

  • Getting the error while doing PGI for depot delivery

    Hi
    I am getting the below error while doing PGI for Depot delivery. This error is happening only when I taking the materials from stock transfer order which has more than 10 line items. Same issue is not happening when I am taking one material in Stock transfer order in & same material in depot delivery. Please see the screen shots below attachment. I have already maintained no range for the object J_1IDEPINV for year 2014.
    Regards
    PK

    Moved from SAP ERP SD Sales to Internationalization and Unicode.  Please post all your CIN related queries here.  Also ensure that before posting, you made efforts in searching in SCN or Google.  The reason for this indication is the issue you posted has already been discussed many times here and you will get some clue had you searched.
    G. Lakshmipathi

  • Error ,Field catalog not found while doing billing with DP90

    Dear Guru's
    while doing billing with DP90 transaction code.i have given service order no xxxx and execute.Then i received the below error
    Field catalog not found , Message no. 0K530.Kindly help me in solving the issue.
    Thank u
    S Babu

    hi naga suribabu,
    I am also facing same issue. can you please help, where to  check the configuration for this issue

  • Run time error while doing PGI

    hi gurus
    while doing PGI i am experiencing run time error.
    the ERROR ANALYSIS says that " check doc number 49 in company code 1234 and fiscal year 2007. and correct the number range status if necessary".
    i'm confused. please guide how to rectify the problem.
    thank you all in advance
    regards
    madhu

    Create new number range in T.Code:FBN1
    Go to menu path:
    IMG > Materials Management >Inventory Management and Physical Inventory > Number Assignment > Define Number Assignment for Accounting Documents
    Click on "Financial Accounting Document Types"
    go to Accounting Documents WA, WI, WL and double click on them and change the number range to the new number range created.
    Regards
    AK

  • While doing PGI.... error coming deficiancy of stock

    Dear Guruz,
    while doing PGI.... error coming deficiancy of stock. In MMBE the stock quantity is 40 and i am trying to issue 1 qty.
    PL discuss
    Edited by: Csaba Szommer on Oct 23, 2011 7:48 PM

    Hi,
    It seems to be u have not done "Transfer order confirmation".
    Pleas do the TO confirmation then try do PGi and let us know the status....
    Regards
    sankar

  • While doing PGI get error account determination for entry

    while doing PGI get error account determination for entry    not possible message no M8147

    Hello,
    Seems like you are missing entry in Trx OBYC - GBB/VAX or GBB/VAY. The long text of the error message would tell you where to maintain the entries. If that is VAX or VAY you would need to maintain the 'Cost of Goods Sold a/c there according to the valuation class.
    Kind Regards // Shaubhik

Maybe you are looking for

  • Customer Exit Problem in Bex

    Hi Experts, I don't know abap but as per our requirement I need to write a Customer Exit, my requirement is I have user input value variable(ex,10,15 etc upto 31) then I have another Char ZCHSTDATE so if user enters 01 or anyvalue the report result s

  • Storing co-ordinate data in Table

    Dear all, Can any one suggest what is the best (I mean data type) way to store vector information (line, Pline) information into a oracle database. I am having average of 45 to 75 pair of X,Y coordinate for a pline. Thanks In advance Jesu.

  • I had 2 monitors connected to my macbook and i accidently selected 0 monitors now my screen is blank what do i do

    I had my macbook connected to 2 monitors and i accidently choose 0 monitors now I have a blank screen what do I do?

  • Set Default application

    Hello to the mac family. As always I have a small problem that I am sure someone can help me with. I am using a G-5 with Safari. I recently added Acrobat Professional to my computer. I deleted the free reader. Now when I go to a website that has a pd

  • Why am I STILL getting "No AirPort card installed"?

    Guys, I am really struggling with my laptop. Here's what happened. My Macbook Pro 2009 13" was unexpectedly shutting down, freezing, etc. I took it into the Genius Bar and they ended up having to replace my hard drive bracket. Not terribly expensive,