Third Party - multiple invoices based on dummy Goods Receipt

In Third party sales scenario (without shipping notification) we want to create an invoice based on each dummy Goods Receipt which corresponds to individual shipment made by vendor to customer.
Ex. Sales order qty = 10. It is split in the PO to 2, 4, 3 and 1 in the delivery schedule. Vendor ships qty 2, and then 4. There is a trace # associated with each vendor shipment to the customer. Vendor invoice is entered for qty 2 and 4.
We want to bill 2 invoices one for two vendor shipments of 2 and 4. In VF04 order based billing for the sales order, SAP combines these 2 vendor invoices (2 + 4)  and will propose qty 6 in ONE invoice. If there a way get 2 Invoice proposals (i.e. 2 lines) in VF04 one for qty 2 and another for qty 4?
TIA.

Hello Ramani
In the Copying control  (I am guessing it is for Sales document to billing document, T Code: VTFA),  set up a custom routine in the field 'Data VBRK/VBRP'  for the requisite item category ( TAS or equivalent)  by copying standard routine '01'- FV60C001- and adding a splitting criterion, may be GR #. The challenge would be whether GR# would be available at that time and if not how to get it.
If it is Delivery based billing for some reason , then you can use standard routine '3' there. T code: VTFL: Copying control: Delivery document to billing document.
Hope this helps.

Similar Messages

  • FCE Support of Third-Party Plug-ins based on FxPlug - iSight

    I wish apple would make FCE Support of Third-Party Plug-ins based on FxPlug.
    I would love to be able to record to FCE with the iSight plug-in from Noise Industries....
    Is there an other way to do this??? Record audio and video to a quicktime movie from my iMac???
    thanks for your reply...
    G5   Mac OS X (10.4.9)  

    You can capture using the QuickTime player.

  • Batchbatch assignment ( multiple batches ) takes place - at goods receipt ( order confirmation ) assignment ( multiple batches ) takes place - at goods receipt ( order confirmation )

    Hi all,
    when will the batch assignment ( multiple batches ) takes place - at goods receipt ( order confirmation ) for each process order ?
    we will be prompted for the batch assignment ?
    thanks
    Vinu

    Hi,
    Yes system will create three process order considering you have maintain maximum lot lize as 1 Lac in Mateial master MRP 1 View.
    and these three process order will have different three batches considering you have batch number assignment as the time of release of production order.
    this can be multiple batches as well if partial confirmation done and batch number assignment is done on GR.
    If you are looking for one batch for three process order you need to go with development.
    Thanks

  • Invoice booking (MIRO) without Goods Receipt Entry (MIGO)

    Hi,
    We have a requirement where we will create Purchase order, thereafter we will be booking invoice directly without doing goods receipt. We will not be doing goods receipt at later stage also. So accounting entry at the time of Invoice (MIRO) should be :
    Expense Dr
    Vendor  Cr
    whereas if we do not do Goods Receipt and directly book invoice, following entry is getting generated:-
    GR/IR clearing Dr
    Vendor Cr.
    How can we map the above scenario??
    Thanks & Regards,
    Jyoti

    Hi,
    When you want to do your invoice without doing a GRN, its always advisable to post your invoice thru FB60..
    Thats the best way of doing..
    Cheers..
    Redoxcube

  • Third party: multiple customer invoice after vendor invoice

    Hi all,
    i have the following case on a third party flow:
    SO  quantity 10 pc
    PO quantity 10 pc
    GR1 quantity 3 pc --> Vendor invoice 3 pc
    GR 2 quantity 7 pc --> Vendor invoice 7 pc
    When i try to create customer invoice, SAP create a single invoice of 10 pc.
    Is there a way to create 2 invoices (I1 3 pc, I2 7 pc)?
    Please help me.
    Let em know if your need further information.
    Thank you in advance,
    G

    Srinu,
    i develope a routine as follow:
    select single * into ls_vbfa from vbfa where vbelv = vbak-vbeln and vbtyp_n = 'V'.
    if sy-subrc = 0.
    select single lfbnr into (l_lfbnr) from ekbe where ebeln = ls_vbfa-vbeln and ebelp = ls_vbfa-posnn.
    if sy-subrc = 0.
    select single belnr into (l_belnr) from ekbe where ebeln = ls_vbfa-vbeln and ebelp = ls_vbfa-posnn and lfbnr = l_lfbnr.
    check sy-subrc = 0.
    zuk-vkorg = vbak-vkorg.
    zuk-vtweg = vbak-vtweg.
    zuk-spart = vbak-spart.
    zuk-vgbel = l_belnr.
    zuk-vbelv = space.
    vbrk-zukri = zuk.
    But i think the problem is that on VBFA we have a single record, so it's impossible to create two different ZUKRI in order to manage the case of partial deliveries.
    Anyone have a soluton?

  • Third Party Error(Invoice)

    Hi In the third party process the customer is not able to create a Invoice the invoice receipt is already done in PO. The SO status is Blank, however in the SO their is a tick on S (multiple schedule lines), the delivery date is latter on 25/05 with the cnfrm. qty. is this the reason behind the invoice not getting generated. Thanks

    Hi,
    Check the stock of that material if not check the GR after PO.
    Regards,
    Vikas

  • Change unit cost AP Invoice line based from a Goods Receipt PO base entry

    Hi,
    Im using SAP B1 2007A PL 46 with B1DE 2.0
    SCENARIO:
    (1) I have a goods receipt PO that has a line for an item with a quantity but 0 unit cost.
    (2) At a later stage, via DI, I create a AP Invoice and set the line BaseType, BaseEntry and BaseLine to point to the goods receipt from step 1.
    REQUIREMENT:
    When creating the AP INV, I would like to change the unit cost for the line to something other than 0. I find however, that because I have based the AP INV Line a base document, I cannot override the line price for the line before calling the APINV.Add() method. After calling the APINV.Add() method, the APINV Line still has the price of 0 even though I set it, for example, to 100. (see example below)
                        docAPInv.Lines.BaseType = (int)BoAPARDocumentTypes.bodt_PurchaseDeliveryNote;
                        docAPInv.Lines.BaseEntry = GoodsReceiptPODocEntry;
                        docAPInv.Lines.BaseLine = 0;
                        docAPInv.Lines.Price = 100; //NEW PRICE            SEEMS TO HAVE NO EFFECT
                    int res = docAPInv.Add();
                    if (res < 0)
                        Success = false;
                        ErrorReason = B1Connections.diCompany.GetLastErrorDescription();
                        break;

    Hello,
    If your system is installed as 2007 (no upgrade from 2004/2005)
    -> use the UnitPrice instead of Price field.
    If you have upgraded from 2005/2005 versions,
    ->You can choose between the UnitPrice and Price fields up to the Customizing settings.
    See SAP Note 1334050
    Regards,
    J.

  • Payment Terms in Third Party Sales Invoice.

    Hi Experts,
    We are facing the problem in third party sales process.
    Suppose X is our customer and Y is our vendor, here Y is supplying the material directly to X and Y sending us the bill of entry and other documents to us, and then we create the sales invoices to X, we are following all process like first we create SO to X then with the PR we create PO to Y then we do migo and miro of vendor invoices then creating the sales invoice to X.
    The main problem is that we want that the payment due date to our customer invoice starts from the vendor bill of lading date which we enter at the time of migo and miro (document date), but in our system, in sales invoice to X, system is calculating payment terms which we have entered in the customer master of X.
    How to get above functionality activated in sap.
    Regards
    Rajeev Gupta
    Message was edited by: Rajeev Gupta
    Please somebody reply.

    Can somebody reply this query.
    Thanks

  • Support for Shared Variables in Third Party XP embedded based TPC's?

    I have deployed an application in an XP embedded based Touch Panel (Third party). The application is working fine, but the shared variables hosted on an RT (sbRIO Board) are not getting updated in the application on TPC
    1. The TPC is part of the project as Windows XP Embedded Touch Panel
    2. NI TPC Service has been installed on the TPC and the application can be deployed remotely from the development PC through ethernet. (Hence network connections and communications are OK)
    3. By using Distributed Systems Manager in the development computer, I can see that the shared variables are getting updated on the network
    I believe that the problem can be solved if the following programs are installed on the TPC
    A. Support for shared variables for XPembedded
    B. Shared Variable engine
    I have tried installing support for shared variables from Program Files > National Instruments > Labview 8.6 > PDA > Utilities > Variables > x86 - but am getting an installation error "Unable to find application manager for Pocket PC applications".
    Shared variable engine has been installed from ve220 folder. The program is getting installed. But the Variable Engine is not started Control Panel > Administrative tools > Services in Xpe, the service is stopped and cannot be started. When I try to start the service, I am getting the following error on TPC
    "Could not start the National Instruments Variable Engine Service on the local computer.
    Error 1053. The service did not respond to the start or control request in a timely fashion."
    Please suggest solutions for the above or alternate locations for the following:
    1. Support for shared variables for XP embedded TPC's
    2. Shared Variable engine installer program.
    Thanks
    Krish
    Solved!
    Go to Solution.

    Problem solved!
    Update for interested folks working on XP Embedded TPC's
    Just to make sure that Shared Variables were indeed accessible to the TPC, I wanted to install Distributed Systems Manager 8.6 on the TPC. However since the TPC was having only 1 GB of DOM (Disk on Memory) and with all the software I had tried, there were only a few Megabytes left on the system. I had to add another DOM of 2 GB.
    All the products of the Installation went fine, with the exception of NI Logos (Version 5.0). NI Logos installation failed repeatedly.  I tried installing NI Logos separately, with the same results. Then I had this gut feeling that NI Logos had something to do with the issue.
    I then downloaded the new version of NI DSM 2009 SP1. Although this was supposed to get installed on any fresh system without Labview, the installation would not proceed beyond the setup stage. I tried installing NI Logos from the products folder on the new download separately and it worked like magic!
    Once the new Logos (Ver 5.5) got installed, the Shared Variable Engine started automatically and the Shared Variables were finally unleashed - free to rise and shine! Thank God Almighty!!
    On the lighter side, come to think of it - for running an application of around 400KB, we need XP embedded, NI Run Time, Logos, DSM ..........  (all around 900MB). Can we make it any simpler?!!  Inviting your comments .......
    Thanks
    Krish

  • Third party sales invoice

    hi all,
    Happy new year.
    In third party invoice am getting " Tax code VN in procedure TAXSG is invalid". what is the solutions for this
    rgds
    Girish

    Hello,
    Please use the search option on SDN fourm and you shall get the right information for the question raised by you. Refer the below links:
    [REFERENCE LINK|Tax code(VN) in procedure TAXSG is invalid.]
    [LINK 2|http://forums.sdn.sap.com/click.jspa?searchID=36390492&messageID=8214663]
    Regards,
    Sarthak

  • Can I use third party Windows CE based touch panel to control my system?

    I want to use a WindowsCE based touch panel to control my system by connecting a CompactDAQ to it through USB and installing the.exe file built from LabVIEW and installing the CompactDAQ drivers.
    It sounds doable, but I don't know if WindowsCE does support those .exe files or the hardware drivers or if there is something I can do to make it support them. I hope anyone has an idea about this and can help me.
    Thank you
    Solved!
    Go to Solution.

    I found the following statement at :
    LabVIEW Touch Panel Module Getting Started Guide
    http://zone.ni.com/devzone/cda/tut/p/id/5868
    "The deployment procedures discussed previously for NI touch panels are not guaranteed to work for third party touch panels. If the use of a third-party touch panel is desired it must met certain requirements in order for the LabVIEW touch panel module to properly work with it.
    The LabVIEW Touch Panel module only officially supports the two operating systems and two processors that the NI touch panel devices are based on. The operating systems supported are Windows CE 4.2/5.0 and Windows XP Embedded, while the supported processors include the StrongARM, XScale, and x86.
    Another consideration when using a third-party touch panel is that a LabVIEW Touch Panel Deployment License must be purchased for each deployment of an application developed with the LabVIEW Touch Panel module.
    In addition, specific Microsoft tools must be installed on the touch panel target in order for the LabVIEW Touch Panel application to function as expected. The following Microsoft eMbedded Visual Tools need to be installed:
    Microsoft eMbedded Visual C++ 4.0
    Microsoft eMbedded Visual C++ SP 4 or later
    SDK for Windows Mobile 2003-based Pocket PCs
    Reference the Where Can I Find the Microsoft Tools I Need for the LabVIEW Touch Panel Module? knowledge base article to find links to the current Microsoft download sites."
    Kareem W.
    National Instruments
    Web Product Manager

  • How to generat multiple invoices based on per employee/contractor/services?

    Hello Experts / Dina,
    I am in situation where customer is in business of body shopping and charges to his final customer based on individual invoice / per employee /contracor & customer services. This was happening in legacy system but after the implementation of Oracle Project costing and Oracle Project billing, customer is not able to generate invoices per employee services. Rather consolidated invoices are getting generated.
    How to achieve this functionality in oracle project billing?
    Lets take example - On Project P1 for customer ABC, 3 below employees are working on different task for 3 months.
    Now after one month employees have been billed as shown below.
    Emp 1 - 1000 USD - for 100 Hrs
    Emp 2 - 2000 USD - for 200 Hrs
    Emp 3 - 1000 USD - for 50 hrs
    Now @ end of the month when invoice is getting generated is 1 invoice including 3 lines of amount total 4000 USD. There is problem; customer wants that there should be 3 different invoices per employee shoud generated based on above mentiond 3 diff lines for customer ABC.
    I guess with oracle projects billing - You can split the invoice based on Accrue through date ( which is not possible in this case ) and agreement ( which is also not possible in this case ) and different currency ( which is again not possible in this case) - I may be wrong when saying it is not possible. plz correct me if I am wrong.
    even I guess billing extension wont work. So is there any way to achive this?
    Right now only option i am thinking is let single invoice of 4000 USD with 3 different lines should pass to AR and while priniting the invoice customer can create 3 diff prints which includes individual lines. and while applying receipts on the single invoice in the system, customer can apply the receipts to indivual lines.
    but I am not sure about AUDIT issues.. Can some one think about any AUDIT issues comes to this approch or issues with TAX rounding amount issues ?
    Infact I would like to solve this issue with the help of Oracle Projects billing and not with custom invoice print program. I guess someone from you experts can figure it out to generate muiltple invoice based on employees / suppliers / contractors / materials etc.
    A suggestion on Extension / customization / seeded functionality of Oracle Project billing on thi issue would be gr8 help.
    Please help.
    Thanks
    Edited by: oracle_samba on Jan 7, 2013 1:06 AM
    Edited by: oracle_samba on Jan 7, 2013 1:07 AM

    Hi Dina,
    First of all thanks for your update :-) Your solution looks much promising.
    I thought of using billing extension but rejected on the ground that I would end up in generating events based on employee for their corsponding billig amounts so finally generating a consolidated invoice only in One GDI run. But what i was missing was pre-processing extension and running the extention in loop based on employee count.
    I am fully sure business would not have any issues of auto approving and releasing invoice upon generation. But my question is "is it possible to just approve the invoice & not release it using auto approve and release extension?" The reason is I think when GDI runs it only deletes Unapproved invoice & spare Approve invoices. - So please suggest.
    Also please validate my understanding about your solution with an existing example -
    As with the current example, there are 3 EMP presents so need to run GDI 3 times and develop pre-processing ext in a such a way that at each time it will put on hold on all the billable items except EMP1, and EMP2 and EMP3 on each consecutive run respectivly. And ensure that Auto Approve and release extension should be used in order to avoid overriding previously generated invoice? Am I right ?
    Many Many thanks for solution !!!
    Regards,
    :-)

  • SD-Third party sales- Invoice

    Hi ,
      One of my customer doing third party sales ,
    Sales order-PO-MIGO-MIRO -vf01
    The customer completed SO-PO-MIGO-MIRO...when doing VF01 it displaying an erros "ITEM IS NOT RELEVANT FOR BILLING"
    But in my item category TAS the billing relevance field is "F"
    I don't know why it is happening....
    But in sales order in item data there is a field called Billing Relevance in that the status showing is "A"..
    How can i change the status to "F" since it is grayed out ...Pls give me any idea
    Rgds,
    Sree.S.

    Please ask your question on a proper forum such as SD forum.  Here is for SAP Business One user.
    Close your thread.  Do not waste some others' time.
    Thanks,
    Gordon

  • Park invoices that havent been Goods Receipted

    Dear Gurus,
    We are looking at a way of parking invoices on our system that havent been GRN'd but want to maintain Goods-Receipt-Based IV button ticked in the PO to ensure that the functionality around this are maintained.
    We also want to be able to allocate the PO line items to the Invoice but again if it hasnt been GRN'd MIRO doesnt pick up the PO in question.
    I have looked at transaction MIRA but this only Holds an invoice rather than Parking it and we need to be able to allocate a FI Document.
    Any help or guidance would be greatly appreciated.
    Feel free to ask for additional information.
    Regards
    John

    The advantage of parking is that you are still able to modify while this is not possible with holding.
    You can distribute the work between 2 users
    Especially when working with EDI you often get the invoice much earlier than the goods, and those invoices are all parked.
    The SAP release notes 4.6c already explain:
    Update allocation
    If goods-receipt-based invoice verification has been defined and no goods receipt has been posted yet, you can park an invoice document simply by saving the allocation without any invoice items. If you want to process this parked invoice document further at a later time and a goods receipt has been posted in the meantime, the system can find this goods receipt. Choose the icon Update allocation to do this.
    And this docu explains as well in detail how documents are parked in case of GR based IV:
    Processing Invoice Documents - Logistics Invoice Verification (MM-IV-LIV) - SAP Library

  • Invoice without service acceptance/goods receipt

    Hi expert,
    Currently our system allowing to creates invoice receipt (MIRO) without service acceptance/goods receipt as reference.
    Could you advice any configuration setting or else to prevent this matter?This issue is same for both material and service
    Please help
    Rgds,

    Hi
    Path SPRO > MM >Purchaseing > Purchase Order > Define screen layout at document Layout > select ME21n > Under GR/IR Control set GR Based Invoice option as Mandetory entery
    Edited by: Sanjay  Shah on Feb 16, 2010 5:34 PM

Maybe you are looking for