Billing date of 2nd/4th saturday getting pushed to next working day.

whenever my client trying to create bill of service order, bills on 2nd/4th saturday, the billing date is getting pushed to next working day. I checked their calender, they have maintained 2nd/4th saturday as holiday in holiday calender. However the validity is only till 2009. But the bills are getting still getting pushed. Am not too keen on using validation, please help.

Hi,
Are they creating invoices thru back ground ( using batch job ) ? in this case in the holiday calendar 2n'd and 4'th saturday is holiday, so the system is proposing new work day. you have to check all the three calendars once again let me know.
Thanks,
Chandu.

Similar Messages

  • I cannot get push notifications to work for viber.

    Initially when I installed the Viber app I believe I ignored the push notification screen that the app was prompting me for. In all my endeavors to uninstall and reinstall I never did see this prompting screen again. I have tried everything suggested to get push notifications to work for this app but to no avail. I have reinstalled the app and rebooted my phone and uninstalled the app and rebooted the phone with every possible combination. I successfully sent push notifications from the suggested app Ipush test. I have a iPhone 4s. With latest software 5.0.1. I'll appreciate any suggestions. My carrier is Verizon.

    Hi,
    Which operating system are you running on?
    Are you upgrading from a previous version of Photoshop elements or is this your first?
    Are you trying to load the organizer or the editor or do both fail?
    Brian

  • How do I get push notifications to work again on my iPhone?

    How do I get push notifications to work again on my iPhone? After updating my IPhone I get told to connect to Itunes (probably the worst program ever created) to get push notifications. In iTunes there is nothing to click to get it working, no menu, nothing! Anyone with the same problem? Anyone with a solution???

    How are you doing this?  Are you trying to use Home Sharing?
    Each iDevice can only be synced by one computer.  You can choose to erase it and sync with another one computer.
    This may help,
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/HT4527

  • How can i get a number of working days in a month PL/SQL

    How can i get a number of working days in a month(excluding Saturday and Sunday) in a query in PL/SQL ?

    Please do a search before posting
    sql>
    select count(*)
    from(
    select trunc(sysdate,'month')+rownum-1 dy
    from all_objects
    where rownum <= last_day(sysdate) - trunc(sysdate,'month')+1)
    where to_char(dy,'fmday') not in ('sunday','saturday');
    COUNT(*) 
    23
    Message was edited by:
            jeneesh
    Please try yourself to change the query to one that doesn't use a subquery..                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Netdue date alteration with next working day

    Hi,
    I have one report for Accounts Receivables .
    In this when net due date falls on holiday, i need to shift this "net due date"  to a next working day.
    I have one FM "DATE_CONVERT_TO_FACTORYDATE" which i can use for the purpose.
    As a input to this FM we need to give Factory calendar ID which is an attribute to Infoobject 0PLANT.
    Unfortunately i do not have 0PLANT in my datamodel. But i do have 0COMP_CODE in my datamodel.
    As i do not have any link between Factory calendar ID and 0COMP_CODE i am searching for an appropriate solution so that i could use this FM to shift net due date to Next working if the net due date is an holiday.
    Any Ideas?

    Simran
    I am not sure if we can get a direct link from 0plant to 0comp_code, but you can enhance the master data of the 0company code to add the factory caledar and load them manually into 0plant.
    Let me know if this helps..
    Regards,
    Avinash

  • To get the list of working days-3 to working days+10 of every month

    Hi,
    I am looking for a query,which will give me the list of working days in a column (except Saturday and Sunday)ranging from
    [Working day- 3] to [Working day +10]of each month from (April 2014 ) till 2016 December.Could you please help me in achiving it.
    Note :Working day -3 means ,When the first working day of a month is [ 1st April ,Monday].
    So it has to result as March 27,28 and 29 as my last working days.
    Same logic applies for Working day +10(it needs to give total 10 dates,which excludes Saturday and Sunday)
    Regards,
    Ramesh

    DECLARE @monthDate datetime
    SET @MonthDate = '20140401'
    SELECT [Date]
    FROM
    SELECT [Date],ROW_NUMBER() OVER (PARTITION BY DATEDIFF(mm,0,[Date]) ORDER BY [Date]) AS Seq,
    ROW_NUMBER() OVER (PARTITION BY DATEDIFF(mm,0,[Date]) ORDER BY [Date] DESC) AS BSeq
    FROM dbo.CalendarTable(DATEADD(dd,- 10,@MonthDate),DATEADD(yy,2,@MonthDate),1,0)
    )t
    WHERE (Seq BETWEEN 2 AND 11 AND [DATE] > @MonthDate)
    OR BSeq BETWEEN 1 AND 3
    ORDER BY [Date]
    CalendarTable can be found here
    http://visakhm.blogspot.in/2010/02/generating-calendar-table.html
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • ABAP - Function module to get the number of working days between 2 days

    Hi gentlemen,
    I have been asked to produce a report that gives the number of working days between 2 days, based on a calendar.
    I didn't find anything...
    Has any of you already written a function module to get this ?
    A great thanks in advance.
    Jacques Lagrif

    Hi ,
    you can try this ,
    when you require the number of working days between D1 and D2
    Total No of Days will be
    D2 - D1
    No of holidays between D1 and D2 , use the FM HOLIDAY_GET
    Pass the From date , to date , and the factory calendar to get the of Holidays
    Total no of days - Number of Holidays will your Working days
    Regards,
    Sathya

  • Get the number of working days based on factory calendr for a range of mont

    Dear all,
    We are using BI7.00 . In one of our reports we have the following requirement.
    The range of months will be given in the selection screen for example 01.2008 to 11.2008, when the query is executed, i want system to calculate the number of working days for each month of the year (for what values provided in the selection field ) and display the same. i.e., as mentioned below.
    Month                         days.
    01.2008                        22
    02.2008                        18
    03.2008                        25  etc., Kinldy provide steps for adopting the same. If it can be adopted only through customer exit also provide the code and parameters that has to be used.
    Regards,
    M.M

    hi,
    Try the following logic to find out the no.of working days in a month based on your calendar.
    parameters : mny(6).    " input format should be  yyyymm
    data : d1 like sy-datum,
           d2 like sy-datum,
           d3 like sy-datum,
           v_nds type i.
    concatenate  mny '01' into d1.
    CALL FUNCTION 'SLS_MISC_GET_LAST_DAY_OF_MONTH'
      EXPORTING
        DAY_IN            = d1
      IMPORTING
        LAST_DAY_OF_MONTH = d2
      EXCEPTIONS
        DAY_IN_NOT_VALID  = 1
        OTHERS            = 2.
    IF SY-SUBRC <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    do 30 times.
      CALL FUNCTION 'DATE_CONVERT_TO_FACTORYDATE'
        EXPORTING
          CORRECT_OPTION      = '+'
          DATE                = d1
          FACTORY_CALENDAR_ID = ' A'    " your factory calendar ID
        IMPORTING
          DATE                = d3.
      if d1 = d3.
        d1 = d1 + 1.
        v_nds = v_nds + 1.
      else.
        d1 = d3.
      endif.
      if d3 ge d2.
        exit.
      endif.
    enddo.
    write : 'No of working days ', v_nds.
    hope it helps...
    regards,
    raju

  • How do I get push notifications to work correctly?

    Using Snow Leopard Server 10.6.8. I turned on the iChat and push notification servers, added myrealdomainname.com and mycanonicaldomainname.com and pubsub.mycanonicaldomainname.com to the iChat service host domains, and then turned on push notifications in the iCal service. But whenever I try making a change on the server using a third-party CalDAV client, iCal is running but is not notified of the change.
    The iChat server log says the service is logging in just fine:
    May 23 15:04:18 69 jabberd/c2s[62947]: [8] SASL authentication succeeded: mechanism=DIGEST-MD5; [email protected], TLS negotiated
    May 23 15:04:18 69 jabberd/c2s[62947]: od_auth_check_service_membership: checking user "com.apple.notificationuser" access for service "chat"
    May 23 15:04:18 69 jabberd/c2s[62947]: od_auth_check_service_membership: mbr_check_service_membership returned 2
    May 23 15:04:18 69 jabberd/c2s[62947]: od_auth_check_service_membership: no access restrictions found
    May 23 15:04:18 69 jabberd/c2s[62947]: [8] bound: [email protected]/icalserver.72bd94580b794782ac0eb9477c5dcef9
    May 23 15:04:18 69 jabberd/sm[62943]: session started: [email protected]/icalserver.72bd94580b794782ac0eb9477c5dcef9
    So, I set iCal's log level to "debug" and saw this error:
    2012-05-23 15:04:18-0700 [-] [notifications] 2012-05-23 15:04:18-0700 [XmlStream,client] [twistedcaldav.notify.XMPPNotificationFactory#debug] SEND: <presence/>
    2012-05-23 15:04:18-0700 [-] [notifications] 2012-05-23 15:04:18-0700 [XmlStream,client] [twistedcaldav.notify.XMPPNotificationFactory#debug] SEND: <iq type='get' id='H_7'><query xmlns='jabber:iq:roster'/></iq>
    2012-05-23 15:04:18-0700 [-] [notifications] 2012-05-23 15:04:18-0700 [XmlStream,client] [twistedcaldav.notify.XMPPNotificationFactory#debug] SEND: <iq to='pubsub.mycanonicaldomainname.com' type='set' id='H_8'><pubsub xmlns='http://jabber.org/protocol/pubsub'><publish node='/Public/CalDAV/myrealdomainname.com/8443/'><item><plistfrag xmlns='plist-apple'/></item></publish></pubsub></iq>
    2012-05-23 15:04:18-0700 [-] [notifications] 2012-05-23 15:04:18-0700 [XmlStream,client] [twistedcaldav.notify.XMPPNotificationFactory#debug] RECV: <iq xmlns='jabber:client' id='H_7' type='result'><query xmlns='jabber:iq:roster'/></iq>
    2012-05-23 15:04:18-0700 [-] [notifications] 2012-05-23 15:04:18-0700 [XmlStream,client] [twistedcaldav.notify.XMPPNotificationFactory#debug] RECV: <iq xmlns='jabber:client' from='pubsub.mycanonicaldomainname.com' id='H_8' type='error' to='[email protected]/icalserver.72bd94580b794782ac0eb9477c5dcef9'><error type='cancel' code='501'><feature-not-implemented xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/></error><pubsub xmlns='http://jabber.org/protocol/pubsub'><publish node='/Public/CalDAV/myrealdomainname.com/8443/'><item><plistfrag xmlns='plist-apple'/></item></publish></pubsub></iq>
    That's not a very descriptive error, and according to XEP-0060 (the publish/subscribe draft for XMPP), it is also an illegal error, because it doesn't really elaborate on what "feature-not-implemented" means.
    Has anyone run into this problem before, and if so, then what do I do to fix it?

    Bump. Nobody's ever run into this problem before?

  • 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..

  • 2nd and 4th Saturday is weekly off

    Hi Gurus,
    Can any one help me in  creating 2nd and 4th saturday days weekly offs for all the months.
    Thank you,
    Srinivas

    Hi,
    PLEASE TRY THIS
    As you are creating the Public holidays,Pick the radio button " with a fixed day from date " and mark your 2nd and 4th saturdays for the month as off days. generate your Holiday and Factory calenders and follow all the steps for 0007 configuration. Once done, generate the work schedules using PT01. U may get the desired result.
    Regards
    RR

  • Get previous bill date using SQL

    Hi,
    I am table which holds records for bill generation. I have column name gene_bill_date which is date field and it holds a value the date on which the particular bill was generated.
    Now I am trying to get previous bill date, not the current bill date. I can to Max(gene_bill_date) to get current bill date, but how do I get previous bill date?
    thanks

    Hi,
    Sorry, it's unclear what you're asking.
    You didn't post any sample data, so I'll use the scott.emp table to illustrate. Let's say we're interested in deptno=30 only, just to reduce the output from 14 rows to 6.
    If, for every row, you need to know the most recent gene_bill_date before the one on that row, you can do something like this:
    SELECT     ename
    ,     hiredate
    ,     LAG (hiredate) OVER (ORDER BY hiredate)     AS prev_hiredate
    FROM     scott.emp
    WHERE     deptno     = 30
    ;Output:
    ENAME      HIREDATE    PREV_HIREDA
    ALLEN      20-Feb-1981
    WARD       22-Feb-1981 20-Feb-1981
    BLAKE      01-May-1981 22-Feb-1981
    TURNER     08-Sep-1981 01-May-1981
    MARTIN     28-Sep-1981 08-Sep-1981
    JAMES      03-Dec-1981 28-Sep-1981Are you only interested in the 2 most recent dates in the whole result set?
    If so, do a Top-N Query , like this:
    WITH     got_r_num     AS
         SELECT     ename
         ,     hiredate
         ,     RANK () OVER (ORDER BY hiredate  DESC)     AS r_num
         FROM     scott.emp
         WHERE     deptno     = 30
    SELECT     *
    FROM     got_r_num
    WHERE     r_num     <= 2
    ;Output:
    ENAME      HIREDATE         R_NUM
    JAMES      03-Dec-1981          1
    MARTIN     28-Sep-1981          2 
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only), and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using.

  • Pass working day to get factory calendar date

    Hello Experts,
    I wish to get the factory calendar date, specific to a factory calendar, based on a working day.
    Basically, if i pass say 4, then i want to get the date for the 4th working day based on a specific factory calendar.
    Can someone throw some light on possible function module that i can use?
    Thanks

    I want to pass sy-datum to get factory date and then check if this factory date is the 4th busiess day for that month based on a specific calendar.
    Or if i can pass in 4th bus day for a month (just pass 4) based on a specific factory calendar (just pass calendar id), then i would want the factory date, which i want to compare against sy-datum in my subsequent logic.
    I am trying to trigger a data load stating if factory date for this month = 4th business day, then run load, else dont. And this in BW.
    I dont have the FM that you mentioned above, in BW and is available only in R/3

  • Change of Billing Date

    Hi -
    Okay, bare with me, please.
    I started a student Cloud subscription on Sep 6th of this year for $30/mo (one of the best thngs I've ever done). I got billed on the 6th, which was wonderful as I'm on a fixed income and get my check on the 3rd and always had the money in my account to pay you. Then in Nov, you had a special for students for $20/mo and I asked the forum if it would be possible to change my subscription to take advantage of the 30% discount you were offering students and was told that yes, that shouldn't be a problem. Well I didn't get all this sorted out until the 30th of Nov. My old student subscription, billed on the 6th, was "downgraded" to a free trial and my new, paid subscription started on the 30th with a billing date of the 30th. Not good. Often I have too much month left at the end of the money. All I want to do is move my billing date from the 30th of the month to sometime shortly after the 3rd of the month to ensure you get paid before I spend the money on something stupid, like food or tuition. My old $30/mo subscription was paid up through the 6th, but it was canceled and now I'm stuck with the 30th as a billing date. Is there any way possible to change the day of the month I get billed? I would even be willing to pay an "adjustment" fee for the week difference (which, technically, I've already paid for but, to save the $10/mo I would be willing to do). If you hit my credit card when there is no money in it, the fees would negate the savings I am hoping to get my changing my subscription.
    Thanks for your time -
    - Sharon

    Hi Sharon,
    There isn't an easy way to change the billing date, it is usually associated with the day the order processes. Only way to change it (that I'm aware of) would be to contact customer service near the date you want to be charged and have them setup a new order.
    -Dave

  • FM to get number of working days in a date range for a calender

    Hi all,
           Can you tell me the Function Module which takes start date ,, end date and factory calender as input and gives back working days or number of working days as return.
    Win full points for the resolution...
    Thanks in Advance...
    Chandan Dubey

    Hi chandan,
    1. DATE_CHECK_WORKINGDAY
    This is one useful FM
    2. Try this code (just copy paste)
    IT DOES EXACTLY WHAT U REQUIRE.
    REPORT abc.
    data : num type i.
    parameters : frdate type sy-datum default '20051216'.
    parameters : todate type sy-datum default '20051221'.
    perform getinfo using frdate todate changing num.
    break-point.
    *& Form getinfo
    text
    FORM getinfo USING fromdate todate CHANGING numofdays type i.
    DATA : d TYPE sy-datum.
    d = fromdate - 1.
    DO.
    d = d + 1.
    IF d > todate.
    EXIT.
    endif.
    CALL FUNCTION 'DATE_CHECK_WORKINGDAY'
    EXPORTING
    date = d
    factory_calendar_id = '01'
    message_type = 'I'
    EXCEPTIONS
    date_after_range = 1
    date_before_range = 2
    date_invalid = 3
    date_no_workingday = 4
    factory_calendar_not_found = 5
    message_type_invalid = 6
    OTHERS = 7.
    IF sy-subrc = 0.
    numofdays = numofdays + 1.
    write :/ d.
    ENDIF.
    ENDDO.
    ENDFORM. "getinfo
    I hope it helps.
    Regards,
    Amit M.

Maybe you are looking for

  • GL balance is difference in two reports

    Hi, One GL balance is differece in two reports i.e in FBL3N & FAGLB03. Can anybody tell me the problem. govind.

  • Messages in Mavericks missing option to enable Smileys

    I'm unable to substitue text emoticons sent by other users to me for real emoticons (pictures). In older version of Messages I was able to enable emoticons but now I cant find that option Cant find this anywhere! View Menu > Messages > Show Smiley Th

  • How do i input value?

    I am using KOB1. So from my ALV program if one line clicked then it will call KOB1. Now the problem is in the KOB1 three fields re required field. 1. Cost center, 2 Order and 3 posting date. 1st two have there own parameter ID. But Posting date doesn

  • In Decision task, Method defined after execution is not called from Portal

    Dear All, In one of my scenarios, I am using a decision task for approval. In that after the approval action is taken i am calling a BAPI to update business function. I have called this BAPI in the Methods ( After Workitem Execution ) . When I execut

  • Windows on macbook pro & oarallels

    has anyone else had a problem with windows running slower on a macbook pro than it did on a macbook? It seems to run slower. Then occasionally when I shut down windows it tries to automatically force quit a program running in the back ground. Ultimat