Problem with Billing date while creating Billing Document

According to the factory calendar maintained at the client side every Saturday is a holiday. Due to  this, the billing date for every Billing Document (vf01)  created on Saturdays gets pushed to Monday's date..  I tried using VOFM routine 011 to default the billing date (vbrk-fkdat) to system date.I have assigned the same in copy control.. But this does not work. Any suggestions?

hello,
This is a standard flow and if you want to tamper that, need to change in standard SAP...which I would not recommend you...
Please use a separate factory calender for that particluar site...
Thanks..

Similar Messages

  • Changing billing document date while creating billing document from vf01

    Hi gurus,
    I have requirement to change billing doc date while creating billing document from VF01.
    here I have to consider goods issue date eq billing date.
    caluculating billing date = Goods Issue + Goods in Transit duration time.
    I have done everu thing but I cant update the caluculated date, iam using the following enhancement
    Enhancement:SDVFX001
    Function Module:EXIT_SAPLV60B_001
    Include:ZXVVFU01 which are part vf01.
    here iam sending the calculated date to VBRK-FKDAT
    move cal_date to vbrk-fkdat.
    need help how to update the calculated date to VBRK-fkdat i.e billing document date
    Regards
    Bhaskar

    Hi
    No! That exit is not good for your issue
    U can use the user-exit USEREXIT_NUMBER_RANGE_INV_DATE  defined in RV60AFZC
    Max

  • Easy DMS cannot use additional data while creating a document

    Hello,
    We have installed sap easy dms 7.0
    We have a problem while creating a new document with SAP Easy DMS.
    On the DIR tab the additional data cannot be used.
    Do I have to change a registry setting?
    We already have defined classes and their features and values in CL02 en CT04
    please help
    Geert ter Harmsel

    Hi,
    Additional functions for object links active Indicator controls the activation of additional functions for the links of objects to this document type.
    You can activate the following additional functions for an object to document link:
    1) Valuation
    Additonally, you can link another object to a chosen database table (See example Additional Object).
    You can delete the additional information of an object link.
    2) Classification
    You can classify the link. You must create a class (class type 048 - object link) with the characteristics that you want to specicify for the link (For example, responsibility, organaization).
    When you set the indicator these functions are active during processing of the document info recod, register object link.
    Hope this is what you are looking for.
    Regards,
    Deepak Kori

  • Problem in getting data while creating public template shopping cart(urgen)

    Hi Gurus,
    I am technical guy...Could you please suggest me how to populate the purchase organisation details(be_pur_org) which is of type bbps_sc_app_item.
    The problem is while creating normal shopping cart template it is displaying the vendor and inforecord details..when I use the same data for creating the public shopping cart it is not displaying the values (vendor and inforecord details) this is due to the missing of purchase organisation field value which is populated in the field be_pur_org which is of type bbps_sc_app_item.
    Is there any badi's to populate the purchase organisation details...?
    awaiting for all your replies..points will be rewarded with lots of appreciation
    Thanks & Regards,
    Ravi Ganji

    Hi
    <u>You can use either of the BADIs depending on your requirement.</u>
    BAdI Definition Name Description                                                                               
    BBP_PGRP_ASSIGN_BADI EBP Purchasing Documents: Assign Purchasing Group(s)       
    BBP_PGRP_FIND        Shopping Cart: Determine Responsible Purchasing Group(s)                                                                               
    BBP_DOC_CHANGE_BADI
    BAdI for Changing EBP Purchasing Documents
    <b>Please read the Standard documetation available with them using SE18 transaction in SRM system.</b>
    Which SRM version you are using ?
    Hope this will help.
    Please reward suitable points.
    Regards
    - Atul

  • Problem with BOM Quant while creating Sales order with reference using BAPI

    Dear All,
    I am facing problem with creating a slaes order with reference to other sales order by using BAPI_SALESORDER_CREATEFROMDAT2 .
    Sales order is getting created but
    1. It exploding the BOM means the line items which are not there in the reference SO also coming in the new SO ( all BOM items are coming )
    2. Schedule line for BOM header item is getting copied to all sub items of BOM.
    Can any one help me out to prevent the above deviations in creating Sales order with reference by using BAPI_SALESORDER_CREATEFROMDAT2.
    Note: while passing the parameters to BAPI_SALESORDER_CREATEFROMDAT2
    all the data related to items is exactly the same as in the original Sales Order.
    Thanks in advnace.
    Regards,
    John

    Hi All,
    Can any one help me !!!!!!!!!!
    please

  • Problem with FM MB_CREATE_GOODS_MOVEMENT while creating GRI .

    Hi All,
    I am facing an issue with FM MB_CREATE_GOODS_MOVEMENT. I am using FM MB_CREATE_GOODS_MOVEMENT to create
    material document (Doing GRI) with ref to a delivery document . FM sucessfully creating Material doc but it is not updating delivery document status(from open to completed).
    Regards
    Rahul

        READ TABLE git_header_temp INTO gwa_header WITH KEY vbeln = gwa_final1-vbeln.
        LOOP AT  git_item INTO gwa_item WHERE vbeln = gwa_final1-vbeln.
          READ TABLE git_detail INTO gwa_detail WITH KEY vbeln = gwa_item-vbeln
                                                         matnr = gwa_item-matnr.
      IF sy-subrc EQ 0.
            MOVE : gwa_detail-vbeln TO lwa_item-deliv_numb,
                   gwa_detail-posnr TO lwa_item-deliv_item,
                   gwa_detail-vbeln TO lwa_icontrol-deliv_numb,
                    gwa_detail-posnr TO lwa_icontrol-deliv_item,
                   gwa_detail-vbeln TO lwa_ispecial-deliv_numb,
                   gwa_detail-posnr TO lwa_ispecial-deliv_item.
          ENDIF.
    READ TABLE git_mchb INTO lwa_mchb WITH KEY matnr = gwa_item-matnr
                                                     charg = gwa_item-charg.
          IF sy-subrc EQ 0.
            lv_gross_weight = lwa_mchb-ptare + lwa_mchb-clabs.
    IF sy-subrc EQ 0.
            lv_gross_weight = lwa_mchb-ptare + lwa_mchb-clabs.
            MOVE : lwa_mchb-matnr   TO lwa_item-material,
                   lwa_mchb-charg   TO lwa_item-batch,
                   lwa_mchb-clabs   TO lwa_item-dlv_qty,
                   lv_gross_weight  TO lwa_item-gross_wt,
                   lwa_mchb-clabs   TO lwa_item-net_weight,
                   gwa_detail-gewei TO lwa_item-unit_of_wt,
                   gwa_detail-umrev TO lwa_item-conv_fact,
                   gwa_detail-umvkz TO lwa_item-fact_unit_nom,
                   gwa_detail-umvkn TO lwa_item-fact_unit_denom,
                   lwa_mchb-clabs   TO lwa_item-del_qty_flo.
            APPEND lwa_item  TO lit_item.
    MOVE : lwa_mchb-lgort TO lwa_ispecial-stge_loc.
            APPEND lwa_ispecial TO lit_idataspl.
            lwa_icontrol-chg_delqty = gc_x.
            lwa_icontrol-net_wt_flg = gc_x.
            lwa_icontrol-gross_wt_flg = gc_x.
            APPEND lwa_icontrol TO lit_icontrol.
            MOVE : gv_mandt        TO lwa_idetail-mandt,
                   gwa_item-charg  TO lwa_idetail-charg,
                   gwa_item-zpicid TO lwa_idetail-zpicid,
                   gwa_item-matnr  TO lwa_idetail-matnr,
                   gwa_item-zldno  TO lwa_idetail-zldno,
                   gwa_item-tknum  TO lwa_idetail-tknum.
            lwa_idetail-zstats = 'PICKED'.
            APPEND lwa_idetail TO lit_idetail.
          ENDIF.
          CLEAR : lwa_idetail,
                  lwa_vbpok,
                  lv_gross_weight,
                  lwa_item.
        ENDLOOP.

  • Problem with Account Group while creating a Customer

    Dear Friends,
    I am trying to create a customer with a specific Account Group. But when I try to save this customer I get an error message
    Acct group XXX uses internal no.assignment; leave blank.
    I have copied my account group (XXX)  from 001 Sold-to-Party.
    Request you to please guide me why this error is and what is the resolution for the same.
    Regards,
    Lalit Kabra
    PS : Pardon me for basic question as I am  trying to learn SD.

    Hi,
       This error means this Account group has the number range which is internal(Sold to party has the Internal assignment only). This means system gives the number automatically. If you want to use your own numbers ,them you change the assigned number range, go to "OVT0" and select the number range which is external. This should solve your problem.
    Regards
    Ram Pedarla

  • Problem with Changing Data while Import through Excel Sheet

    Hi Experts,
    I am new to SAP LUMIRA and I am facing an issue with it. Actually, I am importing the data for analysis from an Excel sheet into SAP LUMIRA. I am able to prepare the visualization in the first go. But If I am changing the number of columns in the excel sheet afterwards (that may occur in normal circumstances where data is dynamic) and then refreshing the LUMIRA dashboard, it fails. Please can you tell me about a possible mistake or is it really feasible when we change data afterwards and then refresh the dashboards once again.
    Looking forward to your answers.
    Regards,
    Aman

    What is the error message?
    Can you confirm you are using 1.15.1?

  • Problem with Populating data while cascading dynamic parameters

    <p>Hi</p><p>I have a Crystal Report 11 connecting to Oracle stored Procedure. The report has 6 input parameter fields which come from the procedure.So when the report is opened i see 6 static parameter fields.</p><p>Now Parameter 3 has to populated depending on selection of Parameter 2 and Parameter 2 should populate depending on selection of Parameter 1.</p><p>So I changed these parameters to dynamic and followed all the instructions mentioned in CR11_UserGuide.pdf from internet.</p><p>But no values are populated in my Parameter 1.</p><p>If i use a View with the report, then it works.</p><p>Please help.</p>

    Thanks Rahul,
    Â I could fix the issue by using Command Objects

  • Problem With OAM10g URL while Creating Policy

    we are trying to protect a resource in OAM 10g for this we have created policy in that resource tab. we are not getting the URL which we mentioned in Host Identifier. Instead of the URL mentioned in Host Identifier we are getting the following URL.
    our URL is appearing ---- dc%3d%testdc%2d%com...
    Edited by: Arii on Aug 24, 2012 8:15 AM

    URL prefix appearing under resource tab, is not because of Host identifiers. It is because of configuration you done during Policy Manager setup (after installing Policy Manager). During configuration, it asks for policy domain URI prefix and by default its value is /
    Refer your installation and verify.

  • Change Scheduled Billing date while Bill Order creation

    Hi,
    I have requirement where I need to change the scheduled billing date while creating a Bill Order.
    I have tried to implement a BADI : ISU_INTERVAL_CHECK for same via transaction code EL01.
    There is an issue with the custom BADI created as the changing parameter of this BADI (txy_etrg) does not update the
    Scheduled billing date even after modification of scheduled billing date.
    Note : I have checked in debugger that changing parameter structure txy_etrg becomes an internal table outside BADI and does not contain the updated scheduled billing date.
    Kindly guide how this issue can resolved.
    It would be helpful if anyone can help with other BADIs or user exits which I can use to change the scheduled billing date.
    Thank you in advance!

    Hi,
    Sorry, I can't really help, but I'm genuinely puzzled, why anyone putting out such a requirement believes:
    1) something like that (orders deviating from schedule) should work in the first place, and
    2) anybody besides SAP's "IS-U  team" itself should be in a position to implement something like this without breaking something in the system.
    I may be wrong, but everything I know about IS-U tells me - the 'right' way would be to 'reschedule' billing date via portion/schedule record, prior to creation of orders.
    cheers
    Janis

  • Create Excise invoice(J1IIN) document while creating billing document using bapi BAPI_BILLINGDOC_CREATEMULTIPLE

    Dear Experts,
    My scenario is:
    We have batch split scenario, where the parent line item of billing document has 0 quantity and its subsequent item (item with batch number) holds actual quantity data.
    When we create billing document using VF01 against delivery document, system creates billing document along with excise invoice document (J1IIN Document). And in excise document contain same number of line items that of billing document. Please see the below attachment: 
    Biiling document screen shot:
    While creating billing document, the J1IIN Document created automatically. Below is the screen-shot for the same.
    Now the issue is:
    When we create billing document using BAPI: BAPI_BILLINGDOC_CREATEMULTIPLE system creating only billing document and not creating excise invoice document.
    When we create excise document manually using J1IIN the zero quantity line items are excluded in excise invoice document.
    Please see the below screen-shot for the same; The z quantity line items are missing.
    We want excise document to be created while creating billing document using BAPI BAPI_BILLINGDOC_CREATEMULTIPLE. Or is there any other BAPI for the same purpose.
    Customization is also maintained for creating excise invoice document automatically.
    Regards,
    Rajesh Sadula.

    HI
      Pricing will be carried basing on the pricing
    procedure.
    Case1: Prices will be carried out automatically if
    necessary condition records are maintained for the
    condition type.
      For this you can go to Sales Order-> Item Conditions
    In the screen you can click on command button Analysis,
    which gives you the list of condition types associated
    to the pricing procedure. By clicking on the condition
    type you can know the action that has taken place.
    Case2: Manually forcing prices for Items.
      To do this, you have to populate ORDER_CONDITIONS_IN &
    ORDER_CONDITIONS_INX. Also note to identify the item
    numbers, you manually pass the item number for each item
    in the sales order, use the same item number for
    populating conditions.
      Parameters required:
    ORDER_CONDITIONS_IN:
      ITM_NUMBER, COND_TYPE, COND_VALUE, CURRENCY
    ORDER_CONDITIONS_INX:
      ITM_NUMBER, COND_TYPE, UPDATEFLAG, COND_VALUE,CURRENCY.
       Hope the above info helps you. Do revert back if you
    need more info.
    Kind Regards
    Eswar

  • Change in document type while creating billing document from sales order

    While creating billing document from Sales order it is creating with document type RV which is standerd one but i want to change Document type.
    How can i change it?
    Regards
    Raj

    Hi
    If you use another existing document type, check that it has a number range suitable to you.  Else create a new 'z' type and assign an entirely new number range, not used in the other doc types.
    It is useful to make the FI document number the same number.  If I understand from the forums, the FI number range must be external.  Search the forum for this.  It is very useful for the Finance people.
    Kind regards
    Dawn
    Edited by: Dawn Verrell on Sep 9, 2010 4:10 PM

  • Error while creating billing documents

    Hi,
      While creating billing documents I am getting error message as 
    Maintain customizing for excise and series group determination
    Message no. 8I619
    I have check the setting for CIN it is OK excise and series group are maintain properly so what can be the proble,
    regards,
    zafar

    Hi,
    Check once again customizing
    Maintain Series Group - In this IMG activity, you define the different excise series groups within your company. Series groups allow you to maintain multiple number ranges for the outgoing excise documents. Based on excise regulations and exemptions from the authorities you can maintain multiple number series for outgoing documents. But each of these series has to be declared to the excise authorities.
    - Define excise series groups based on type of outgoing document
    - Assign series group to excise registration ID
    - If no financial postings are required for an Excise invoice in this seris group then you tick the 'No utilization' indicator.
    - If the CENVAT has to be paid immediately and you need not wait for the Fort nightly payment then mark the 'Immediate Utilization' Iindicator. Example - You could define two series groups, group 001 for excise invoices, and group 002 for 57 F4 documents.
    - No account postings for CENVAT in sales cycle
    - No utilization Flag
    If you do not need any CENVAT utilization for an excise invoice but would like to just generate an excise invoice then you need to mark this indicator.
    If the flag is checked then system will create an Excise invoice in the given Series group but there will not be any account postings or Part2 postings.
    Immediate Utilization of CENVAT - Specifies that when you create an excise invoice, the system immediately pays the amount from CENVAT and creates the Part II entry. Such invoices will not be listed for fortnightly utilization.
    If you have both fortnightly and immediate utilization for the same excise group, the account determination within CIN IMG should point to the ED interim account.
    Thanks
    Chidambaram

  • Billing Date for Cancelled Billing Document

    I have billing document whose billing date is Mar-2008 and in header creation date is May-2005. When we checked the document flow it showing same billing document has been cancelled in My-2005 and also cancelled document date is May-2005.  This billing document is created for contract whose billing plan is valid till Dec-2008. When i checked the billing plan there I get the billing date which showing in billing document. Now my question is why cancelled billing document having current year billing date when it is cancelled in May-2005.
    Regards,

    Hi
    We have a option to change the billing documnet date under header details.
    1) Go  to VF02
    2) Enter billing document date
    3) Go to header deatils and change the billing date to current billing date
    4) save the document.
    Pts if ur problem gets solved
    RGDS
    B.JAGANATH

Maybe you are looking for