Required  help to the proforma invoice layout

Dear Experts
My client requires the following things in the proforma invoice
1.Seller address and VAT number
2.Truck No
3. Pallet No
4.Place of Loading (Ship From)
5.Commodity code number
6.Quantity in Pallets
7.quantity in cases/bandles
8.Price in EURO for Cases/Bandles
9. country of origin
10. Seller reference, ex: PO no
11.Proforma Invoice number
12. Proforma Invoice date
13. total Value
14. Freight Value.
Please give me the tables and fields from where to invoice data is flowing
Issue is very urgent
Please help me on this
Thanks & Regards
Janardhan

Hi Janarthan,
Plase go through the following field mapping which is you required.
1.Seller address: With the help of ABAPer, You can extract address data from ADRC table.
VBRK-STCEG   OR   KNA1-STCEG --VAT number
2.Truck No: VTTK-SIGNI
3. Pallet No:
4.Place of Loading (Ship From): LIPS-LSTEL
5.Commodity code number
6.Quantity in Pallets
   VBRP-FKIMG – Qty
   VBRP-VRKME—UoM (MVKE-VRKME=”PAL”)
7.quantity in cases/bandles:
   VBRP-FKIMG --- Qty.
   VBRP-VRKME --- unit of measure (MVKE-VRKME=”CSE”)
8.Price /currency(EURO)/UoM (Cases/Bandles):
    KOMV-KBETR / RV61A-AWEIN (currency, sale unit)
9. Country of origin: ADRC-COUNTRY
10. Seller reference, ex: PO no: VBKD-BSTKD
11.Proforma Invoice number: VBRK-VBELN
12. Proforma Invoice date: VBRK-ERDAT
13. total Value: VBRK-NETWR
14. Frieght Value: KOMV-KBETR where KONV-KSCHL=”FB00”
Reward points pls.
Regards,
Govind.

Similar Messages

  • How to create the PROFORMA INVOICE

    Hi all,
             How to create the PROFORMA INVOICE.
    T-code?
    Regards,
    T.Muruganantham

    Dear Anantham,
    After completion of the delivery you can create proforma invoice with reference to the delivery document in the transaction VF01.
    You can create Proforma invoice with reference to the Sales order also.
    Go to VF01 transaction enter the billing type as F5 if you want create proforma invoice with sales order.
    or Enter billing type as F8 it you want to create proforma invoice with delivery.
    Before all these things you should have the copy control settings between order to proforma invoice and delivery to proforma invoice
    I hope it will help you
    Regards,
    Murali.

  • I want to cancel the proforma invoice created in STO PROCESS

    hi experts
    i want to cancel the proforma invoice created in STO PROCESS   (accounting document is not generate)
    i tried but system do not allow
    thanks in advance

    Hi
    Hanumant
                                   U can cancel the commercial Inovice,  for proforma invoice we have to complete the same by using Tcode VA02---- billing doc. -
    Complete.  If u have created excise invoice please cancel the excise invoice first and then complete the proforma invoice. Once u complete the proforma inovice check the document flow and see the status it will be cancelled.
    Hope this will help you.
    Thx.

  • Require help controlling the time line of movie with AS 2.0

    I am trying to control a movie clip via action script through a button.
    My Flash File has a master movie clip "masterMC" that contains all of
    the movie clips for the flash movie.  It is essentially a calendar that
    when the user clicks on a date a small box pops up with the event(s)
    scheduled for that day.
    Inside "masterMC" there is a movie clip "calendar" and a movie clip
    "events" both with similar instance names.  Inside the "calendar" movie
    clip are calendar graphics of different months (oddly enough) where the
    dates on which an event falls is a button symbol.  I have a layer in the
    "masterMC" that holds the action script for the buttons.  I am trying
    to, when a button I pressed, trigger a specific frame to play in the
    "events" movie clip that brings up the box with the events.  One of my
    button's code looks like:
    Oct18_btn.onRelease = function (){
        eventsMC.gotoAndPlay("oct18");
    I have verified all instance names, frame names, letter case etc... And
    cannot figure out why when I test the movie nothing happens when I click
    the button.  Is there a problem in the code or could it be something
    else?  Thank you.

    I apologize for harping on about this, I have been away for a couple weeks and just saw this.  I think this is the case.  The "eventsMC" and "calMC" are in the "masterMC" however the button is inside of another movie clip called "octMC" within the "calMC" therefore I cannot seem to manipulate the action script correctly to achieve the result I want.  I have tried everything that has been posted as a possible solution and have gotten nowwhere.  I tried putting the script directly on the button as:
    on(release){
         eventsMC.gotoAndPlay ("oct11");
    and all varients using "_root." etc... and have gotten nothing.  I attached the .fla file if anyone is willing to take a look and help me; the only button I have been working is the one for OCT 11.  I simply want to repeat the same process each time an event falls within a day of the month.  Thank you.

  • Require help on the Query related to where condition

    Hi All,
    i am a java developer and was required to write a query for some of my operations to get the data from oracle database.
    i am stuck at one point. please help me.
    i have table with 3 columns.
    ID | Name | Value
    1 | ser | x
    1 | Bus | a
    1 | pol | b
    2 | ser | x
    2 | Bus | a
    2 | pol | c
    3 | ser | y
    3 | Bus | a
    3 | pol | b
    4 | ser | y
    4 | Bus | d
    4 | pol | e
    i have written query like below.
    Select ID from table where Name in ('ser','Bus','pol') and Value in ('x','a','b');
    i am getting out put as ID = 1,2,3
    but i should get the output as ID=1
    i should get the ID which satisfies all the given attributes and values.
    i cannot use the AND for each Name and Value here as i the no.of values inName or Value field may increase and that will be dynamically passed from my java class.
    Immediate help is appreciated.
    thanks a lot

    Something like this will deal with multiple values and treat the name value pairs together...
    SQL> ed
    Wrote file afiedt.buf
      1  with t as (select 1 as ID, 'ser' as Name, 'x' as Value from dual union all
      2             select 1, 'Bus', 'a' from dual union all
      3             select 1, 'pol', 'b' from dual union all
      4             select 2, 'ser', 'x' from dual union all
      5             select 2, 'Bus', 'a' from dual union all
      6             select 2, 'pol', 'c' from dual union all
      7             select 3, 'ser', 'y' from dual union all
      8             select 3, 'Bus', 'a' from dual union all
      9             select 3, 'pol', 'b' from dual union all
    10             select 4, 'ser', 'y' from dual union all
    11             select 4, 'Bus', 'd' from dual union all
    12             select 4, 'pol', 'e' from dual)
    13  --
    14  -- end of test data
    15  --
    16      ,i as (select 'ser|x,Bus|a,pol|b' as r from dual)
    17  --
    18  -- end of input
    19  --
    20      ,split as (select regexp_substr(r,'[^,]+',1,rn) as pair
    21                 from   i
    22                        cross join (select rownum rn
    23                                    from dual
    24                                    connect by rownum <= (select length(regexp_replace(r,'[^,]'))+1 from i))
    25                )
    26  select id
    27  from t, split
    28  where name = regexp_substr(pair,'[^|]+',1,1)
    29  and   value = regexp_substr(pair,'[^|]+',1,2)
    30  group by id
    31* having count(*) = (select count(*) from split)
    SQL> /
            ID
             1It's then just a case of providing the input in the correct format.

  • Requirement of invoice list in case of a proforma invoice generation.

    Dear Experts,
    I have a case where the customer is indulged with the export sales & he had delivered the excisable goods to his customer (or we can also consider it under STO as one of the above case) & wants to arise a proforma invoice in context to this transaction with the delivery document being taken as the reference document in the billing screen VF01; where, as I have already mentioned that the PGI has been done. Now the problem is this that the billing document is not getting generated with an information log that, '_The invoice list cannot be determined_'. Now I am not able to understand that why this is happening? This was the delivery related with a single line item.
    I went for changing the billing relevance field at VOV7 from 'A' to 'J' & even tried by changing the copying requirement from '010' to '311' at VTFL, from LF to F8 (as this is normally followed during the issue of free samples & subseqyent free of charge deliveries); but was not able to get the required output.
    What to do? Kindly assist.
    With regards,
    M.S.Kumar.
    Edited by: M.Santosh.Kumar on Jan 28, 2011 7:25 AM

    1) The document flow is like this that between the two plants for e.g. 1000 & 1100 under the same company code  the stock transfer needs to take place.
    2) Plant 1000 is devoid of the required amount of stock, hence it raised an enquiry for the aforesaid amount of stock with plant 1100
    3) Plant 1100 confirmed the availability of stock
    4) Plant 1000 raised a purchase order with plant 1100
    5) Plant 1100 raised the sales order for the required quantity of stock with plant 1000, & has done the PGI under delivery.
    6) Now the plant 1100 wants to raise one proforma invoice with respect to the delivery of goods being done to the corresponding plant 1000 & one commercial invoice for the payments to be made.
    7) The processing from raising the purchase order to the delivery of the goods to the respective plant has already being performed.
    8) At the moment of creating the proforma invoice with billing type F8, the system is throwing an error message that it is not able to generate the billing document because of the reason that the invoice list date cannot be determined.
    or else in the other way, in simple manner what needs to be done when simply the billing document is not getting generated in context to a delivery document because of the reason that the invoice list date could not be determined. Does this have to do anything with the POD time frame or the pricing conditions being defined under the pricing procedure which has not been followed upon while processing the sales order?
    With regards,
    M.S.Kumar.

  • Proforma invoice number is not in the document flow of the order.

    Hi all,
    I have a doubt , if i create an proforma invoice based on order, and after that i create delivery and billing, i cannot able to see the  proforma invoice in the document flow of the particular order.   pls guide me on this
    Thanks all
    Kumi

    Hi,
    Goto VTLA, and check the  UPDATE DOCUMENT FLOW in the  copy control
    If it is already set , then directly from sales order you can find the Proforma invoice .
    Goto the sales order in VA02 and enter into the overscreen and from there check the document flow ( F5), now you can see the Proforma invoices.
    regards,
    santosh

  • Provide me the solution for proforma invoice generation in SAP SD.

    Dear experts,
                      My issue is of invoicing, proforma invoice, F5 or F8 (either order related or delivery related) in intracompany stock transport order, there will be no billing document generation for the reason that invoice list date cannot be determined. Why? & what needs to be done for creating/raising the proforma invoice.
    With regards,
    M.S.Kumar.

    Please dont post the same question multiple times.  You have already posted a similar question and wait for response.
    thanks
    G. Lakshmipathi

  • Proforma invoice list

    Hi,
    where we can get the list of all the proforma invoice that generated for a particular period ?
    In vf05 i am giving the billing type f5 but no data are coming.
    Thankx in advance.
    Regards,
    Satya

    Dear Satya
    You cant generate proformas in VF05.  You have to run SE16, input Table VBRK for Header related datas and VBRP for Item related datas and execute.
    If this is going to be the permanent requirement, you can develop a zee report with the help of ABAPer fulfilling the requirement.
    thanks
    G. Lakshmipathi

  • Delivery note cancellation in case of proforma invoice

    Hi SAP Gurus
    I am in a typical automotive industry project where stock transfer takes place from factory to Sales Depo. In thsi case we generate STO orders - delivery note-- PGI-  Proforma invoice--- Excise invoice .
    Now as no accounting documents are generated in the proforma invoice cancellation of proforma invoice is not possible.So it happens that user reverse the PGI and cancels the delivery note.
    In many cases he/she remebers to reverse/cancel  the corresponding excise invoice generated but there are frequent cases as well where delivery note is reversed and cancelled without reversing/cancelling the corresponding Excise Invoice. 
    So i require
    1. Either the corresponding excise invoice gets cancelled at the time of cancellation/reversal of  delivery   note.
    2. If i could create an error message and validation check that restricts and informs user that a corresponding Excise invoice exists or excise invoice still open .
    Please help me out.
    Regards
    Jaydeep

    You can very well control this issue via BADI  LE_SHP_DELIVERY_PROC  where you can see various "Methods" in which you can also see "DELIVERY_DELETION".
    Tell this requirement to your ABAPer who can very well complete the task by using the above method.
    thanks
    G. Lakshmipathi

  • Proforma Invoice for Consignment Fill-up

    Hi,
    Everytime there is a delivery out from my company, we need to submit a proforma invoice to custom.
    Now we plan to implement the Consignment but we facing a problem. After we created the transcations for consignment fill-up (sales order type KB and its delivery order), we want to create the proforma invoice (F8) based on the delivery order but an error occured as below:
    "80008164 000010 Item category LF KBN cannot be invoiced with billing type F8."
    Is this message telling that consignment fill-up transaction can't use as reference to create a proforma invoice?
    Is there any configuration that I need to do to allow the creation of proforma invoice based on the consignment fill-up transaction?
    Thank you.

    Hi Aaron,
    You can have a Proforma Invoice for Consignment Fill-up. For this use the following path:
    IMG> Sales and Distribution> Sales> Sales Documents> Sales Document Item--> Define Item Categories. Here select the Item Category KBN and select option "D" for Billing Relevance field and  "X" for Pricing field (seen in the Business Data option).
    Also maintain Copy control between the Delivery type & Billing type using T-code VTFL. Here ensure Copying requirement as 009(DlvRel.pro forma hdr) at Header level. And at Item level select Item category as "KBN" with Copying requirements as 010(DlvRel.pro forma itm), Billing Qty as "B" and Pricing Type as per your requirement.
    Hope this helps you.
    REWARD if it helps you!!
    Regards,
    Ajinkya

  • Restricting Changes in Delivery after proforma invoice is generated

    Hi All,
    I have a requirement where i would like to restrict certain changes in delivery document for which proforma invoice is created so that the final invoice remains in line with the proforma invoice.
    for. example. change in item quantity, adding another items etc.
    is there any configuration settings for the same?

    Hello,
    When do you create Proforma Invoice? After PGI or before PGI.
    If you are creating Proforma after PGi then there is no issue as Delivery Cannot be changed after PGI.
    If you are issuing Proforma Invoice before PGI then you will have to go for a Z-Development as there is nothing available in SAP Standard to fulfill your requirement.
    Hope this helps,
    Thanks,
    Jignesh Mehta

  • How to create Proforma Invoice using Quotation?

    Hi friends,
    I want to create the proforma Invoice with reference to the Quotation.
    I have done conifguration as follow,
    IMG-Sales and Distribution-Sales--Billing-Maintain copying control for Billing Documents---Copying control,sales document to billing document ( here TGT is ZF5 and Source is QT) Copying requirement is 007
    When I am trying to create ZF5 document with transaction code VF01 I am getting the following error,
    No billing document is generated and processing status is Incorrect
    What is the reason?
    Need your help.
    Thanks in advance
    Regards,
    Shrikant

    Hi Srikant
    Proforma Invoice is created either with reference to the Sales order or with reference to the Delivery doc.
    If it is created from sales order, it is order related Proforma invoice will call(F5) and if it is from delivery, it is called delivery related Proforma invoice (F8).
    I do not think, you will be able to create a Proforma Invoice with reference to the Quotation.Quotation is still an information & not yet agreed by the customer
    Moeover ,If you will go to the Item categoryin Quotation (AGN) , transaction code VOV7, you will find it is not relevant for Billing.
    So, I think it is not possible.
    Regards
    pradyumna

  • Regarding proforma invoice and delivery

    Hi everyone,
    I have read online for information on how to prevent multiple proforma invoices. Understand that this can be controlled by using routine 311 in VTFL.
    Problem now is that my company's process requires the proforma invoice to be created before PGI is posted. I tried copying the codes from routine 311 and commenting out the portion which checks against Goods movement status but the result was that during VF01 it hits error No relevant documents for billing.
    Thanks and Regards,
    Kane

    Hi,
    As  per my knowledge it is not possible in standard SAP,
    Take the help of ABAPer and copy the 311 routine and modify the program
    IF VBUK-WBSTK <> 'C'.  
        PERFORM VBFS_HINZUFUEGEN USING '      '  '400' text-009 space space.
        SY-SUBRC = 4.
        EXIT.
      ENDIF.
    Based on the above coding which is mentioned in 311 system is not accepting to create pro-forma Invoice and you will get message "Goods issue has not been posted for the delivery
    Try to modify the program  with the help of ABAPer and check the cycle
    I hope it will solve the issue

  • Proforma Invoice - IDoc and message type

    Hi,
    The requirement is to send proforma invoice to legacy system upon creation. We use PI as middleware.
    Is it possible to send to proforma invoice data using IDoc?
    If IDoc then we have to use message control? Am i right?
    What is the process code and what is the basic IDoc type/message type to be used for this?
    Thanks for any help.
    Cheers,
    Srini

    Hi Srinivasan
    Basic type           INVOIC01  Invoice/Billing document
    Message type                   INVOIC     Invoice / Billing document
    Process code         SD09
    Description          INVOIC: Invoice
    Function module      IDOC_OUTPUT_INVOIC
    best of lucks and Happy Diwali
    Nandu

Maybe you are looking for

  • I have video embedded in a PDF, it plays fine on desktop but won't play on iPhone or iPad

    I have video embedded in a PDF, it plays fine on desktop but won't play on iPhone or iPad, is there a workaround? From what Ive seen through Google searches, I dont think there is but wanted to reach out to the pros. thank you for your help!!

  • Problem reloading swfs inside movieclip in IE

    I'm not quite sure whats going on. I have a website i'm working on http://www.tulum14.com and it works fine in safari and firefox, but when I run it in explorer it doesn't.  Whats going on is that when you go to the homes section of the site, each ho

  • Webview 7 Questions

    We run two separate Webview reporting servers and on one of the servers Jaquar constantly needs resetting and sometimes causes the necessity of a reboot of the server.   We have been told that too many users are accessing the server at one time.  My

  • Help with password protection

    Hi Team, can the password protection will be disabled within Adobe Reader XI - the password is known

  • RoboHELP 10 and Windows 8

    Hi Does anyone know if RoboHELP 10 supports windows 8? Or is another version slated to be the window 8 one? We're about to upgrade and before we do we want to ensure the new RH supports windows 8 otherwise we may have to upgrade twice. Thanks Steve