Billing plan date should be same as invoice date as per factory calendar

Hi,
We have two contracts, one is having billing plan material and another is having no billing plan material of same customer.When we go for the billing, as because these having all the header fields same it should give one single invoice of those two contracts,but its giving two invoices means the invoice splits.I check it and found, due to different billing date the invoice splits.If we go for VF04 we can force the billing date as same,but they are is a one batch running for this invoice.My invoice date of two contracts is 22.06.2014 which is factory calendar date and billing plan date is 26.06.2014 which is contract start date.My client is asking that can we get billing plan date same as invoice date as per factory calendar in standard to get single invoice? Kindly suggest me where is the settings.
Thanks in Advance
Regards,
Braja

Braja,
Check this
Goto  the billing plan tab in the corresponding line item and check the rule that is determined. Now go to the configuration of this rule table by using the path
SPRO>SD> Billing> Billing Plan> Define rules for determining dates and choose your Applicable rule and click on the details.
There you will see the Calendar ID field where you will have to maintain the applicable factory calendar. I think this should work and your billing date on the item relevant for billing plan should be the same as the other item.
Hope this helps,
Ravin

Similar Messages

  • Condition type date should be same to the pricing procedure date

    hi
    i have an problem
    the problem is that condition type date is not same to the pricing procedute date
    details of the problem
    1. created a sales order the pricing date is 01.04.2006
    2. when i go conditions in the sales order, as i go for details of the condition type date the is 04.04.2006
    this date should be same ie 01.04.2006
    give the solutions and relevant fields or procedure for this i will be greatful to all of u
    bye

    Braja,
    Check this
    Goto  the billing plan tab in the corresponding line item and check the rule that is determined. Now go to the configuration of this rule table by using the path
    SPRO>SD> Billing> Billing Plan> Define rules for determining dates and choose your Applicable rule and click on the details.
    There you will see the Calendar ID field where you will have to maintain the applicable factory calendar. I think this should work and your billing date on the item relevant for billing plan should be the same as the other item.
    Hope this helps,
    Ravin

  • Req. delivery date and Delivery date should be same in a sales order

    Hi experts,
    We need a customization for getting Requested delivery date, Material Availability date and Delivery date should be same.
    Example if I keep request delivery date as 12/12/2012, system should consider same dates for MAD and Delivery and confirm the requested quantity.
    How to achieve this customization..
    Thanks,
    Bala.

    system should consider same dates for MAD and Delivery and confirm the requested quantity
    What you are going to achieve by this?  Hope you know the concept of MAD and confirmed quantity fields.  Let us assume, if stock is not there for a material for which sale order is created, can you let me know, you want the system still to confirm the quantity? You can post the goods issue only if system confirms the quantity in schedule line which is possible, only if stock is made available.  If client asks something which is not possible in SAP, think in a logical way how SAP works and convince them accordingly. 
    G. Lakshmipathi

  • RE:Planning dates are coming earlier to Invoice dates

    Dear All,
    i Have one problem Planning dates are coming earlier to Invoice dates.
    In some cases our Invoice date is 19.02.2010 but planning date is coming
    as 07.02.2010 due to which our overdue receivables are becoming higher
    than the actual.
    If anyone have idea please replay.
    Regards.

    Hi,
    You may refer to SAP Note 24883 for determination of planning date.
    Trust this helps
    Cheers!!

  • End date should not less than Start date, else CLEAR it

    Hello
    I put CONTRACT START DATE and CONTRACT END DATE fields on the form. These 2 objects (Date/Time objjects) i pulled them from Satndard tab of pallette and dropped on my layout page design, fine.
    Now, am trying to put a validation that the end dat eshould not lower than start date, so, i got a thread as below from Niall,
    http://forums.adobe.com/message/1909551
    and i did my FormCalc coding under EXIT event of END DATE field as below,
    // Pls. note this FormCalc
    // End date should not less than Start date, else CLEAR it - Begin
    var stDate
    var endDate
    stDate = xfa.resolveNode("CUSTOMER.Page31_Contracts.Con_Whole_Page.CON_Basic_Info.CON_START_DATE") .rawValue
    endDate = xfa.resolveNode("CUSTOMER.Page31_Contracts.Con_Whole_Page.CON_Basic_Info.CON_END_DATE").r awValue
    if (stDate > endDate) then
        xfa.host.messageBox("End date is lower than Start date! End date is cleared")
        xfa.resolveNode("CUSTOMER.Page31_Contracts.Con_Whole_Page.CON_Basic_Info.CON_END_DATE").r awValue = null
    endif
    // End date should not less than Start date, else CLEAR it - End
    I tried in VALIDATE, CALCULATE, CHANGE events of END DATE, but nothing working!!
    PLs. let me kow how can i achieve my requirement? I am anewbie,
    Thank you

    If you use the exit event, you will probably have to have the same code on both the start and end date fields since they have a dependancy on each other. Maybe better to try the validate event of the end date so that if either field is changed the event gets fired. You can try the following for validate event
    // Pls. note this FormCalc
    // End date should not less than Start date, else CLEAR it - Begin
    var stDate
    var endDate
    stDate = CON_START_DATE.rawValue
    endDate = $.rawValue
    if ( HasValue(endDate) ) then
        if (stDate > endDate) then
            xfa.host.messageBox("End date is lower than Start date! End date is cleared")
            $.rawValue = null
        endif
    endif
    1
    // End date should not less than Start date, else CLEAR it - End

  • PR Date Should be less than PO date

    Hi
    I have done the change in message type to control PO date at the time of creation, now PO can be created only in current date but if at a later stage somebody has been created one more PR and change the PO and add one more line item from this PR then PR date is greater than PO date.
    So this is objectionable and I want to control this i.e. PR date should be less than PO date.
    Please guide how can i achieve this?
    Regards
    Ajay Goel

    Hello,
    Ajay if u you want to restrict the PO can be created only in current date then u can take help of your ABAPER because its possible through BADI.
    If you want to add the other line item in PO Or Use Tcode Me22n you can not change the document date that time bcoz its disable check it.

  • Contract End date should not less than Start date, else CLEAR it

    Hello
    I put CONTRACT START DATE and CONTRACT END DATE fields on the form. These 2 objects (Date/Time objjects) i pulled them from Satndard tab of pallette and dropped on my layout page design, fine.
    Now, am trying to put a validation that the end dat eshould not lower than start date, so, i got a thread as below from Niall,
    http://forums.adobe.com/message/1909551
    and i did my FormCalc coding under EXIT event of END DATE field as below,
    // Pls. note this FormCalc
    // End date should not less than Start date, else CLEAR it - Begin
    var stDate
    var endDate
    stDate = xfa.resolveNode("CUSTOMER.Page31_Contracts.Con_Whole_Page.CON_Basic_Info.CON_START_DATE") .rawValue
    endDate = xfa.resolveNode("CUSTOMER.Page31_Contracts.Con_Whole_Page.CON_Basic_Info.CON_END_DATE").r awValue
    if (stDate > endDate) then
        xfa.host.messageBox("End date is lower than Start date! End date is cleared")
        xfa.resolveNode("CUSTOMER.Page31_Contracts.Con_Whole_Page.CON_Basic_Info.CON_END_DATE").r awValue = null
    endif
    // End date should not less than Start date, else CLEAR it - End
    I tried in VALIDATE, CALCULATE, CHANGE events of END DATE, but nothing working!!
    PLs. let me kow how can i achieve my requirement? I am anewbie,
    Thank you

    http://forums.adobe.com/message/4264933#4264933

  • MIRO (Invoice Date) should be updated with Document date in MIGO Transactin

    Hi all,
              Please helo me in the issue . I need to replace the MIRO (Invoice Date) (INVFO-BLDAT)with Document Date in MIGO Transaction (MKPF-BLDAT). Can anyone suggest me the Userexit/ BADI for acheiving the same.

    Hi,
    We have same requirement that MIRO date should not be lesser than GRN date.  How could you solve your problem/
    rajeswari

  • VF11 - Billing Date should be defaulted with system date

    Hi All,
    My requirement is to default the System date in Billing Date for the transaction VF11.
    Please let me know whether any Exits/BADI exist for this.
    I tried to create the field exit but the problem is for this Billing Date field there is no Parameter ID , so how can I assign the todays date to Billing date field in VF11 else is there any other way to do this ????.
    Please do the needful.
    Thanks in advance

    hi ,
    below are the exits available for vf11. choose the most apprapriate one
    Transaction Code - VF11                     Cancel Billing Document                                                                               
    Exit Name           Description                                                                               
    SDVFX007            User exit: Billing plan during transfer to Accounting                                 
    SDVFX008            User exit: Processing of transfer structures SD-FI                                    
    SDVFX009            Billing doc. processing KIDONO (payment reference number)                             
    SDVFX010            User exit item table for the customer lines                                           
    SDVFX011            Userexit for the komkcv- and kompcv-structures                                        
    V05I0001            User exits for billing index                                                          
    V05N0001            User Exits for Printing Billing Docs. using POR Procedure                             
    V60A0001            Customer functions in the billing document                                            
    V60P0001            Data provision for additional fields for display in lists                             
    V61A0001            Customer enhancement: Pricing                                                         
    SDVFX001            User exit header line in delivery to accounting                                       
    SDVFX002            User exit for A/R line (transfer to accounting)                                       
    SDVFX003            User exit: Cash clearing (transfer to accounting)                                     
    SDVFX004            User exit: G/L line (transfer to accounting)                                          
    SDVFX005            User exit: Reserves (transfer to accounting)                                          
    SDVFX006            User exit: Tax line (transfer to accounting)                                                                               
    regads,

  • Billing plan value with reference to start & End date

    Hi Experts,
    Request your earliest support for the achieving the below requirement.
    Scenario:We have Billing plan set up for the all contracts - valid for one year.Monthly rental amount for each contract item is maintained as base price for the contract. When the billing plans starts in the middle of the month then, the billing value need to be calculated only for the relevant no of days in 'settlement' and 'To' date of billing plan. How to achieve this?     
    Net value of the contract item
    Net value of the item   102.00  GBP     
    Tax  for the item         15.30          
    Net value of billing plan for the contract item                                                                                .
    Item Net value  408.00                GBP                                                         
    Billing plan and contract validity details for contract item                                                                               
    Billing Plan Type - PM- Monthly in Advance                                    51- Monthly on First of                                                   
      Contract Start date       07/15/2009 (02)-Contract Start Date        Billing plan Dates from  07/16/2009  02                                    
      Contract plan End date 10/14/2009 (09)-Contract End Date          Billing plan Dates until 10/14/2009 09                                    
      Horizon -                                                                                Cal-Id - 01                                                                               
    Dates                                                                               
    Settlement       To                      Billing date         Bill.value    Crcy  Block  BillSt  Man.  Cor  PayT  DCat  Billing Ty  Price cal           
       07/16/2009      07/31/2009        08/01/2009         102.00       GBP   FA     A                                   01      ZC           01 -
    > This needs to calculated upon net value for 16 days only   
       08/01/2009      08/31/2009    09/01/2009              102.00       GBP   FA      A                                 01      ZC            01--->           between 07/16/2009 to 07/31/2009=102/31*16 = 52.65
       09/01/2009      09/30/2009   10/01/2009               102.00       GBP   FA      A                               01      ZC            01                  
       10/01/2009      10/14/2009    11/01/2009              102.00       GBP   FA      A                               01      ZC            01                                                                               
    Please suggest if this can be achieved through Billing plan configuration or any user exit that can be used to resolve the issue.
    Thanks,
    Priyabrata

    as far as I know there is NO such standard report.
    you would try to build sap query based on VBAK/VBAP using VBFA checking LIKP/LIPS and VBRK/VBRP...
    but you may request abaper for more professional report with MKPF/MSEG and BKPF/BSEG

  • MIRO Baseline Date should be same as GRN posting date.

    Dear sir.
    While doing MIRO, the Baseline date should come default date as GRN posting Date. who i can achieve this.
    Because in payment terms, the default baseline date is 1)no default 2)document date3)posting date4)entry date is there.with is it will not come.
    if any user exit or BADI is there Pl send sir.
    regards
    jayareddy

    Hi
    Base Line Date
    Not possible bt std sap.
    Vijay
    Edited by: Vijay on Apr 27, 2009 1:41 PM

  • Goods consumption document posting date should be same as POD confirmation

    Hi friends,
    The scenario is like this --- The delivery is POD relevant, after delivery consignment lending happens {movement type 631}, then GI is done. But, only after POD confirmation this GI document comes into this document flow and it can be seen as  goods consumption document {movement tyep 902} in the document flow.
    Now, user's problem is with the goods consumption document posting date.
    In VLPOD overview screen,  actual goods movement date is 02.01.2008 and customer has sent the user a confirmation of delivery on 02.01.2008 itself. But, user has updated this VLPOD on today's date ie. 18.01.2008 and user has kept the POD date as 02.01.2008 itself {backdated POD date}. Now, after POD confirmation, goods cosumption document is created. But, system is showing the posting date of this docuement as todays date ie. 18.01.2008. But, user requirement is that system should copy the POD confirmation date into the goods cosumption document posting date. So, how can this be achieved ? can be done with some customization setting or user exit is the only option ???
    Await your kind feedback....
    Hrishikesh

    Hi
    As per my understanding the system is working as per the client's requirement-which says.,
    "user requirement is that system should copy the POD confirmation date into the goods cosumption document posting date"
    Since the POD confirmation date is entered as 18.01, the system has taken 18.01 as the goods consumption posting date.
    If possible, please try that with different dates of POD confirmation.
    Thanks,
    Ravi

  • Basic date is not same with schedule dates

    Hi,
    I have a problem in MD04 stock requirement list.
    Planned order basic date and schedule date is not the same.
    The schedule date finish at year 2010 but basic date still end ad 2009
    in MD04, the date display is basic date.
    Why the basic date is not adjusted?
    in configuration i had choosen adjust basic date in scheduling planned order.
    In material master in house production time is not updated because we use lead time scheduling
    Please kindly help
    Best regards,
    Freddy Ha

    Hi,
    i omit the scheduling maergin key in material master,
    the result of MRP is
    BASIC DATES
    Finish 15.10.2009
    Start 14.10.2009
    PRODUCTION DATES
    15.02.2010 14:33:25
    14.10.2009 07:00:00
    scheduling type i planned order is still "backwards"
    so in MD04 it is say that the goods is available at 15.10.2009 same with requirement dates.
    this seem not right.
    it seems that order finish date is not adjusted by lead time scheduling on "today scheduling".
    Is there a way so order finish date is adjusted by lead time scheduling on "today scheduling" ????
    Best regards,
    Freddy Ha
    Edited by: Freddy Halim on Oct 14, 2009 10:01 AM

  • Delivery date should be equal to basline date

    Hi,
    I have created PO on 2nd and delivery taken place on 5th , IR is taken place on 7th.  Right now i want my baseline date in inoice is should be 5th as delivery date.  please help me in this.

    The base line date gets defaulted based on the payment terms , this is standard.
    If you want the delivery date as the base line date , then you need to use an Enhancement or BAdi to acheive the same.

  • FI Posting Date should be same of Sales Invoicing Date.

    Dear Experts,
    I have certain queries in mapping the below scenario:
    We are following the below sale cycle:
    Sales Order -> Delivery -> Goods Issue -> Invoicing (without releasing to Accounting) -> L.R. Entry -> Release to Accounting.
    As per above cycle, We have done Enhancement by creating customized L.R. Screen, once L.R. Entry is done, the system automatically generates Accounting Entry of invoice.
    But the problem is, For e.g. If Invoicing is done on 26th Feb and L.R. Entry is made on 5th of March (accounting also released with L.R).
    Posting Date of Accounting takes the date of L.R. Entry i.e. 5th March but it should take the date of billing i.e. 26th Feb.
    Need experts help to solve the above issue as it is very urgent.
    Regards,
    Ashutosh

    as you mentioned its customized screen....I suppose you can add this code in the enhancement points too...

Maybe you are looking for