Headcount for a specific day

Hi Gurus,
I have installed the standard Business Content for Personnel Administration in BW. I have to calculate Headocunt for a specific day ( "As of day") in a query. How do I get about doing this. Any help is deeply appreciated.
Thanks

Hello John,
I assume that user will entry the key date as on which the count has to be shown. This date variable cannot be based on a characteristic. It has to be a formula variable of date type, ready for input.
Now, Create 2 more formula variables replacement path type for start date and end date.(we need these in calculation)
Now create a formula(local CKF) and write:
(key_date > stat_date && key_date < end_date )* count
This will show the count of employees who joined after start date and who have not left till the key date entered by user.
Count is the count of unique employee ids. It can be made as a formula in front end or a counter at the back end.
Best Wishes,
Mayank

Similar Messages

  • Defining an exit variable for a specific day based on Fiscal Period

    If I do not have Calendar Day time dimension available for reporting is it possible to define a customer exit variable for a specific day.  The days are the first and last day of the financial year?
    Example
    User Input for Fiscal Period: 2009004
    The exit is to define a value for 01.01.2009 and 31.12.2008 (end of last year)
    Thanks

    Hello Niten,
    yes it is possible. Procedure:
    - add a new column in the report structure
    - hide this column
    - create a new text variable in this column (for customer exit)
    - now you can fill this variable during query execution based on 0FISCPER
    You don't want to filter by this variable. Right?
    Buy,
    André

  • Search for a specific day

    How do i filter a search to find all photos for a specific day and month for all years?

    Hmm.. Well, the only way I've been able to see that is to use filters, and control click on each year-day combo (using control/command click to select more than one entry) and LR will show them all.  You might then drag them into a collection...
    Of if you're not doing this a lot, you could create a smart collection and make a field for each year by "capture date" (which apparently won't let you add wildcard values).
    If nobody else has a better suggestion (quite possibly they will!), then you might put in a feature request to allow Date in smart collections to have a wild card.
    Cheers!

  • Unable to update Headcount for a specific year

    here we are getting the headcount for the years F09 and F10 but unable to get the correct headcount of F11.........plz look in to this very urgent.
    /*SET CREATEBLOCKONEQ ON;*/
    SET UPDATECALC OFF;
    SET AGGMISSG ON;
    SET CACHE HIGH;
    SET CALCPARALLEL 4;
    SET LOCKBLOCK HIGH;
    FIX([rtpYear], [rtpScenario],
         "Local_Input","Project_Input",
         @RELATIVE("YearTotal",0),"Working", @RELATIVE("EFXRPTG",0),"ICP_Input", @RELATIVE("Total Cost Centers",0),
         @RELATIVE("Total Employees",0), @RELATIVE("Type_Status",0))
         "Days In Month (Salaried)"(
    IF((@ISMBR(Forecast) AND @ISMBR(&svFcstMonth:December)) OR @ISMBR(Budget))
         "90000209"=#Missing;
         "90000211"=#Missing;
         "90000212"=#Missing;
         IF("Rate_Input" <> #Missing AND "Rate_Input" <> 0)
              IF(@ISMBR(@LIST("Existing_Exempt","Existing_NonExempt","New_Exempt","New_NonExempt","Transfer_Exempt","Transfer_NonExempt")))
                        "Days In Month (Salaried)" = "Days In Month (Salaried)"->"Entity_Input"->"CostCenter_Input"->"Employee_Input"->"Type_Input";
              ELSEIF (@ISMBR(@LIST("Existing_Hourly","New_Hourly","Transfer_Hourly"))
                        "Days In Month (US-Hourly)" = "Days In Month (US-Hourly)"->"Entity_Input"->"CostCenter_Input"->"Employee_Input"->"Type_Input";
              ENDIF;
              IF(@ISMBR("Existing_Exempt") OR @ISMBR("New_Exempt") OR @ISMBR("Transfer_Exempt"))
                   "90000211" = 1;
              ELSEIF (@ISMBR("Existing_NonExempt") OR @ISMBR("New_NonExempt") OR @ISMBR("Transfer_NonExempt"))
                   "90000212" = 1;
              ELSEIF (@ISMBR("Existing_Hourly") OR @ISMBR("New_Hourly") OR @ISMBR("Transfer_Hourly"))
                   "90000209" = 1;
    ELSEIF (@ISMBR("Reduction_Exempt") OR @ISMBR("Vacancy_Exempt"))
    "90000211" = -1;
    ELSEIF (@ISMBR("Reduction_NonExempt") OR @ISMBR("Vacancy_NonExempt"))
    "90000212" = -1;
    ELSEIF (@ISMBR("Reduction_Hourly") OR @ISMBR("Vacancy_Hourly"))
    "90000209" = -1;
              ENDIF;
         ENDIF;
         ENDIF;)
    ENDFIX;

    I have to ask -- where's the member Headcount?
    Regards,
    Cameron Lackpour

  • Schedule Executed weekly except for a specific day of the month

    Hi all,
    I need to create a schedule that run weekly every sunday at 9 PM, except for 2nd day of the month it will run at 7 AM.
    I have created 2 schedules:
    1. One to run weekly every sunday at 9 PM, but i don't know from where i can specify the days of the month the schedule will be inactive on it.
    * I have tried By Month Day option, and choose all days of the month except second day of the month to run on it.
    FREQ=WEEKLY; BYMONTHDAY=1,3,4,5,..,31; BYDAY= SUN; BYHOUR=21;
    But, on the schedule preview window as i have designed the schedule from oracle warehouse builder, shows sunday, 02, July for example.
    as an execution date for this schedule.
    which is not appropriate.
    2. Another job is created to run monthly on the 2nd day of the month,
    FREQ=MONTHLY; BYMONTHDAY=2; BYDAY= SUN; BYHOUR=7;
    So, please advice how to create schedules daily or weekly and neglect some days of month from it.

    Hi,
    You can use the exclude clause introduced in 10gR2 for this by creating a schedule when your job should not run and excluding it. An example is given below.
    Hope this helps,
    Ravi.
    create or replace procedure print_schedule_dates
       schedule in varchar2,
       start_date in timestamp with time zone default dbms_scheduler.stime(),
       number_of_dates in pls_integer default 10
    is
      date_after timestamp with time zone := start_date - interval '1' second;
      next_date timestamp with time zone;
    begin
      for i in 1 .. number_of_dates
      loop
        dbms_scheduler.evaluate_calendar_string
         (schedule, start_date, date_after, next_date);
        dbms_output.put_line(to_char(next_date,
                        'DY DD-MON-YYYY (DDD-IW) HH24:MI:SS TZH:TZM TZR'));
        date_after := next_date;
      end loop;
    end;
    begin
      dbms_scheduler.create_schedule('monthday2',
        repeat_interval=>'freq=monthly;bymonthday=2');
    end;
    exec print_schedule_dates('FREQ=WEEKLY;BYDAY=SUN;BYHOUR=21;exclude=monthday2',sysdate+1,30);
    exec print_schedule_dates('FREQ=WEEKLY;BYDAY=SUN;BYHOUR=21',sysdate+1,30);

  • Create a rule for one specific day

    Greetings,
    I am not sure this is the right forum for me to ask for help; if not, please kindly redirect me to the right one.  Thanks
    I am using MS Office 2013 outlook on Windows 7.  Love it.  However, I would like to create one out-of-office reponse indicating that I will not in the office on Fridays.   
    Is there a way to do so?   
    If you know a way, please guide me through.
    Thank you much,
    JPL

    Hi,
    Which type of email account are you using? POP3, IMAP or Exchange?
    If you are using an Exchange account, you can go to File > Info > Automatic Replies to set your Out of Office settings. For more information, please refer:
    http://support.microsoft.com/kb/290846/en-us
    If you are using a non-Exchange account, you can set rules to simulate the functionality. See:
    http://office.microsoft.com/en-us/outlook-help/automatically-reply-to-email-messages-without-using-an-exchange-server-account-HA102749461.aspx 
    Hope this helps.
    Regards,
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Process chain in BW for specific day starting programm in ERP

    Hi guys,
    I have created a process chain in BW which works fine.
    Now I have to think about to include a step in this process chain which starts for one specific day one program in ERP.
    When this program in ERP is finished with updating data the process chain should continue and then the ERP data should be uploaded in BW.
    For example. Every 10th of a month a program in ERP should be started for the last day of the month before (for example 31.1.11). The program runs about 7 hours. When the program is finished the process chain shoul continue.
    Is that possible to handle with process chains?
    Thank you in advance!

    Hi,
    1. Make your existing chain as local chain.
    2. Create a process chain PC1 with a start variant and add above local chain.
    3. Schedule PC1 every day and restrict it not to run on 10th day of every month.
    4. Create a program or function module in ECC to execute your logic.(last day of last month as range).
    5. create a event in ECC.
    6. create a back ground job with step1 as program and step2 as event created in step 5.
    7. Create process chain PC2 in BI with start variant with event created in step 5.
    8. schedule the back ground job created in step 6 in ecc to run on evry 10th day of the month.
    If you do not want 2 pcs you can create only one PC based on variant from ECC. Add lIF condition in your ECC program
    to check if it is 10th of the month or not. If it 10th day execute your logic else complete the program with out executing any logic.
    so that back ground job will trigger step 2 (which is event) which will inturn trigger BI load.
    Thanks,
    Kalyan.
    Edited by: Kalyan.Undavally on Feb 8, 2011 6:30 PM

  • 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

  • I am looking for an iPad App that will play a specific iTunes song, at a specific time, on a specific day?  Thank you all!

    i am looking for an iPad App that will play a specific iTunes song, at a specific time, on a specific day?  Thank you all!

    Sorry, i did not say that i need to go out further than 1 week.  This is for a church Bell Tower Music System.  So we don't want to have to re program the music every week.  We are looking for more of a Calender App that will play iTunes Songs for alarms...different songs, on different days.  IDEAS ANYONE ???

  • Is it possible to schedule updates for a specific time of day like 12am?

    Is it possible to schedule updates for a specific time of day like 12am?

    No. If you use Automatic Updates, the apps update when the updates are available. Read this for a little more information.
    http://9to5mac.com/2013/09/20/ios-7-how-to-set-up-automatic-app-updates/

  • ICal - alarms for specific days (not dates)

    I am very forgetful, and I often use iCal to make reminders for myself (using the alarm w/ sound). However, I often have weekly reminders at work. For example, I would back up our files at work on Tuesdays and Thursdays. I was wondering if there is a feature in iCal that can set reminders for specific days of the week. Any input is appreciated. Thanks!

    Create an event on tuesday, go to the repeat menu,
    select custom, mark the days you want the event to be
    (tuesday and thursday). Then go to the alarm menu ans
    set the sound you want.
    Note: if you plan to sync to a palm device, the palm
    doesn't accept events that repeat on specific
    (multiple) days of the week, so create two events,
    one that repeats every Tuesday and another for
    Thursday.
    Thank you so much! You solved my problem! -Catherine

  • HT201320 How do I get e-mails for my ipad for only a specific day?

    How do I get unread e-mails using my ipad for only a specific day?

    <<  The iTunes Service is available to you only in the United States, its territories, and possessions. You agree not to use or attempt to use the iTunes Service from outside these locations.  >>
    Wrong.
    iTunes is available in just about every country in the world. Go to the bottom of the iTunes homepage and you can change to the iTunes for other countries.
    The only difference is the content, since some books are not marketed in all countries. And cannot be ordered from other countries in e-format.  I.e. I can buy physical books, DVD , CD from online retailers in other countries (e.g. via Amazon), but cannot buy e-media versions of exactly the same books, films, music from other countries.
    Which is the problem that the OP has. The book that they want is marketed on the iTunes USA site, but not on the iTunes India site.

  • How can I gift an iPad app on a specific day, like birthday?

    In answering an earlier question (How can I buy a specific iPad app for someone else?) https://discussions.apple.com/people/King_Penguin gave the following helpful tip:  http://support.apple.com/kb/HT2736
    So far, so good (except that now I'll need to tip off the giftee by asking which email address he uses for iTunes). However... I have a new problem. How do I specify that the gift "arrive" on a specific day, such as a birthday? Dear Obvious Answer: No, I don't want the answer "Buy it on his birthday." I will be out of the country on his birthday, and away from internet/3g/4g connections. I need another choice.

    A different obvious answer: organise it, don't tell him until his birthday. If you cannot phone or text, tell him on a birthday card, posted (remember that?), if necessary inscribed "do not open until your birthday".
    We spend too much time wresting with technology to solve problems that would not even exist a few years ago. 

  • Help in  getting Headcount for a month from a flatfile

    Hi All,
    I am need one help regarding i need to load data from a flat file like for eg
    empno  Location     joiningdate     releivingdate
    123       USA         11/3/2008        12/9/2008
    345       Mexico     14/4/2008         13/11/2008
    376       USA         12/2/2008          Null
    and the condition is if the releving date  have some value it should taken  employee left the company
    i need to create a cube and also on top of the cube need to create a report also
    in the query  the formula is
    for eg if the user is giving i/p like 05.2008( what ever the user is giving i/p it should automatically taken from current finanacial year ie april)
    and in the report i need to write a formula for
    %YTD for attrition =( (opening headcount of april 1st+ closing heda count of april end)/2 +opening head count on may 1st + closing head count of may end/2))/n*100
    i am getting stuk up with how to get the opening headcount for month and also the closing head count for a month.
    VR

    There's actually an example of this in the business content in the 0papa_c02 cube:
    Re: Head Count
    There's also some info about this cube in note 336229.
    Similarly, for your data, you might have something like this:
    headcount_vc is the change in headcount on the calday.
    empno      Location      calday        headcount_vc
    123      USA      11/3/2008         1
    345      Mexico      14/4/2008         1
    376      USA      12/2/2008         1
    123      USA      12/9/2008         -1
    345      Mexico      13/11/2008   -1
    There would be another key figure in the cube headcount_nc which is the cumulation of headcount_vc.
    When aggregated together up to a certian day, you will have the correct headcount.
    It can get fancier if need be for example if you want a count of retired employees or something:
    Anything you want counts by should be time dependant though.
    empno      Location      calday        headcount_vc        status
    123      USA      11/3/2008         1          active
    345      Mexico      14/4/2008         1          active
    376      USA      12/2/2008         1          active
    123      USA      12/9/2008         -1          active
    345      Mexico      13/11/2008   -1          active
    123      USA      12/9/2008         1          retired
    345      Mexico      13/11/2008   1          retired

  • How to Run a Request Set on specific days and at specific hours

    Hi community,
    The question is simple, how to rin a Request Set on Specific Days and at Specific hours?
    Let me explain the scenario.
    E-Business Suite, Release 11.5.9.
    We have a request set under Sysadmin user. This Request set is running 24x7, during all year, and we want to restrict the execution from Monday to Friday since 08:00 a.m. to 20:00 p.m. in order to increase the productivity of our system and more over, to avoid the size increase of a table (OE_EXPOSURE_INTERFACE)
    The Request Set includes 5 Requests:
    10. Workflow Background Process.
    20. GUZMAN: Cálculo metodo pago en pedidos.
    30. GUZMAN: Exposición de crédito externo.
    40. Credit Exposure Import.
    50 Initialize Credit Summaries Table.
    As you can see three of them are standar Oracle Order Management Processes and two of them are custom Oracle Order Management Processes; and the requests must be executed in that order.
    We have just thinking about to create a Custom Manager with a workshift from Monday to Friday since 08:00 a.m. to 20:00 p.m., and include the requests as specialization rules or assigning those request to a Request Type and then include that Request Type as specializated rule, but this does not assure us that the request will be executed in that order.
    Any suggestion?
    Thanks a lot for your answer in advice.
    Luis.

    Hi Anchorage,
    It could be a solution, but not the exact solution that we want. Let me say why.
    With the Request set we have the security that each concurrent request is executed when the prior one finishes; is that to say 20, does not begin till 10 finishes, and 30 does not begin till 20 finishes and so on. The most critical concurrent requests are 40 and 50, cause those are the ones that import an external credit exposure in the OE_EXPORURE_INTERFACE table (40) and are the ones that delete those external credit exposures imported (50). The problem is (and we do not know why) that these actions makes grow the size of the table and each time the 40 and 50 processes takes more minutes to finish. That's why we need to truncate the table in order to avoid the excesive grow of itself.
    Making each process independent, with a begining time and hoping and expecting that the following one does not begin till the prior one ends is not an admisible or realizable solution due to the problem with the 40 and 50 processes.
    So at the end, we need a request set in order to know that each one began when the prior one ends.
    And Due to in order to truncate the table, as I said before, the processes that have a relationship whit it, must be stopped (just the 40 and 50 processes) prior to the truncation.
    So as you see, it is difficult, very difficult.
    Regards.

Maybe you are looking for

  • Missing Functionality in credit memo

    On steps: 1. We create goods AB - 10 pieces serial numbers a1, a2, a3, a4, a5, a6, a7, a8, a9, a10 2. We create delivery 1 on 1 pcs with number-a1 3. We create delivery 2 on 2 pcs with numbers-a2, a3 4. We create delivery 3 on 1 pcs with number a4 5.

  • Aperture 3 not shown in desktop wallpapers

    The Aperture entries discontinued to show in the preferences setting of the desktop wallpaper. All I see is this: I do have two Aperture Libraries on my Mac. Under snow Leopard I could see Aperture and could chose an image from there. I did several t

  • HT201077 Starting Photo Stream in iPhoto

    When I try to turn Photo Stream on in iPhoto, it's directing me to MobileMe. I can't get through to turn it on. What should I do?

  • Issue with exporting JPGs

    Camera: Nikon D7100 Using 14-bit RAW   So somehow I've failed to notice that when I export after editing and using the resize option (to 2000x2000), the quality of the resulting JPEG is soft and lacking in detail/clarity that exists in the image in L

  • Zfs and Oracle raw volumes

    This is the way I configured raw volumes to be used by Oracle 9: # zpool create -f pool146gb c0t1d0 # zfs create -V 500mb pool146gb/system.dbf # cd /dev/zvol/rdsk/pool146gb # ls -l system.dbf lrwxrwxrwx 1 root root 40 Oct 4 19:26 system.dbf -> ../../