Req. deliv.date should exclude holidays and weekends

Hi guy,
When I try to create my sales order. The Req.deliv.date and First date will automatically fill with date. The question is it should exclude weekends and holiday, but the result is not. Just like that
The 07/12/2014 is Saturday. How should I make it automatically exclude weekends? Thank you in advanced.
Best,
Peter

Hi Peter,
The requested delivery date is the date that the customer is requesting the material arrive at their site. Therefore, the logical calendar to check this against is the unloading point calendar of the customer. Please maintain an unloading point and assign a calendar for the customer in transaction VD02.
When you do this, the system will issue a warning of you enter a non-working day. There is not possibility to change this to an error in the standard system. The system assumes that the user knows what they are doing and takes priority over the warning message. However, the warning message does inform the user of the next working day.
I remember replying to a similar thread about this before. You can find it here:
No Schedule Line Dates on Weekends

Similar Messages

  • FM to exclude holidays and weekends and count days in Leave period

    Hi Friends,
    My requirement is to count no of days leave applied !!
    Which should exclude Holidays and weekends and count only business days..
    I.E. per week onlyt 5 working days!!
    Is there any FM to do so Becasue this exlcuding holidays not happens manually...
    Thanks in advance...
    Regards
    sas

    Hi Dilek Please can you send the screen shots of those
    Just put HRworkdays F4 and can you send the screen shots of those please!!!Which will help to show to my client !!
    MY id is in businees card please take it as per rules i cant type ....Thanks in advance!!
    Regards
    sas
    Edited by: saslove sap on Sep 8, 2009 8:32 AM
    I have check with other client systems of ECC 6.0  there is no FM of you provided !! Intresting !!
    Any one any other idea to achieve the same please provide!!
    Regards
    sas
    Edited by: saslove sap on Sep 8, 2009 9:45 AM
    Edited by: saslove sap on Sep 8, 2009 10:04 AM

  • Escalation emails based on SLA excluding Holidays and Weekends

    Hi All,
    I have a requirement to send escalation emails based on customer agreed SLA's. The SLAs like No Activity on SR for # of Days, 1st Response (Hours), Age (weeks), etc. The email should be sent to SR Owner, his manager, director and so on based on Customer Tier.
    Has anyone tried to factor Working Days into their SLA's through TimeBased WFs ?
    For example, a Service Request is raised on Friday and I would like the number of days to close that service request to exclude Saturday and Sunday? Just wondered whether anyone had experience/recommendations with this?
    This is urgent.
    Thanks

    Hi Bob,
    I think I'm going to ask you for the document too...
    I developed an external integration program which calculates a date from another one (like timestampadd) but using the week-ends, holidays and opening hours...
    If we can now do this within the CRM, it's awesome !
    Thanks,
    Max

  • Exclude Holidays and weekends from Last7Day function

    Hi all,
    I'm using the Last7Day function to return all records received from the current date to the past 7 days. How do I exclude Saturday, Sunday, New Years Eve, and New Years Day? The selection formula I'm using is:
    in Last7Days

    I don't think you can get there with the Last7Day function.  You'll have to bulld your own.  Try creating a custom function called Last7WorkDays and insert this code (Replace the ALL CAPS TEXT NEAR THE END WITH YOUR DATE FIELD):
    Local DateVar Array Last7WorkDays;
    ReDim Last7WorkDays[7];
    Local NumberVar numberDays := 1;
    Local NumberVar dayCounter := 1;
    while numberDays < 8 do
        If (DayOfWeek((CurrentDate - dayCounter)) <> 1 AND
           DayOfWeek((CurrentDate - dayCounter)) <> 7 AND
           Mid(totext(CurrentDate - dayCounter), 1, 5) <> '12/31' AND
           Mid(totext(CurrentDate - dayCounter), 1, 3) <> '1/1')
        Then
            (Last7WorkDays[numberDays] := (CurrentDate - dayCounter);
            numberDays := numberDays + 1;);
       dayCounter := dayCounter + 1;
    If (Date(INSERT YOUR DATE FIELD HERE) In Last7WorkDays) Then
        ("True" ;)
    Else
        ("False";)
    Add this formula to your report in the detail section.  You can suppress it so it doesn't show up on the report.  Then set a filter on the "False" values to eliminate weekends, new years eve and new years day.

  • Getting the next valid date (jump holidays and weekends)

    Hello,
    I have a column table where I have all holidays of the year in the format "yyyymmdd,yyyymmdd,...", for example, "20091012,20091225".
    I'd like to do a query where I pass a date and a increment of days and it returns the next valid date, excluding weekends and the holidays that I have in the column holidays that I show above.
    P.S: Instead of pass a date and a increment of days, I could pass just a already incremented date, and this query just validate this date, adding 2 days for each weekend and one day for each holiday.
    Is there a way to do that?
    Thanks

    Hi,
    Ranieri wrote:
    Hello,
    I have a column table where I have all holidays of the year in the format "yyyymmdd,yyyymmdd,...", for example, "20091012,20091225".Dates should always be stored in DATE columns. If you really want to, your can also store the formatted date in a separate column.
    I'd like to do a query where I pass a date and a increment of days and it returns the next valid date, excluding weekends and the holidays that I have in the column holidays that I show above.For convenience, you can't beat a user-defined function, such as Etbin's.
    If you really want a pure SQL solution, you can
    (a) generate a list of all the days that might be between the start date and end date (sub-query all_days below)
    (b) outer join that to your holiday table (sub-query got_dnum, below)
    (c) rule out the holidays and weekends (sub_query got_dnum, WHERE clause)
    (d) return the nth remaining day (main query below)
    WITH     all_days     AS
         SELECT  TO_DATE (:start_date, 'DD-Mon-YYYY') + LEVEL     AS dt
         FROM     dual
         CONNECT BY     LEVEL <= 3           -- 3 = max. consecutive non-work days
                   + (:day_cnt * 7 / 4)     -- 4 = min. work days per week
    ,     got_dnum     AS
         SELECT     a.dt
         ,     ROW_NUMBER () OVER (ORDER BY a.dt)     AS dnum
         FROM          all_days     a
         LEFT OUTER JOIN     holidays     h     ON     a.dt = TO_DATE (txt, 'YYYYMMDD')
         WHERE     h.txt               IS NULL
         AND     TO_CHAR (a.dt, 'Dy')      NOT IN ('Sat', 'Sun')
    SELECT     dt
    FROM     got_dnum
    WHERE     dnum     = :day_cnt
    ;This assumes :day_cnt > 0.
    The tricky part is estimating how far you might have to go in sub-query all-days to be certain you've included at leas :day_cnt work days.
    Where I work, holidays are always at least 7 days apart.
    That means that there can be, at most, 3 consective days without work (which happens when there is a holiday on Monday or Friday), and that thee are at least 4 work days in any period of 7 consecutive days. That's where the "magic numbers" 3 and 4 come from in the CONNECT BY clause of all_days. Depending on your holidays, you may need to change those numbers.
    P.S: Instead of pass a date and a increment of days, I could pass just a already incremented date, and this query just validate this date, adding 2 days for each weekend and one day for each holiday.Good thought, but it won't quite work. How do you know how many holidays were in the interval? And what if the first step produces a Saturday before a Monday holioday?
    You might be interested in [this thread|http://forums.oracle.com/forums/message.jspa?messageID=3350877#3350877]. Among other things, it includes a function for determining if a given date (in any year) is a holiday, without reference to a table.

  • Trigger workflow whenever  Req. deliv.date of a SO is changed

    Hi,
    I have a requirement where i have a workflow which will be trigerred whenever Req. deliv.date of a sales order is changed.
    I have added an event for this in a customized business object type. This event is the start event for the workflow.
    Now i have to call this event for VA02 transaction.
    Is there any iser exit in which i can call the event?
    Please help.

    Hi Rakhi,
    Instead of looking for user-exits. Try using the standard event and you can create and attach a check FM which will check that the "Req Deliv Date field" is changed or not.
    If not changed, then you can raise an exception there only and will not procedd further.
    If changed, then your task will trigger where you have written your code.
    This way its easy and saves your time for finding the proper exit.
    Hope it resolves your query.
    Regards,
    Manish
    Edited by: Manish  Bisht on Jul 2, 2009 7:00 AM

  • I have only a single texbox.i want to display names , date,priortiy in the same textbox when i typed @ names should be display names like when u type comment in facebook for particular person it will display name. when i type ! date should be display and

    i have only a single texbox.i want to display<big style="margin:0px;padding:0px;border:0px;color:#111111;font-family:'Segoe
    UI', Arial, sans-serif;line-height:normal;"> names , date,priortiy </big>in the same textbox <big
    style="margin:0px;padding:0px;border:0px;color:#111111;font-family:'Segoe UI', Arial, sans-serif;line-height:normal;">when i typed @ names should be display names</big> like
    when u type comment in facebook for particular person it will display name. when i type ! date should be display and when i type * priority should be display in same textbox like
    example <big style="margin:0px;padding:0px;border:0px;color:#111111;font-family:'Segoe UI', Arial, sans-serif;line-height:normal;">@
    names !today date or tomorrow date etc * priority high,low ,medium etc</big>

    This is my first time posting here, so I'm sorry, I re-read my post several times and honestly did think I provided enough information, but you're right, it wasn't the right kind. So please (continue to) bear with me, I'm really not trying to be ignorant. I honestly assumed the issue was something I was doing wrong in Bridge, nothing to do with my computer specs.
    I am using a late-2008 Macbook, running Yosemite 10.1.1 (screenshot below)
    On the Mac I am using Bridge CC 6.1.1.115 and Photoshop CC 2014 (2014.2.1 release, 20141014.r.257 x64)
    Here is a link to the System Info from Photoshop on the Mac
    Here is a screenshot of my System Overview on the Mac
    Here is a screenshot of my Photoshop performance preferences on the Mac
    I am also using a Dell desktop with Windows 8, running Photoshop CC 2014 (2014.2.1 release, 20141014.r.257 x32) and Bridge CC 6.1.0.116 x32 (on a separate CC account with separate files that I don't try to sync or anything)
    Here is a link to the System Info from Photoshop on the Windows computer.
    Here is a screenshot of the system overview on the Windows
    Here is a screenshot of my Photoshop Performance preferences on the Windows computer
    I work with jpg, psd, ai, svg, and pdf files. Most of my stacks are three different file types of the same image, usually jpg, psd/ai, and pdf.
    I have not recieved any error messages
    I am not having issues opening raw files, I am not having printing issues, I have listed the troubleshooting steps I have taken.
    Is there any information you need that I missed? I'm trying not to be a dingus, but I'll have to ask you to be patient with me in the meantime. I haven't ever looked up half the hardware/software details that were suggested and I don't know how to off the top of my head, so I provided what I already knew how to

  • Calendar-based confirmation (holidays and weekends off)

    Hello,
    Our company needs the sales order´s schedules lines to be confirmed only on non-holiday and non-weekend days. How can I achieve this?
    I have a proper calendar with all the holidays set correctly.
    Things that I've tried which didn't work:
    1) Assigning the calendar to the shipping point;
    2) Assigning the calendar to the sales organization.
    Can someone help me on this one?
    Thanks in advance!
    Adriano Cardoso

    Hi,
    Kindly Check the Following link,
    Which Factory Calendar is used to determine the Sales Order delivery date
    Revert,
    Regards,
    Prasanna

  • STO delivery date should not be in weekend.

    Hi expert,
    i just want to make sure the STO delivery date should skip weekend or give a warning message in case it is calcuated based on planned delivery time to be the weekend. Now I know that the calendar in receiving plant configuration can reach this request. but what i concern is, if i change this config, the impact is too big. Does any one have better idea?
    also, it looks like that the calendar in unloading point in ship-to master data doesn't work for this.
    Thanks!

    Dear Srinivas,
    Change the check as follows from
    Check: BKPF-BUDAT>SYST-DATUM
    to
    BKPF-BUDAT <= BKPF-CPUDT
    add  BSEG-KOART = 'K' in prerequisite
    Regards,
    NCC  Talluri

  • SS TimeCard holiday and weekend days

    As it is possible in Self Service timecard to make time fields as "disabled" for Saturday and Sunday, and for holidays too? What steps for this are necessary to do?

    1. You can integrate OTLR with OTL so that Time card can be automatically generated (So that generated timecard will have Zero hours during Saturdays, Sundays and Holidays). But User can still update the Time in the holidays.
    2. Define Holiday calendar in OTL and get the dates in OTL Formula and raise error if value is Non-zero for those days.

  • Req Deliv. Date required on order create VA01 Copy with Reference to Quote

    When creating an order with reference to a quote, the screen allows Req Deliv Date entry. I would like to make this field mandatory on the window 'Create with Reference'. Program is SAPLV45C and the screen is not certain: could be 0100, 0301, 0302, 0303, 0900.
    Have been looking at maintenance via SE51, but not sure if any of the element characteristics translate into 'required' so user is unable to click "Copy" if the date is without a value.
    Thank you.

    It is possible by changing the SAP standard.
    You can change the special attirbutes (Tick the checkbox in Req. field) in elements list of each screen which you have mentioned through SE51 transcation
    Regards,
    Udayasankar Rajagopalan

  • How to get past date based on duration and factory calender?

    Hi All,
    when i enter the duration ,i want to get the past date based on factory calender w.r.t current date
    i.e if current date is 26th jun and duration is 10 , the past date should be 12th jun (which should exclude all holidays and weekends).
    Thanks
    Vasumathi

    Hi,
    Please check this FM: I think this will resolve ur issue.
    END_TIME_DETERMINE
    Cheers,
    Vijay.

  • E ME 078 Deliv. date outside period covered by factory calendar

    Hi,
    I create Bid vendor, but the error show E ME 078 Deliv. date outside period covered by factory calendar
    I 've checked the factory calender in backend the setting is all day as a working day (doesn't have holidays and weekend days)
    pls help me....

    this error occurs if u had given a wrong date or very different date pl check for ex if u had given date as 05.08.2028 here at present the year givenas 2028 & in system the year going on as 2008 then in this situation system will give the error as u wrote .pl confirm & reward for efforts .
    sap11

  • Date should be displayed on query execution

    hello all
    when v execute a query date should display when query is executed.like if i execute query on 01/06/2006 this date should be displayed and when execute query on 01/02/2006 this date should be displayed?,like that so on?
    kindly anyone let me know how it should be done?
    how this should be done?
    many thanks

    hi Balaji,
    in bex analyzer, you can display the date with menu business explorer -> display text elements -> general, you will see some info, 'author'... 'last refreshed'.
    in web (WAD) you can use web item 'text element' and choose element type 'general text' and
    element id 'SYUZEIT'.
    element id can be used
    general text elements:
    - technical name of the query (REPTNAME)
    - description of the query (REPTXTLG)
    - InfoProvider (INFOCUBE)
    - key date for the query (SRDATE)
    - validity of the data (date and time) (ROLLUPTIME)
    - the person who wrote the query (AUTHOR)
    - the last time the query was changed (date and time) (MODTIME)
    - the last person to make changes to the query (MODUSER)
    - current user (SYUSER)
    - the last time the query was refreshed (date and time) (SYUZEIT)
    hope this helps.
    Message was edited by: A.H.P

  • Need to exclude Sat and Sun from Leave Apply

    Hi,
    Need to exclude Sat and Sun from Leave Apply, the requirement is when user apply for leave and when he enter days like 1 to 10 the system should exclude sat and sun in this duration and Calculate Duration Button should show the remaining days in Total Field. In which formula or PL/SQL script should open to amend this. Currently system is only excluding Sunday.
    Regards,

    Hi,
    Need to exclude Sat and Sun from Leave Apply, the requirement is when user apply for leave and when he enter days like 1 to 10 the system should exclude sat and sun in this duration and Calculate Duration Button should show the remaining days in Total Field. In which formula or PL/SQL script should open to amend this. Currently system is only excluding Sunday.
    Regards,

Maybe you are looking for

  • Can't arrange songs in iTunes 9

    So I created a playlist to make a cd for my friends birthday, brand new playlist and put all the songs in it I want, but it's not letting me re-arrange the order of the songs and I have no idea why. other playlists allow me too, but this one won't.

  • Can you change the date/time in your phone using itunes or something?

    cant get into my phone but yeah, is there a way or..

  • Images are not updated in jsp page

    Hi experts, I have developed a website for show events and display images of the event, when the user saves the title of the event and event content these things are go to database and at the same time i am creating a directory on the server in which

  • Question on gathering statistics in Enterprise Manager

    When in EM, choose Server->Query Optimizer->Manage Optimizer Statistics->Gather Optimizer Statistics: My question, when choosing the Object Type "Database": will this gather and optimize all of the other objects below database (i.e. Schemas,Tables,In

  • Advice required - New potential iPod Classic owner

    I have only just got into iTunes and am currently uploading all my CD's. My PC is connected to my surround sound system and that is how I play my music so easier not to have to get the discs out. Great. Didn't think I wanted an iPod as I wouldn't use