Delivery document creation after Posting of Goods through Purchase Order

Dear All,
Could you please help me out by letting me know how to create a delivery document flow i.e. entry in VBFA table after Posting of Goods through PO, I have Inbound delivery document that I know & also a succssfull Material document that is created and can be viewed through Purchase order history BY USING ME23N transaction code.
so please let me know is there any way to create a delivery by inputing delivery no., Material Doc & Material Doc year
Thanks,
Sanjay

Additonally:
At the time of GR the inbound delivery ican be updated in MIGO also if you set the suitable indicator in:
SPRO > LE > Shipping > Basic Shipping Functions > Configure Global Shipping Data (V_TVSHP-SPE_INB_VL_MM)
(see OSS note 1050944)
Even though you implement this change or w/o this change post the GR in VL32N, you won't get the document flow in table VBFA.
You can use table EKBE to get the necessary information.
Regards,
Csaba

Similar Messages

  • Errror  in Goods Reciept  purchase order  (MIGO)

    Hi Gurus,
    matnr-m-10
    plant :3000   RFQDate:21.10.2008  SubDLDate:25.10.2008   Document Date:30.10.2008
    I  have purchase order number '4500018285' with the vendor '5550'
    while  i'm generating  Goods Receipts Purchase order ,it sends Error
    "Posting only possible in periods 2006/05 and 2006/04 in company code 3000"
    could any one tel  what is problem to over come this.

    Hi,
    Hope ur period open is 05 for 2006 year.1st check which period open in MMRV & open periods one by one in MMPV t.code for your Co. Code 3000.
    If you opened  period in MM side ,Now in FI side in t.code: OB52 and open the period (present period [may be 10 for chart of account K4 or 07 for  for chart of account V3 for 2008] for the Account Types A, K, D,M, S and specially Account Type u201C+u201D which stands for valid for all accounts type and save.
    Now try ur transaction.
    Note
    Check OMSY setting( Do not change):
    Example;
    In OMSY steps, u have to enter .....
    Company Code .....
    Company Name ..............
    Fiscal Year of Current Period 2008
    Current period (posting period) ???
    Fiscal year of previous period 2008( will come automatic)
    Month of previous period( ???-1)( will come automatic)
    Fiscal year of last period of previous year 2007
    Last month of previous year 12
    Allow Posting to Previous Period (Back posting)
    Disallow back posting after a change of period
    For more Check the SAP Notes:487381 & 369637.
    Regards,
    Biju K

  • Goods Receipt Purchase order

    Hi All,
    In Goods Receipt Purchase order(MIGO) Transcation, we r having delivery note (LFSNR) field, i want to retrive this field from data base , so can any body tell me the exact table for this delivery note field.
    BALU.

    Hi,
    LFSNR field is nothing but xblnr which u can find in table mkpf.
    For this, u need to know material document no, ie,mblnr.
    If u pass mblnr,mjahr to table Mkpf, u will get field xblnr which is nothin but lfsnr which u req.
    Hope ur query is solved.
    **REWARD ALL HELPFUL ANSWERS

  • BAPI for  Reversal of Goods Receipt Purchase Order(Transaction : MIGO)

    Hi all,
    Is there any BAPI for the Reversal of posting the documents Goods receipt Purchase order
    (Transaction: MIGO).
    Any inputs on this..is highly appreciable...
    thanks in advance...
    regards..
    prathima.

    Hi,
    Try this passing material doc and year.
    * Cancel the goods movement (creates a reversal document)
      CALL FUNCTION 'BAPI_GOODSMVT_CANCEL'
        EXPORTING
          materialdocument = g_material_doc
          matdocumentyear  = g_matdoc_year
        TABLES
          return           = i_return.
    Edited by: Raj on May 14, 2008 7:46 PM

  • BAPI needed  for  Goods Receipt Purchase Order(Transaction : MIGO)

    Hi all,
    We have a requirement where in we need to post the documents throuh BAPI for Goods receipt Purchase order(Transaction: MIGO).
    Any inputs on this..is highly appreciable...
    thanks in advance...
    regards..
    prathima.

    Hi,
    use 'BAPI_GOODSMVT_CREATE'
    Check this sample.
    code
    REPORT ZRICH_0001 .
    Structures for BAPI
    DATA: GM_HEADER TYPE BAPI2017_GM_HEAD_01.
    DATA: GM_CODE TYPE BAPI2017_GM_CODE.
    DATA: GM_HEADRET TYPE BAPI2017_GM_HEAD_RET.
    DATA: GM_ITEM TYPE TABLE OF
    BAPI2017_GM_ITEM_CREATE WITH HEADER LINE.
    DATA: GM_RETURN TYPE BAPIRET2 OCCURS 0 WITH HEADER LINE.
    DATA: GM_RETMTD TYPE BAPI2017_GM_HEAD_RET-MAT_DOC.
    CLEAR: GM_RETURN, GM_RETMTD. REFRESH GM_RETURN.
    Setup BAPI header data.
    GM_HEADER-PSTNG_DATE = SY-DATUM.
    GM_HEADER-DOC_DATE = SY-DATUM.
    GM_CODE-GM_CODE = '04'. " MB1A
    Write 971 movement to table
    CLEAR GM_ITEM.
    MOVE '412' TO GM_ITEM-MOVE_TYPE .
    MOVE 'Q' TO GM_ITEM-SPEC_STOCK.
    MOVE '3800533484' TO GM_ITEM-MATERIAL.
    MOVE '1' TO GM_ITEM-ENTRY_QNT.
    *MOVE 'PC' TO GM_ITEM-ENTRY_UOM.
    MOVE '1060' TO GM_ITEM-PLANT.
    MOVE '0007' TO GM_ITEM-STGE_LOC.
    *MOVE '0901' TO GM_ITEM-MOVE_REAS.
    MOVE 'P203601001' TO GM_ITEM-WBS_ELEM.
    MOVE 'P203601001' TO GM_ITEM-VAL_WBS_ELEM.
    APPEND GM_ITEM.
    Call goods movement BAPI
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
    EXPORTING
    GOODSMVT_HEADER = GM_HEADER
    GOODSMVT_CODE = GM_CODE
    IMPORTING
    GOODSMVT_HEADRET = GM_HEADRET
    MATERIALDOCUMENT = GM_RETMTD
    TABLES
    GOODSMVT_ITEM = GM_ITEM
    RETURN = GM_RETURN.
    IF NOT GM_RETMTD IS INITIAL.
    COMMIT WORK AND WAIT.
    CALL FUNCTION 'DEQUEUE_ALL'.
    ELSE.
    COMMIT WORK AND WAIT.
    CALL FUNCTION 'DEQUEUE_ALL'.
    ENDIF.
    WRITE:/ GM_RETMTD.
    LOOP AT GM_RETURN.
    WRITE:/ GM_RETURN.
    ENDLOOP.
    [/code]
    Also check the Bapis
    BAPI_PO_CREATE --> To create Purchase Order
    BAPI_PO_CHANGE --> To change Purchase Order
    BAPI_PO_GETDETAIL --> Todisplay Purchase Order
    Regards,
    Raj.

  • Inspection lot creation during GR with respect to Purchase Order

    Dear Experts,
    Here is my Question
    Inspection lot creation during GR with respect to Purchase Order
    Inspection type 01 set in the material master
    inspection lot will be created during GR for a Purchase order
    from my understanding for every GR a inspection lot will be created
    No batch Management
    but the requirement is irrespective to GR qty and number of times of GR
    we need inspection only one inspection lot
    For Instance
    There is a PO for 1000 kg no batch management
    now i do GR for 100 kg for 10 times with different dates
    now i need to have only one inspection lot
    not 10 inspection lot for each 100 kg
    can any one suggest a solution, please advise my understanding is correct
    Many thanks
    Raj

    Dear Raju,
    There is a solution for that .The setting can be done two ways, either in the material master or in the configuration
    1) Material Master
    MM02> QM View> Inspection Setup> 01> Control Insplot> 'X' An inspection lot for each purchase order item/order item 0r  An inspection lot for each material document and material
    a) 'X' An inspection lot for each purchase order item/order item
    This Means
    This setting is limited for use with the inspection lot origins 01 and 04.
    An inspection lot is only created during the first goods receipt for each PO item or production order.
    b) '1' An inspection lot for each material document and material
    If you set this indicator, the system creates only one inspection lot for a material document (in a goods receipt transaction) for each material. This setting is useful, if several purchase orders or partial deliveries are processed for the same material in a goods receipt transaction.
    2) You can do this default in the config
    SPRO > Quality Management >  Quality Inspection > Inspection lot creation >  Define Default values for inspection type > 01> Control Insp lot
    Hope this helps
    Regards
    gajesh

  • Post vendor Invoice without Purchase order.

    Hi all
    good afternoon
    how can i post vendor Invoice without Purchase order.
    And any option
    Regards
    Manju

    Hi,
    Use following transactions to do so;
    1. MIGO - Goods Receipt > Others
    Here use movement type as "501" and enter material, vendor, quantity, Plant, storage location, etc... manually and post the material document.
    Here following A/c entry will appear;
    (BSX) Stock Account - Dr
    (GBB-ZOB) Expense A/c - Cr
    2. FB60 - Post Vendor Invoice
    Here following A/c entry will appear;
    Vendor Account - Cr
    Expense A/c - Dr
    3. F-53 - Post Payment w.r.t. the Invoice posted in step2.
    Here following A/c entry will appear;
    Vendor Account - Dr
    Bank Account - Cr
    Note: - If you don't want to carry out inventory transactions then follow only steps 2 & 3.

  • DOC SPLIT FOR ASSET PURCHASE THROUGH PURCHASE ORDER

    Hi,
       When we do asset purchase through purchase order there is no provision either to enter profit center or segment in the purchase order  .In this case ,how the system will split the document  when we do GR And Invoice ?
    Regards,
    Guru.

    Hi,
    Follow the steps below :-
    1. Create APC recon acct as Statistical Cost element
    2. Transaction Code ACSET - Assign KOSTL for transaction type * and APC Posting / Depreciation
    3. Check the button "Acct assgn" in Transaction Code ACSET
    Regards,
    SAPFICO

  • Pay in advance before Goods Receipt Purchase Order

    Hi Experts,
    I would to know if it possible set a process of Paying in advance before to receive  Goods from Purchase Order
    Steps, like
    1-Create P.O (ME21N).
    2-Enter Incoming invoice (MIRO) (full or partial).
    3-Goods Receipt Purchase Order (MIGO).
    Could you suggest me?
    Thanks in advance,
    Ignacio

    If you want post the invoice prior to GR than you should not check the Gr-based invoice in the PO invoice tab then system will allow you to post the invoice.
    and later you can post the GR.
    until you post the GR you will see the open GR in MB5S tcode.

  • Tracing savings through Purchase Order

    Is it possible to trace savings done by procurement dept through purchase orders ?
    I recollect, in my previous organization, buyer used to put savings somewhere in condition tab so that it will be recorded and traced as per purchase order.
    Here 'savings' referes to the difference of amount between prices before and after negotiation.
    Anybody knows how this works exactly ?

    Hii,
    System does not know what is the negotiated price, somewhere you can give the Negotiated price. So its better to create a new condition type and ask user to enter the Value. Using this condition type you can generate reports like saving done for the negotiated material.
    Or
    You can see my previous reply.
    Regards,
    Kumar

  • No valuation type at Goods Receipt Purchase Order

    Hi,
    No valuation type at Goods Receipt Purchase Order and have to manually input the valuation type. How to default it so that the valuation type is populated automatically and gray out without any changes to the valuation type ?
    Thanks.

    hi Pankaj,
    The valuation tyoe is appearing for the hearder material only & not for the child material.
    is there any way possible to get the valuation type of child material.
    & moreover I have tried with Purchase  info record ,But not helpful
    Please aadvice
    Regards,
    Vivek
    Edited by: vivek sharma on Aug 1, 2008 3:35 AM

  • Trying to link Goods Receipt Purchase Order (OPDN) to Landed Cost (OIPF)?

    Hi Everyone,
    I am wondering what the link is between a Goods Receipt Purchase Order and a Landed Cost. Here is a diagram of the link that I am trying to determine.
    According to the Database Tables Reference there is a link between OPDN (Goods Receipt Purchase Order) and OIPF (Landed Costs) called 'ImportEnt', as shown below -
    However I can't work out what 'ImportEnt' links to on the OPDN (Goods Receipt Purchase Order) side.
    Any advice concerning how to link OPDN to OIPF will be greatly appreciated.
    Kind Regards,
    David

    Hi Nagarajan,
    Thank you for the helpful response. The key to fixing my query was in the code below (which you kindly shared) -
    LEFT JOIN PDN1 T2 ON T1.[BaseEntry] = T2.[DocEntry] AND T1.[LineNum] = T2.[BaseLine]
    Kind Regards,
    David

  • Getting error in goods receipt purchase order

    I am getting the error when running the goods receipt purchase order..
    "Account determination for entry 1000 (COA) BSX 1200 ( Co Code) -- CAR1 ( raw material )not possible"
    Can some one suggest me for above error..
    Praveen

    Hi
    Check valuation grouping code is active in OMWD for the valuation area and then check OBYC settings for chart of accounts - for BSX transaction key - GL account has been assigned.
    Thanks

  • How to Purchase Asset through Purchase Order

    Hi SAP Gurus,
      Can aby one explain me How to Purchase Asset through Purchase Order.
    Thanks in Advance,
    Warm Regards,
    Balaji Bhonsle

    Hi,
    Following are the important parameters, however these can vary depends upon business process.
    Account type : A
    Account assignment in line item level :
      GL account
      Internal order / Cost center
      Asset number
    Best Regards,
    Madhu

  • Credit block in delivery document (not in posting goods issue)

    Good afternoon!
    When I try to deliver an sales order with exceeded credit limit, the following occurs:
    I enter in tcode VL01N, input the order and press enter, then the system issues a warning "Credit user check 1 unsuccessful" because some condition in the user exit LVKMPFZ1 was not satisfied. The problem is that at this point, no document has been sent to VKM1, and neither when I save the delivery.
    It is only sent when I enter in the same delivery again and save it one more time, which is a undesireable behavior. Important: the post goods issue doesn´t work at all (which is correct).
    Is there any way of sending the delivery document to the VKM1 when I save delivery document in the first time?
    Best Regards,
    Adriano Cardoso

    Good afternoon!
    When I try to deliver an sales order with exceeded credit limit, the following occurs:
    I enter in tcode VL01N, input the order and press enter, then the system issues a warning "Credit user check 1 unsuccessful" because some condition in the user exit LVKMPFZ1 was not satisfied. The problem is that at this point, no document has been sent to VKM1, and neither when I save the delivery.
    It is only sent when I enter in the same delivery again and save it one more time, which is a undesireable behavior. Important: the post goods issue doesn´t work at all (which is correct).
    Is there any way of sending the delivery document to the VKM1 when I save delivery document in the first time?
    Best Regards,
    Adriano Cardoso

Maybe you are looking for

  • Sharing a Portfolio on Adobe Acrobat 9 Pro

    Please help!  I have to post my portfolio to Adobe Acrobat.com and keep getting this: Error: Acrobat did not get a response from the server.  I then log on to Acrobat.com and see my document, but it does not allow me to open it.  Please let me know i

  • KP06 is not allowing to post monthly planning.

    Hi , I have done configuration for KP06 to upload data from excel sheet. Configuration done. 1) created planning profile in KP65. copy 1-101 to Z1-101 and maintained monthly 1 to 12 period, 2) Assigned Profile in layout Kp34. but planing data is not

  • Samples to read option in DAQ

    Hello,           I am new to signal processing and confused about the DAQ Assistance option "samples to read". What I understand is about  Sampling rate indicates the samples read per second, I run my vi for a second and I got 10K samples when my sam

  • DOZESVC - Doze Mode Service Program - WHAT IS THIS?

    I discovered a process called "DOZESVC.EXE" running on the task manager the other day. After doing some poking around my computer I discovered its a Thinkpad Utility in C:\Program Files\ThinkPad\Utilities. Unfortunately Googling doesn't turn up anyth

  • Cannot Install Captivate 7

    Hello, I downloaded Captivate 7 but after clicking install, it begins unpacking and then I get a message saying that it looks like a machine restart is pending and that I should quit the instalation.  I restarted the machine to be sure and tried agai