Multiple deliveries into single invoice

Gurus,
My business requirement is like this,
Order is created and delivery process is done with PGI,but the material moves with manual invoice/DC,but the end of the week,all deliveries are compiled into a single invoice  for particular customer.Wheares the header condition,business item remains same.When i tried to put all deliveries for the customer X in vf01 and execute,the individual deliveries cannot be convereted into into single invoice.When split analysis is done it says header is different,but to my knowledge all header ,business items are unique.Kindly help me at this ase

- Try using Tcode VF04. Opt for delivery related billing active.
- Select the desired delivery in Billing due list. (Press Ctrl Key from keyboard to select multiple lines).
- Then you have 2 option
1. To click on Collective Billing button to do a collective invoice for the selected delv doc.
2. To analysis whether you will be able to a collective billing or not. To analysis that
- click on simulation button.
- Billing Doc Simulate: Billing Doc Overview Screen
- Select all lines.
- There first go for Logs, by pressing Log button.
- Then click on Split Analysis button to get split analysis.
- If you find any split reason and modify/adjust your copying control accordingly to do combine billing
- Finally, click on Collective Billing button to do a collective invoice for the selected delv doc.
Regards
JP

Similar Messages

  • Convert multiple delivery into single invoice

    Hi all,
    Kindly give solution to the below scenerio:
    The delivery is created each time the material is being send to the customer, But the customer requires a single invoice for all the delivery at the end of each month. How to address the scenerio.
    With regards,
    Afzal

    Hi ! Afzal,
    In the customer master record on the Sales Area Data, in the billing tab page, we have a field called Invoice dates.
    In that field, if you maintain a Factory Calender which has a set up of the dates, monthly one of the days, you can achieve your requirement.
    In the standard system for such a requirement Factory calender 'AM' is available. So fill in the field mentioned with Factory Calender 'AM - Agreement Monthly'.
    Now when you run Billing due list, all the deliveries that have been executed during the month will be available in billing due list only at the end of the month for this customer. Billing due list will be as regular for other customers. In this way, deliveries can be combined.
    Regards,
    PATHIK

  • Multiple Deliveries into one Billing document  Based on the Shipment Number

    Hi,
    After searching, am posting this thread.
    I know the Invoice Slipt Parameters but i need to stop one invoice slipt parameter i.e. Billing Date.
    My Requirement:
    2 deliveries are created with different Billing Dates and attached to a single shipment.Now i want to combine these deliveries into single invoice based on the shipment number..
    Please put some ideas tht can help me  to solve this..
    Thank you in Advance.
    Edited by: Aditya Roy on Mar 13, 2009 8:11 AM

    Hi
    Payer
    Payment terms
    Billing date or billing due date
    Destination country
    Billing doc type
    Incoterms
    Actual GI date
    Foreign data trade
    If these are same in all delivery documents they can be combined into single billing
    This is controlled in copy controls in VTFL choose del type and billing type and your item category
    In that VBRK/VBRP if you choose 001 combined billing will happen
    In VF04 you can do the billing or in VF01 you have to input all the delivery nos manually and do the combined billing
    The same qn was posted by you on NOV 21st with so many replies?
    Why are you posting again and again?
    Pls close the thread whereever possible
    Regards
    Raja
    Edited by: ramanathan raja on Dec 14, 2008 5:00 PM

  • Scanning multiple pages into single document

    Is there a way to scan multiple pages into single document?  I am using the following: HP pavilion laptop with windows 8,  HP photosmart C6380 all in one printer scanner copier.

    Hi,
    Please try
    Double click printer icon on desktop,
    Select Scan a Document or Photo,
    Put the first page on the glass (face down),
    Check options (size, dpi ...), and select Scan document to file,
    Click Scan - machine will scan the first page
    Remove the first page on the glass, put the second page,
    Click + (plus sign) It sits on the left hand side of a red x
    Machine will scan the second page, put 3rd page on the glass and click + again ..... to the end then click Save
    Click Done after Save
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to Pass multiple parameter into single store procedure

    How to Pass multiple parameter into single store procedure
    like a one to many relationship.
    it is possible then reply me immediatly

    you mean like this .....
    CREATE OR REPLACE procedure display_me(in_param in varchar2,in_default in varchar2 := 'Default') is
    BEGIN
    DBMS_OUTPUT.put_line ('Values is .....'||in_param || '....'||in_default);
    END display_me;
    CREATE OR REPLACE procedure display_me_2 as
    cnt integer :=0;
    BEGIN
    For c1_rec In (SELECT empno,deptno FROM test_emp) Loop
         display_me(in_param => c1_rec.empno);
         cnt := cnt+1;
         end loop;
         DBMS_OUTPUT.put_line('Total record count is ....'||cnt);
    END display_me_2;
    SQL > exec display_me_2
    Values is .....9999....Default
    Values is .....4567....Default
    Values is .....2345....Default
    Values is .....7369....Default
    Values is .....7499....Default
    Values is .....7521....Default
    Values is .....7566....Default
    Values is .....7654....Default
    Values is .....7698....Default
    Values is .....7782....Default
    Values is .....7788....Default
    Values is .....7839....Default
    Values is .....7844....Default
    Values is .....7876....Default
    Values is .....7900....Default
    Values is .....7902....Default
    Values is .....7934....Default
    Values is .....1234....Default
    Total record count is ....18

  • Convert  multiple rows into single rows for the respective index name

    Dear Experts,
                             I want to convert  multiple rows into single rows for the respective index name,
                            Here is my query.
    SELECT user_tables.table_name, user_indexes.index_name, user_ind_columns.column_name
    FROM user_tables
    JOIN user_indexes on user_indexes.table_name = user_tables.table_name
    join USER_IND_COLUMNS on USER_INDEXES.INDEX_NAME = USER_IND_COLUMNS.INDEX_NAME
    where user_indexes.index_name not like '%PK%' AND user_ind_columns.column_name NOT LIKE '%SYS%'
    ORDER BY user_tables.table_name,user_indexes.index_name;
    Result of previous query
    TABLE_NAME
    INDEX_NAME
    COLUMN_NAME
    T1
    IDX_ACCNTYPCFG1
    ENABLE_SERVICE
    T1
    IDX_ACCTTYPCFG1
    ACC_CODE
    T1
    IDX_ACCTTYPCFG1
    ACCTYPE
    T2
    IDX_ACCTTYPCFGAPP1
    ACCTYPE
    T3
    IDX_ACTLG1
    MOBILE_NO
    T3
    IDX_ACTLG1
    ID
    Desired output required is
    TABLE_NAME
    INDEX_NAME
    COLUMN_NAME
    T1
    IDX_ACCNTYPCFG1
    ENABLE_SERVICE,ACC_CODE,ACCTYPE
    T2
    IDX_ACCTTYPCFGAPP1
    ACCTYPE
    T3
    IDX_ACTLG1
    ACCTYPE,MOBILE_NO
    please help.

    Maybe
    with
    user_tables as
    (select 'T1' table_name,'IDX_ACCNTYPCFG1' index_name,'ENABLE_SERVICE' column_name from dual union all
    select 'T1','IDX_ACCTTYPCFG1','ACC_CODE' from dual union all
    select 'T1','IDX_ACCTTYPCFG1','ACCTYPE' from dual union all
    select 'T2','IDX_ACCTTYPCFGAPP1','ACCTYPE' from dual union all
    select 'T3','IDX_ACTLG1','MOBILE_NO' from dual union all
    select 'T3','IDX_ACTLG1','ID' from dual
    select table_name,
           case index_name when 'IDX_ACCNTYPCFG1' then 'IDX_ACCTTYPCFG1' else index_name end index_name,
           listagg(case column_name when 'ID' then 'ACCTYPE' else column_name end,',') within group (order by null) column_name
      from user_tables
    group by table_name,case index_name when 'IDX_ACCNTYPCFG1' then 'IDX_ACCTTYPCFG1' else index_name end
    TABLE_NAME
    INDEX_NAME
    COLUMN_NAME
    T1
    IDX_ACCTTYPCFG1
    ACCTYPE,ACC_CODE,ENABLE_SERVICE
    T2
    IDX_ACCTTYPCFGAPP1
    ACCTYPE
    T3
    IDX_ACTLG1
    ACCTYPE,MOBILE_NO
    Regards
    Etbin

  • Merge multiple rows into single row (but multiple columns)

    How to merge multiple rows into single row (but multiple columns) efficiently.
    For example
    IDVal IDDesc IdNum Id_Information_Type Attribute_1 Attribute_2 Attribute_3 Attribute_4 Attribute_5
    23 asdc 1 Location USA NM ABQ Four Seasons 87106
    23 asdc 1 Stats 2300 91.7 8.2 85432
    23 asdc 1 Audit 1996 June 17 1200
    65 affc 2 Location USA TX AUS Hilton 92305
    65 affc 2 Stats 5510 42.7 46 9999
    65 affc 2 Audit 1996 July 172 1100
    where different attributes mean different thing for each Information_type.
    For example for Information_Type=Location
    Attribute_1 means Country
    Attribute_2 means State and so on.
    For example for Information_Type=Stats
    Attribute_1 means Population
    Attribute_2 means American Ethnicity percentage and so on.
    I want to create a view that shows like below:
    IDVal IDDesc IDNum Country State City Hotel ZipCode Population American% Other% Area Audit Year AuditMonth Audit Type AuditTime
    23 asdc 1 USA NM ABQ FourSeasons 87106 2300 91.7 46 85432 1996 June 17 1200
    65 affc 2 USA TX AUS Hilton 92305 5510 42.7 46 9999 1996 July 172 1100
    Thanks

    Hi,
    That's called Pivoting . The forum FAQ has a section on this subject: {message:id=9360005}
    I hope this answers your question.
    If not, post your best attempt, along with a little sample data (CREATE TABLE and INSERT statements, relevant columns only), and also post the results you want from that data. (You did post the results you wanted, but they're very hard to read because they're not formatted. Use \ tags, as described in the forum FAQ, below.)
    Explain, using specific examples, how you get the results you want from the data given.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).  This is always important, but especially so with pivots.
    See the forum FAQ {message:id=9360002}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Multiple delivery into One invoice

    Dear All
    Issue regarding multiple delivery into one invoice
    1 When i am creating multiple delivery doc into one invoice, its possible for domestic[local sales] but when i am creating multiple delivery doc into one invoice for export it is not possible.
    I have checked with the threads and tried it out with copy control with VBRK/VBRP [001/003/004]
    Is there any specific customization for exports?
    Regards
    Sandeep Bhowmick

    Dear Lakshmipati
    As per your instruction i have done the split analysis:
    split analysis:
    Split due to different header data
    Field Name                           :$00000001           $00000002
    Number of foreign trade data      : 0000000266         0000000267
    The invoice is generating against one delv document, it could not be combined. In copy control any changes i have to make
    Regards
    Sandeep Bhowmick
    Edited by: Sandeep Bhowmick on Jan 17, 2009 7:33 AM
    Edited by: Sandeep Bhowmick on Jan 17, 2009 7:34 AM

  • How can i import the data from multiple sources into single rpd in obiee11g

    how can i import the data from multiple sources into single rpd in obiee11g

    Hi,
    to import from multiple data sources, first configure ODBC connections for respective data sources. then you can import data from multiple data sources. When you import the data, a connection pool will create automatically.
    tnx

  • Convert Multiple Deliveries into one PRO Forma Invoice

    Hi,
    I need to create a single PRO FORMA invoice for all the multiple deliveries for a single single Customer.
    1. Which Copy control do I have to do it?
    2. Should I do at Header or Item Level?
    3. What are the Config settings required to do this?
    4. What kind of checks to be done in this process?
    I checked the Copy control in SPRO in Pro Form Invoice (F8) for Delivery: Its 009.Looks like this is Header level.
    Thanks
    Kiran

    Hi Shiv ram,
    Thanks for ur reply..
    As per your reply:
    In VF01, enter the delivery documents and click on enter button. Then go to Menu - Environment -> split analysis.
    I didnot find this option in VF01. Am in 4.7EE.
    If the reason is foreign trade data, then I suggest in the copy control (transaction VTFL) for billing document (proforma invoice), put the following values;
    You are right to some extent. Once this Proforma Invoice is created, I need to move this data to GTS system.
    For determine export data - 'B' Redetermine the export data
    For Allocation number and Reference number fields - 'E' - Actual billing document number.
    I didnot understand any thing in this.
    Can you please provide more clearity.
    Thanks
    Kiran

  • Combining 2 del. into single invoice

    Hi frnds.
    I want to make single invoce of two. del.
    Every thing is same like payer, billing date,etc.
    Is there any setting I have to do in copy control.
    please help me.
    Thanks
    Sunil

    <b>Billing document consolidation</b>
    For collective/ consolidation of billing when all the relevant data is equal ,the system can conbine multiple deleveries  or sales document into one invoice.
    <b><i>This is maintained by using factory calendar & copying rules</i></b>.
    <i>To create consolidated invoicing for a customer,first define factory calendar the payer is using and then assign to billing view of the customer master record for payer. The billing calendar may indicate you one day of week is working day,thus system only propses only that day for billing but system will allow u for creating sales orders and deleveries on remaining days also.</i>
    <b>Copy control  from delivery type LF to billing type F2</b>
    <i>Apart from regular setting the data that is important to an invoice splitting or invoice combination is the entry in the field data VBRK\VBRP.
    To create splitting rule, proceed to VOFM and select data transfer,billing documents.
    Copy the std. 001-Inv Split . This is done by overwriting the number  such as type 900 over 001 and press enter.</i>
    For further reference you can take help of  <u><i><b>Williams SD book</b></i></u> -Page No. 166
    <b>Consildated Invoicing & Copy Control for Billing Dcoument</b>
    I am sure this will resolve your problem.
    Best Regards
    Sainath

  • Purchase in Foreign Currency with Multiple GR but single Invoice - URGENT

    Question on the following scenario:
    - Purchase order is foreign currency. 
    - Multiple goods receipts posted against the PO on different dates.  Goods receipts will follow the posting date for the exchange rate.
    - Single invoice receipt for the multiple goods receipts
    We need the invoice to not result in exchange rate differences for all the line items.  If it was just a single GR, we can change the IR header exchange rate to be equal to the GR exchange rate.  The problem is for multiple GRs with multiple exchange rates.
    Thanks for your help!

    Hi Chok,
    You can activate the functionality of Price Exchange Rate diffrence at the time of IV instead of GR and hence if there is any diffrence at the time of LIV that is to be accounted and the GR is posted as the PO price without any exchange diffrence.
    Try it!

  • Multiple rows into single pipe delimited row ........

    Hi All
    I have the following data in multiple columns which needs to be converted into single pipedelimited row.
    Followinf is the example:
    DEPTNO ENAME
    ===== =====
    10 A
    10 B
    10 C
    Now my requirement is in output i should be able to display A|B|C|.........
    Note : The number of rows for any DEPTNO are not constant.
    Thanks,
    kalyan Kumar P

    Hi,
    I tried but it is not throwing error that "Invalid Identifier" and moreover you told it is undocumentes
    please tell me what i need to do to to make "wm_concat" work.If there is any alternate also please let me know.In your database WMSYS user is not created that is why you are not getting 'wm_concat' function.
    Create WM_CONCAT function with this
    CREATE OR REPLACE TYPE BODY wm_concat
    IS
       STATIC FUNCTION odciaggregateinitialize (sctx IN OUT wm_concat)
          RETURN number
       IS
       BEGIN
          sctx :=   wm_concat (NULL);
          RETURN odciconst.success;
       END;
       MEMBER FUNCTION odciaggregateiterate (self IN OUT wm_concat, p1 IN varchar2)
          RETURN number
       IS
       BEGIN
          IF (curr_str IS NOT NULL)
          THEN
             curr_str :=   curr_str || ' , ' || p1;
          ELSE
             curr_str :=   p1;
          END IF;
          RETURN odciconst.success;
       END;
       MEMBER FUNCTION odciaggregateterminate (self IN wm_concat, returnvalue OUT varchar2, flags IN number)
          RETURN number
       IS
       BEGIN
          returnvalue :=   curr_str;
          RETURN odciconst.success;
       END;
       MEMBER FUNCTION odciaggregatemerge (self IN OUT wm_concat, sctx2 IN wm_concat)
          RETURN number
       IS
       BEGIN
          IF (sctx2.curr_str IS NOT NULL)
          THEN
             self.curr_str :=   self.curr_str || ' , ' || sctx2.curr_str;
          END IF;
          RETURN odciconst.success;
       END;
    END;
    CREATE OR REPLACE FUNCTION wm_concat (p1 varchar2)
       RETURN varchar2
       AGGREGATE USING wm_concat;
       After creating this function try this query
    SELECT REPLACE (wm_concat (ename), ',', '|') ename FROM emp;Let me know if problem persist.
    Regards,
    Mahesh Kaila

  • To Combine Multiple STOu2019s into Single Delivery

    Hi,
    What are the configuration settings to be done to combine multiple STOu2019s into one single delivery in VL10B. 
    My requirement is to combine multiple STOu2019s contains different DELIVERY DATES and having SAME SUPPLYING AND RECEIVING PLANT into one single delivery.
    Thanks & Regards,
    Victor.

    Hi
    Delivery in STO is created for single order and for same delivery date, same delivery no. for different delivery date and  for multiple STO is not possible and its not logically correct,since after creation of delivery you will be doing picking and packing and Goods Issue.
    Please check
    Kishor

  • Multiple Deliveries into one Billing document

    Hi Gurus,
    Can any of you provide me the process how to combine multiple delivery documents into one Billing document.
    .Thanks
    Yuvraj.V

    Hi
    Payer
    Payment terms
    Billing date or billing due date
    Destination country
    Billing doc type
    Incoterms
    Actual GI date
    Foreign data trade
    If these are same in all delivery documents they can be combined into single billing
    This is controlled in copy controls in VTFL choose del type and billing type and your item category
    In that VBRK/VBRP if you choose 001 combined billing will happen
    In VF04 you can do the billing or in VF01 you have to input all the delivery nos manually and do the combined billing
    The same qn was posted by you on NOV 21st with so many replies?
    Why are you posting again and again?
    Pls close the thread whereever possible
    Regards
    Raja
    Edited by: ramanathan raja on Dec 14, 2008 5:00 PM

Maybe you are looking for

  • Consuming MII WebService in Java WebDynpro

    Hello, We are facing a strange situation... We define a transaction in MII to be consumed as WebService in Java WebDynpro. This transaction is a simple query on a DB returning 4 fields : Shift code : SHIFT Shift description : DESCRIPTION Start time :

  • IOS RD Client Remote Resources "Failed to Parse RDP Configuration"

    I encounter the error below when attempting to connect to Remote Resources. This worked perfectly yesterday but hasn't at all today. I removed and added the RemoteApp entry on the 2008 R2 server but continue to encounter this error. Any help is great

  • How to extract in the ALV output the old data using EXTRACT

    Dear Friends,             I have requiremnt where the user executes the report - using REUSE_ALV_GRID_DISPLAY  FM.  On the output i have given an option to user to edit values on the output. So user will edit the values and updating  to the data base

  • Need help - nokia 6600 fold

    Hi, have had nokia 6600 fold for couple of years - love it ! no probs, but have just found a strange symbol on  screen which ive never seen before ? Its a yellow message envelope  which spins and then becomes what loooks like a paper clip ? Cannot fi

  • Kodak versus Shutterfly Print Quality

    [Thought I posted this yesterday, but can't find it; apologies if duplicative.] Although I want the convenience of creating albums and ordering prints of point-and-shoot snapshots through PE 4 from the Kodak Easy Share Gallery, after a test I noticed