HOW TO KNOW SORT KEY USED IN CURRENT HOLIDAY CALENDAR

Hi Experts,
Could you please let me know how to know the sort criteria used in current Holiday calendar??
Any easiest method please let me know.
I know one way which is going to Public holidays and see where used but if there is any other way please do let me know.
Regards,
Vamshi

Hello,
Sort Key :Helps to group together all public holidays valid for a country. It is a 3 character key and I recommend its naming convention to be Znn where nn stands for country grouping. Hence, the sort keys for public holidays for Australia, India, New Zealand will be as shown below:
Australia        -        Z13
India             -        Z40
New Zealand  -        Z43
Read this blog for more info
http://scn.sap.com/docs/DOC-52366
Thanks

Similar Messages

  • How to know database is using pfile or spfile?????????????

    Hi Guru's
    how to know database is using pfile or spfile?????????????
    THanks

    select decode(count(*), 1, 'spfile', 'pfile' )
    from v$spparameter
    where rownum=1
    and isspecified='TRUE'
    OR
    SELECT DECODE(value, NULL, 'PFILE', 'SPFILE') "Init File Type"
    FROM sys.v_$parameter WHERE name = 'spfile';
    Regards
    Girish Sharma

  • How do know which services use up my data on my tablet? 2:How can I avoid this?

    How do know which services use up my data on my tablet? 2:How can I avoid this?

        @mwbail2,
    Great question! Managing your data usage is definitely important. You can view what apps are using data by going to Settings and then Mobile data on your phone. There is will show you the apps using data.
    If you want to avoid the data usage on the apps you want to make sure you close out the apps when not in use. You can also make sure that they are not automatically updating whenever there is a new update to the app. To do this simply go to the Play Store and select Menu. Then go to Settings and there you will see the option to change the auto update to update over wifi only.
    If you want to complete turn off data, just go to Settings and then mobile network and turn it off. Keep me posted if you need further assistance.
    JohnB_VZW
    Follow us on Twitter @VZWSupport

  • How to find CPU_time being used by currently executing query

    Hello,
    Is there a way to know how much CPU is being used by a query that is currently being runninng? I tried to look into dm_exec_sessions or even dm_exec_requests dmv but it looks like CPU_time stat doesn't get updated to those views until the query actually
    completes or get cancelled. Sometimes, it's important to find out among the actively running queries, which session/query is consuming the most CPU and there seem to be no way to find out that stat until the query actually completes or get cancelled. I was
    testing it on SQL 2008 r2 but behavior could be same on 2014 or 2012.
    Appreciate any feedback.
    thanks,
    Raj

    I have been using Adam's great utility
    Who Is Active? v10.00 (2010-10-21)
    (C) 2007-2010, Adam Machanic
    Updates: http://sqlblog.com/blogs/adam_machanic/archive/tags/who+is+active/default.aspx
    "Beta" Builds: http://sqlblog.com/files/folders/beta/tags/who+is+active/default.aspx
    License: 
    Who is Active? is free to download and use for personal, educational, and internal 
    corporate purposes, provided that this header is preserved. Redistribution or sale 
    of Who is Active?, in whole or in part, is prohibited without the author's express 
    written consent.
    CPU filter
    /*CPU*/
    EXEC dbo.sp_WhoIsActive
    @get_transaction_info=0,
    @output_column_list ='[session_id][start_time]
                      [cpu][status][context_switches][wait_info][program_name]
                     [database_name][sql_text][host_name][open_tran_count]', 
    @sort_order='[CPU]DESC'
    /*delta*/
    EXEC dbo.sp_WhoIsActive
    @delta_interval=5, @get_task_info = 2,
    @output_column_list ='[session_id][start_time][context switches]
                      [CPU_delta][reads_delta][writes_delta][tempdb_writes_delta]
                      [tempdb_reads_delta][tempdb_current_delta]
                      [database_name][host_name][login_name]', 
    @sort_order='[CPU_delta]DESC'
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • How to know the tables used in a program?

    Hi,
    Please tell me, how to know all the tables that have been used in a program?

    Hello Vijay
    Have you had a look at fm RS_PROGRAM_TABLES already?
    See also tables from prog
    Regards
      Uwe

  • How to know which graphics card is currently in use? (2010 MBP)

    Is there a way to check which graphics card is currently in use? I have the new 2010 15" 2.66 ghz MBP.

    gfxcardstatus - http://codykrieger.com/gfxCardStatus/

  • How to know in wich tab you currently are in the pcui?

    Hi everyone,
    Does annyone knows if there is an indicator that indicate you the current tab where the user is working in?
    I want my BSP to do different action depending on wich tab the user is in.
    I'm working in the BSP CRMD_BUS2000126 for the activities.
    Thanks!

    I will move over my posting from the ABAP forum as well in case it is a help to anyone:
    This is probably a question better suited to the BSP forum. I also noticed that your application name starts with CRM. I'm not familiar with CRM and its particular take on BSP, but I can tell you how I do this in my BSP applications:
    First I use the phtmlb:containerTabStrip to create my tabstrip. I use an application class attribute to store my selectedIndex (the current selected Tab).
    <phtmlb:containerTabStrip id                    = "TabStrip15"
                              collapsed             = "FALSE"
                              collapsible           = "FALSE"
                              firstVisibleItemIndex = "1"
                              hasContentConnector   = "TRUE"
                              maxVisibleItems       = "5"
                              onCollapse            = "myCollapse"
                              scrollableItems       = "TRUE"
                              selectedIndex         = "<%= application->SELECTED_date2       %>" >
    Now I use MVC, so in my DO_HANDLE_EVENT method of my controller class I trap the tabstrip event and query for the selected tab:
    data: event_id type string.
      event_id = event.
      if htmlb_event is not initial.
        event_id = htmlb_event->id.
      endif.
      data: model type ref to zcl_bsp_m_eqi_selection.
      data: appl type ref to zcl_eq_bsp_eqi.
    ****Get a pointer to the Model Object.
      model ?= get_model( 'MS' ).
    ****Get a Pointer to the application Object
      appl ?= application.
      if event_id cs 'tabstrip15'.
        data: event1 type ref to if_htmlb_data.
        event1 = cl_htmlb_manager=>get_event_ex( request ).
        if event1->event_type eq cl_phtmlb_containertabstrip=>co_phtmlb_event_tab_selected.
          appl->selected_date2 = event1->event_server_name.
        endif.
      endif.

  • How to know the tables used in an Extractor?

    Hi Friends,
    Is there any method to find out the underlying tables used in an extractor?
    For example , 2LIS_11_VAITEM datasource uses tables  VBAP and VBUP( item status). For LOs we can see it in Lo **** pit. So If any extractor uses more than one table ..then how do you see those?? . If it is generic ds which is based on Functional Module, then what is the procedure other going into table tab.
    Actuall i would like to know for DS of FICA Open items 0FC_OP_01 .
    Thank in advanace
    Murthy

    Hi If it is LO extractor:
    Use transaction code LBWE  in the R/3
    Go to the extractor for which you want to see the data( Logistic app->Extractors)
    Go to maintenance
    You will get an option to update just click yes and then you will get option to create request.Just check the display, it will lead you  top the window where you can see where all the fields are and from which table it is available.
    check the Roberto's blog:
    /people/sap.user72/blog/2005/09/05/sap-bw-and-business-content-datasources-in-pursuit-of-the-origins

  • How to know primary key column name form a table name in sql query

    Suppose I only know the table name. How to get its primary key column name from the table name?
    Thanks

    Views don't have primary keys though their underlying tables might. You'd need to pick apart the view to determine where it's columns are coming from.
    You can select the text of the view in question from user_views.

  • How to know whether a group is currently empty at connection?

    Hello all,
    I am now using NetGroup to connect online friends.
    Each person's flash player create its own group and connect to each of its friends' group.
    Currently each flahsplayer blindly connect to all friend's group whether they are online or not.
    That works very well for fperson having less than 16 friends, but when you reach 16, I ll have to bootstrap connection myself which I want to avoid.
    I want to make flashplayer connect only to online friends (which I assume in my application woudl rarely reach 16).
    To do that I need to know whether friends are online or not but I want to avoid a central service keeping track of keepAlive information.
    I know there is the estimatedMemberCount and while it seems quite fast to update (as soon as a neighbour is found), I would like to know if there is other possibility  (at NetGroup.Connect.Success time for example)?
    Also I am still not sure whether NetGroup is the way to go for application where only few friends are connected at the same time (facebook games for exampel which are for most of the time rely on assynchronous ineractions).
    Would a full mesh be a better option (latency, reliability) ? esepecially if I need a central service for NetGroup anyway (to know which friend are online)?
    Thank you for in advance your answers

    Hi Michael,
    thank you for your answer,
    At first I wanted to have a full mesh where each friends connect to each other.
    In this thread: http://forums.adobe.com/thread/751811?tstart=0 I explain my design but then zasdzasdzasd told me that it was clearly inefficient and it was better to use only one NetGroup for the whole application. Then after reading your answer to this thread: http://forums.adobe.com/thread/752581?tstart=0 I though it would be better to have as many group as there is friends.
    Unfortunately as you say, it has an unecessary overhead sicne there is only few node in the groups.
    I don't know then which method to use.
    Should I use:
    - one NetGroup for the whole application, meaning there could be thousands of member in this group which only less than 16 (around 4,5) would be interested in each message posted ?
    - full mesh where each node send the information as many time as there is friend currently online (16 max?)
    - one netgroup for each friend (too much overhead)
    - or any other method?
    I am just thinking of other possible solution:
    - have one netgroup for the whole application, but each message are send as private message (through addNeighbour and  sendToneighbour (executed as many time as there is friends online)  ) but it seems to be like a full mesh without much advantage, isn't it?
    - I could also use a netGroup for the whole application and make sure the routing mechanism give message to the sender friends. but unfortunately I do not want every node to know about other's friends.
    Thank you for your help

  • How to know the memory used by db

    Hi,
    Is there any transaction which tells me the exact memory used by Db (MS SQL)?
    If not is there any utilities I can go in and find out the Db memory used?
    I remember seeing the screen which says:
    Server
    Memory Available MBytes = xxxxx
    How can i get this? I dont know how to get to it, but i know its possible.
    Thanks

    Hi,
    Actually I suppose that, we cant definitely say that how much memory the database is using because, the frequently used tables are always buffered and less frequently used table are not buffered or partially buffered.
    However when a table is accessed, it brought to the buffer and then only seen in the GUI. Suppose consider an instance, some tables are accessed once a month or once a quarter, during that time it buffer used by the total number of tables will be more. than the normal instances.
    Regards
    Sudha

  • How to know whenn someone uses my iCloud account?

    Hi people,
    Recently, I am thinking what happens if that someone uses my iCloud to transfer my data.
    My question is, do I get a notification of some sort if someone logs in to/out of my iCloud account. Is there an option to prefer receiving such notificaions?
    Thanks

    First go to Settings>iCloud on your device and confirm that everything is turned to Off, and that you are not syncing any data with iCloud before proceeding.  (If you are, when you delete the data from iCloud it will also be deleted from your device and it will be lost.)  When you turn these off, you will be given the option to keep the data on your device.
    To delete your contacts, go to iCloud.com from your computer, log into your iCloud account and open Contacts, click on All Contacts on the left, to the right click on any single contact to select it, click on the Actions (gear shaped) icon at the bottom left and choose Select All, then press the Delete key on your keyboard.
    For Calendars, open your calendar on icloud.com, click Edit on the bottom left, then tap the minus sign to the right of each calendar to delete it.
    For Notes, open notes on icloud.com, click on each note on the left, then click Delete at the top to delete it.
    For Reminders, open reminders on icloud.com, click on each reminder and press your Delete key to delete it.
    For Mail, open your mail on icloud.com, click each folder on the left (such as your inbox), click on a single message to the right, press Control-A on your keyboard to select them all, then press your Delete key.  Repeat this for each of your mail folders except Trash.  When finished, click on the actions (gear-shaped) icon on the bottom left and select Empty Trash.
    To delete your my photo stream photos, open the album, tap Edit, tap the photos, tap the trash icon. If you want to keep a copy of them on your device, save them to your camera roll first.

  • How to know i'm using offical lion or GM version ?

    Hello everyone,
    I bought Mac os x lion , but i couldn't download it from App Store ( Low download speed )
    so , after search , i found it in a torrent file
    I mean , i download mac os x lion from a torrent file ,
    And installed succesfully,
    Now i'm asking that how can i know that i'm using offical mac os x lion version ? or GM ?
    Thanks,
    Jaber S.

    Quick question here: if you can download something from a torrent website that has a 3.49gb file for Mac OS X lion on it but you say you cant download it from apple cause it will take to long even tho the same download. why not just do it at like 9 pm and wake up at 8 am and just be like ok done.
    what most likely will happen is you wont be able to update the software due to mac osx lion is downloaded through the mac app store and that is where apple is heading for all there stuff. so be warned that there is a big chance you wont be able to update your software.
    PS: as for the people who buy it on a usb flash drive from apple in august they will most likely get a redeem code they have to use in the mac app store to tell apple that user: ilikethissystem has bought OS X 10.7 from apple store on a USB flash drive and they're a real user and paid for the software.
    this would allow torrent users to not be able to give out free software that Should be paid for.

  • How to know which sim used

    2day my nokia mobile losed.how cen i know which using on my mobile

    you will need to contact your network carrier, and notify the police in your country that your phone has been lost/stolen.

  • How to get partition key using SQL

    I want to get the subpartition key of a Rang-List partition table in program.
    How to write the SQL.
    Thanks.

    Can you query against dba_tab_partitions & dba_part_key_columns?
    Edit: Misread the question, didnt see SUBpartitions. More coffee, less posting for me.
    Edited by: mrk on Dec 22, 2011 9:10 AM

Maybe you are looking for

  • How can I export an .PLT file from Illustrator without using any other software but Illustrator

    I'm in the URGENT need of exporting a file to .PLT and no using any other software like the producer's software.

  • How to populate Ztable

    Hi All, My requirement is I have a report whose selection screen contains filename.On executing the program the data in the file comes as output.The output comes as node no,child name,node no for parent,parent name. Now we have to create 2 Ztable as

  • Really beginner question - i think

    I've had my iPhone and iTunes for ages. I have a iMac and a Macbook air. I only use my iMac for my iPhone. My best friend just bought and iPhone, its up and running and he wants some apps. Believe it or not, he does not have a computer. So he is goin

  • Jerky scrolling in CS, primitive & unacceptable?

    Hi, I have a major gripe with CS6, and I am very curious if I am alone in this. It concerns the scrolling behaviour and redraw performance of InDesign and Illustrator in particular. I use most of the CS applications professionally every day, and have

  • CS3 Adobe Acrobat 8 Professional

    I purchase CS3 many years ago and had to repair the program. CONTROL PANEL > PROGRAMS> REPAIR Now it is asking for a serial number which I don't know and thought that since the other components were installed it would do it automatically like it did