Need to find Holidays and Day

Hello All,
I have the PLANT and DATE.
With these details how can I find
1. DATE is a holiday?
2. DATE is which day(Mon, Tue,..., Sun)?
Good answers will be appreciated.
Thanks in advance.
Best Regards,
Sasidhar Reddy Matli.

Try function module [DATE_CONVERT_TO_FACTORYDATE|https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=date_convert_to_factorydate&adv=false&sortby=cm_rnd_rankvalue] or [HOLIDAY_CHECK_AND_GET_INFO|https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=holiday_check_and_get_info&adv=false&sortby=cm_rnd_rankvalue] the factory calendar comes from table T001W.
Regards

Similar Messages

  • Ok, i have lost my ipod and i REALLY need to find it, and i have no idea how i can track it. HELP!!!!

    ok, i have lost my ipod and i REALLY need to find it, and i have no idea how i can track it. HELP!!!!

    There is no way to track a lost or stolen iPod Classic. Sorry.
    Reporting a lost or stolen Apple product
    B-rock

  • Need to find the last day of the previous month

    hi folks,
    the code goes like this...
    data: xt247 type t247,
          monthn(30) type c,
          monthnumber type i,
          bforwardmonth type i.
    call function 'RP_LAST_DAY_OF_MONTHS'
      EXPORTING
        day_in            = s_date
      IMPORTING
        last_day_of_month = e_date.
    write: 'The last day of the month', e_date.
    select single * from t247 into xt247
            where spras = sy-langu
              and mnr = e_date+4(2).
    monthnumber = xt247-mnr.
    write:' The month number', monthnumber.
    determine the previous month.
    bforwardmonth = monthnumber - 1.
    From here I need to determine the last day of the previous month How can I do?
    Thanks for your help.
    Santhosh

    Hi all,
    here's the shortest solution:
    REPORT z123.
    PARAMETERS p_datum LIKE sy-datum DEFAULT sy-datum.
    DATA ultimo  LIKE sy-datum.
    <b>ultimo = p_datum - p_datum+6(2).</b>
    WRITE: / p_datum, 20 ultimo COLOR 2.
    it's not my solution :
    it's from <a href="http://www.abapforum.com/forum/viewtopic.php?t=1434&highlight=ultimo">Andrew_</a>
    regards Andreas

  • Need help finding Sound and Vibration Toolkit Example Files

    I need help finding some Sound and Vibration Toolkit Example Files?
    http://www.ni.com/white-paper/3779/en
    From this link you get:  getting_started_otb.llb
    The missing files are:
    OAT Truncate Time Indices.vi
    Speed profile.ctl
    oa_Config Time or RPM Segment.vi
    svl-Complex Datatype Default.vi
    Running Windows 7, LabVIEW 2011, 32bit
    Sound and Vibration Measurement Suite
    Sound and Vibration Toolkit
    Thanks,
    -SS
    Solved!
    Go to Solution.
    Attachments:
    License S and V.png ‏4 KB

    SS,
    You can find these files here:
    C:\Program Files (x86)\National Instruments\LabVIEW 2011\vi.lib\addons\Sound and Vibration\Order Analysis\Resample Order Tracking\SubVIs
    C:\Program Files (x86)\National Instruments\LabVIEW 2011\vi.lib\addons\Sound and Vibration\Order Analysis\Tach Process\SubVIs
    C:\Program Files (x86)\National Instruments\LabVIEW 2011\vi.lib\addons\Sound and Vibration\Order Analysis\Resample Order Tracking\SubVIs
    svl-Complex Datatype Default.vi changes to svc-Complex Datatype Default.vi
    C:\Program Files (x86)\National Instruments\LabVIEW 2011\vi.lib\addons\_NISVFA\_Shared subVIs\Common
    Make sure you are license activated, and you will have to dig through the *vi and relink a subvi.
    Then you should get a white arrow.
    -SS 

  • To find months and days between 2 dates

    Hi,
    I want to find the months and days between 2 dates.
    For Eg.
    Date-1 : 25-Aug-2013
    Date-2 : 23-Oct-2013
    If we consider every month as 30 days it should give
    25-Aug-2013 to 30-Aug-2013 = 6 days
    01-Sep-2013 to 30-Sep-2013 = 1 Month
    23-Oct-2013 to 30-Oct-2013 =   8 days
    Total = 1 month and 14 days.
    Kindly help at the earliest.
    Thanks & Regards
    Suresh

    SureshM wrote:
    Hi,
    I want to find the months and days between 2 dates.
    For Eg.
    Date-1 : 25-Aug-2013
    Date-2 : 23-Oct-2013
    If we consider every month as 30 days it should give
    25-Aug-2013 to 30-Aug-2013 = 6 days
    01-Sep-2013 to 30-Sep-2013 = 1 Month
    23-Oct-2013 to 30-Oct-2013 =   8 days
    Total = 1 month and 14 days.
    Kindly help at the earliest.
    Thanks & Regards
    Suresh
    That's not a good idea though.  Be considering every month as 30 days, then comparisons over larger date ranges (years) will be out by more and more days the larger the difference gets.
    Your example is also wrong.
    For Eg.
    Date-1 : 25-Aug-2013
    Date-2 : 23-Oct-2013
    If we consider every month as 30 days it should give
    25-Aug-2013 to 30-Aug-2013 = 6 days
    01-Sep-2013 to 30-Sep-2013 = 1 Month
    23-Oct-2013 to 30-Oct-2013 =   8 days
    The last one should be:
    01-Oct-2013 to 23-Oct-2013 = 23 days
    giving a result of 1 month and 29 days.
    Oracle provides a months_between function to do the calculation.
    SQL> select months_between(date '2013-10-23', date '2013-08-25') from dual;
    MONTHS_BETWEEN(DATE'2013-10-23',DATE'2013-08-25')
                                           1.93548387
    But of course, because the number of days in a month varies, it's not exacly known what the decimal part of the number represents.
    However, if you combine methods, using months_between to get the months, and then assume 30 days for a month to get the days part from the remainder, it's more consistent over longer periods...
    SQL> ed
    Wrote file afiedt.buf
      1  with dates as (select date '2013-08-25' as date_from, date '2013-10-23' as date_to from dual)
      2  --
      3  select months_between(date_to, date_from)
      4        ,trunc(months_between(date_to, date_from)) as months
      5        ,round(mod(months_between(date_to, date_from),1)*30) as days
      6* from dates
    SQL> /
    MONTHS_BETWEEN(DATE_TO,DATE_FROM)     MONTHS       DAYS
                           1.93548387          1         28

  • Need to find region and its sub region

    Hi,
    I have a table levels which has record at any levels.
    levels_id region_name region_parent
    1 xyz 0
    2 xyz1 1
    3 xyz2 2
    4 xyz3 3
    5 xyz11 1
    6 xyz12 5
    7 xyz21 1
    8 xyz22 7
    9 **** 100
    10 ***1 101
    i need to find all the region under levels_id = 1 at any levels
    Please help me
    regards
    shyam

    is this what you are after?
    with t as
    (select 1 levels_id,  'xyz' region_nm,  0 region_parent from dual union
    select 2, 'xyz1', 1 from dual union
    select 3,'xyz2', 2 from dual union
    select 4, 'xyz3', 3 from dual union
    select 5, 'xyz11', 1 from dual union
    select 6, 'xyz12', 5 from dual union
    select 7, 'xyz21', 1 from dual union
    select 8, 'xyz22', 7 from dual
    select /*levels_id, region_nm, region_parent,  */
    substr(sys_connect_by_path(region_nm, '-->'),4)  from t
    where connect_by_isleaf = 1
    --start with  region_parent = 1
    connect by prior region_parent = levels_id
    xyz
    xyz1-->xyz
    xyz2-->xyz1-->xyz
    xyz3-->xyz2-->xyz1-->xyz
    xyz11-->xyz
    xyz12-->xyz11-->xyz
    xyz21-->xyz
    xyz22-->xyz21-->xyz

  • U160: Need help finding one and your opinion. Hardware update coming soon?

    I really want to pick up an Ideapad u160 after playing around with a x120e for the last week. But, in the US it is nearly impossible to find one.
    Lenovo does offer the Core i3 version for $750 (a bit over priced in my opinion) from the website, but only in brown. I would love to get a black on with an i5 or i7.
    The only place I could find them was on eBay and that was a refurbished one: http://cgi.ebay.com/LENOVO-Ideapad-U160-12-500GB-4GB-BT-i7-640UM-Ultrathin-/270778848252?pt=Laptops_...
    How are Lenovo's refurbished laptops? And I am guessing the u160 would be a huge bump in performance from the x120e.
    Finally, there has been no talk of a refresh for the u160 line right? I would hate to buy one and then be left with the old modle.
    Thanks!

    You don't want to reset all settings .... You have to totally restore the iPad to factory settings which erases the device. After you restore the iPad, you can sync your content back onto the iPad from your iTunes library.
    Read this to see what I am talking about. This article talks about the iPhone, but it works the same way with an iPad or an iPod Touch.
    http://www.maclife.com/article/howtos/how_recover_your_restrictions_password
    Do you sync with iTunes on a regular basis? If yo don't, you can download past purchases as long as you use the same Apple ID that you originally bought the content with and as long as the content is still available in the stores (iTunes, the App Store or the iBooks Store).
    When you restore the iPad to factory settings, your son's game progress will be lost as well, so keep that in mind. All app data and settings will be erased when you restore as a new device.
    This discussion has some helpful tips on how to save some of the iPad content before you restore as new.
    https://discussions.apple.com/thread/3695870?tstart=0
    Message was edited by: Demo

  • My phone is locked and doesnt recognize me as a Developer.  Need to find UDID and cannot use Itunes or the phone, any ideas?

    I have a new phone, through AT&T insurance, and it does not recognize me as a developer until i register UDID.  But the phone is locked and has never synced to Itunes so how the **** do I find the UDID number?  This one is stumping me?

    Ok next problem currently my MAC is with my daughter out of state, I only have a PC in the house...

  • I have lost my ipod and it has phtos of my late grandfther and im really sad i need to find it and i cant any advice

    NY ADVICE PLEASE

    - If they are in an iPod backup then restore another iPod touch, iPad or iPhone from from that backup. After y are done, just have them restore the device from their backup See the restore topic of:
    iOS: How to back up
    - If you used PhotoStream then try getting them from your PhotoStream. See that topic of:
    iOS: Importing personal photos and videos from iOS devices to your computer

  • Need to find common and internal calls

    Hi,
    create table call(id number(15) primary key, calling_no varchar2(15), called_no varchar2(15), calldate date, calltime timestamp, duration number(10) ,
    calltype varchar2(10));
    1. CALL DETAILS OF 9891826547
    insert into call (id,calling_no,called_no,calldate,calltime,duration,calltype) values (1, 9891826547, 9891210785, to_date('01-Jun-13','dd-Mon-yy'), to_date('19:12:00','hh24:mi:ss'),10,'OUT');
    insert into call (id,calling_no,called_no,calldate,calltime,duration,calltype) values (2,9891826547, 9899985476, to_date('01-Jun-13','dd-Mon-yy'), to_date('22:10:12','hh24:mi:ss'),50,'OUT');
    insert into call (id,calling_no,called_no,calldate,calltime,duration,calltype) values (3, 9891826547, 9818415767, to_date('02-Jun-13','dd-Mon-yy'), to_date('08:20:22','hh24:mi:ss'),170,'OUT');
    insert into call (id,calling_no,called_no,calldate,calltime,duration,calltype) values (4, 9818415767,9891826547, to_date('02-Jun-13','dd-Mon-yy'), to_date('10:18:22','hh24:mi:ss'),220,'IN');
    insert into call (id,calling_no,called_no,calldate,calltime,duration,calltype) values (5,9891826547,9899985476, to_date('02-Jun-13','dd-Mon-yy'), to_date('14:20:04','hh24:mi:ss'),220,'OUT');
    2. CALL DETAILS OF 9818415767
    insert into call (id,calling_no,called_no,calldate,calltime,duration,calltype) values (6,9818415767,9899985476, to_date('02-Jun-13','dd-Mon-yy'), to_date('06:13:20','hh24:mi:ss'),10,'OUT');
    insert into call (id,calling_no,called_no,calldate,calltime,duration,calltype) values (7,9818415767,9891826547, to_date('02-Jun-13','dd-Mon-yy'), to_date('10:18:22','hh24:mi:ss'),220,'OUT');
    insert into call (id,calling_no,called_no,calldate,calltime,duration,calltype) values (8,9899985476,9818415767, to_date('02-Jun-13','dd-Mon-yy'), to_date('12:05:08','hh24:mi:ss'),165,'IN');
    REQUIRED OUTPUT :
    1. INTERNAL CALLS:
    CALLING_NO    CALLED_NO    CALLDATE         CALLTIME   DURATION   CALLTYPE
    9818415767        9891826547     02-Jun-13             10:18:22            220                 IN
    9848415767        9891826547     02-Jun-13             10:18:22            220                 OUT
    2. COMMON NUMBER: 9899985476 [ BETWEEN 9818415767 AND 891826547 ]
    CALLING_NO
    CALLED_NO
    CALLDATE    
    CALLTIME   DURATION   CALLTYPE
    9818415767       9899985476             02-Jun-13         06:13:20          10           OUT
    9899985476       9818415767              02-Jun-13       12:05:08           165           IN
    9891826547      9899985476              02-Jun-13        14:20:04           220          OUT
    PLEASE HELP

    Maybe NOT TESTED! No Database at hand just a guess
    with
    relevant_calls as
    (select id,calling_no,called_no,calldate,calltime,duration,calltype
       from call
      where calling_no in (:number_1,:number_2)
         or called_no in (:number_1,:number_2)
    select 'INTERNAL' kind_of,calling_no,called_no,calldate,calltime,duration,calltype
      from relevant_calls x,
           relevant_calls y
    where (x.calling_no = y.called_no or y.calling_no = x.called_no)
       and x.calling_no != y.calling_no
       and x.called_no != y.called_no
    union all
    select 'COMMON' kind_of,calling_no,called_no,calldate,calltime,duration,calltype
      from relevant_calls
    where called_no in (select called_no -- was called by both :number_1 and :number_2
                           from relevant_calls
                          where calling_no in (:number_1,:number_2)
                            and called_no not in (:number_1,:number_2)
                          group by called_no
                          having count(distinct calling_no) = 2
                         union all
                         select called_no -- was called by :number_1 and called :number_2
                           from relevant_calls x
                          where called_no not in (:number_1,:number_2)
                            and calling_no = :number_1
                            and exists(select null
                                         from relevant_calls
                                        where calling_no = x.called_no
                                          and called_no = :number_2
                         union all
                         select called_no -- was called by :number_2 and called :number_1
                           from relevant_calls x
                          where called_no not in (:number_1,:number_2)
                            and calling_no = :number_2
                            and exists(select null
                                         from relevant_calls
                                        where calling_no = x.called_no
                                          and called_no = :number_1
        or calling_no in (select calling_no -- called both :number_1 and :number_2
                            from relevant_calls
                           where called_no in (:number_1,:number_2)
                             and calling_no not in (:number_1,:number_2)
                           group by calling_no
                           having count(distinct called_no) = 2
    Regards
    Etbin

  • I am getting many days Called US holidays that are not US holidays and ones I do not celebrate.  How can I manage this list of days

    I am getting many days showing up in the US holiday Ca;endar that are not US holidays and days that I do not celebrate.  How can I manage this list

    You could also go through your messages app and see if you have videos or photos in there. Delete unwanted emails and empty the trash in each account. If you are trying to update over wifi try doing it by plugging into iTunes.
    If you need more space for an iOS update - Apple Support

  • I lost my ipod and i didnt turn on the find my iphone so how do i find it and i really need it :(

    i lost my ipod touch and i need to find it and the find my iphone is not on plz help

    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it.
    - Apple will do nothing without a court order                                                        
    Reporting a lost or stolen Apple product                                               
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • I need to find and upload a hidden file for an app service issue

    I need to locate a hidden file, filename.plist which is on a networked drive, and upload it to the company;s wed=biste for the to support the app. Obviously 'filename' is just a word. there is a long and complex filename.
    Finder spins its wheels uselessly when I ask it to search. The action gear thingy has no useful options to see hidden files that I can see. And the upload part of the website, while it lets me enter the filename in the search box, just spins uselessly, too.
    The file is held on a networked freestanding drive. That isn't of itself, any real problem. I just need to find it and upload it so I can get support. I don;t mind using some utility to grab a copy of it somehow, and uploading that! BUT I am not hugely technical, so I need to be spoon fed.

    You can use Terminal to find the file you are looking for.
    Let's say your network drive is named Net_Drive
    find /Volumes/Net_Drive -name filename.plist
    if you know the exact file name or
    find /Volumes/Net_Drive -name *.plist
    to search for all file names ending with .plist

  • How to calculate Date and Days

    Hi BW Experts,
    I have requirement, I have field original GI Date and  it is calculating based on 'Original promise date'-'Transport time'. Formula is 'Original GI Date' = 'Original promise date'-'Transport time'.
    We are getting data for original promise date as Date format and  Transport time as Days (ex: 1 or 2 days).
    Here, how can I convert into Date or how can I calculate Date and Days. I am working on BW3.5 .
    Please help me how can I overcome this requirement.
    Points will be assign.
    regards
    Yedu.

    Hi Ventatesh
    It's not a problem
    You can subtract days from date to get the resultant date
    Original Promise time  =  GI Date  - Transit time ( in days)
    Add Original Promise Time in your data target and fill that up with the above rule.
    If the above is not working you can use this function module
    DATE_IN_FUTURE
    Here you need to pass Date and Days to get future date. Only trick you need to apply that if the transit days is 5 days, you pass -5 to this function module.
    But this function module is not available in BW system. Just copy the code from ECC system and create a Z FM for BW system
    Regards
    Anindya
    Edited by: Anindya Bose on Feb 9, 2012 4:36 AM

  • Need to find a calendar to schedule multiple assignments with multiple tasks set on specific days for multiple people

    There may be no such animal as what I am searching for, but I thought I'd give it a try.
    What I need to do is find a calendar app that allows me to have individual calendars for staff members that I can place a several-days-long assignment and have those people access remotely on an iPad or iPhone (autosync).
    I also want to be able to have tasks set on specific days within that assignment that have alerts/reminders for each stage of the assignment.
    Being able to custom colour each individual assignment (not just the person's own calndar) is also necessary, as these asignments overlap and need to be easily distinguishable at a glance. Each assignment needs to be its own entity and not affect any furture or previous entries, even if I choose the same colour.
    It needs to be in a month by month view and be able to be something each person can subscribe to and sync up with for changes on a daily basis. It does nothave to be a calendar like in the screen shot below, it could be a linear calendar that has days across the top and assignments down the left side.....
    Here is a screen shot of a rudimentary excel spreadsheet I have been using. It is awkward and becoming unmanageable as the number of assigments increases and more staff are being added on. And I must send a new spreadsheet out every time I make a change or add an assignment, which is several times a week.
    I suspect I may be asking for the world, but if anyone knows a direction I can go in to start a search, I'd be grateful. I haven't had success of my own so far and need to find something soon.
    iCal doesn't work for me due to the fact I can only colour code the calendar itself and not the event, plus not being able to have multiple tasks within one event. And the qty of assignments I'd have would see most getting lost, eliminating my abilty to see every staff member's assignmanet at the same time.
    Thank you in advance if you have a suggestion and if not, thanks for looking at my dilemma! 

    check with T-code TPM44
    zashok

Maybe you are looking for