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

Similar Messages

  • Unable to update RUV for replica

    I have multi master replication enabled, and I am using consumer replicas. On my consumers, I am getting the following types of errors every 10 to 15 minutes:
    [21/Jan/2005:11:21:21 -0500] - INFORMATION - NSMMReplicationPlugin - conn=-1 op=-1 msgId=-1 - replica_update_ruv: unable to update RUV for replica o=gc.ca, csn = 41f12c060000ffff0000
    [21/Jan/2005:11:26:23 -0500] - INFORMATION - NSMMReplicationPlugin - conn=-1 op=-1 msgId=-1 - csnplCommit: can't find csn 41f12d340000ffff0000
    [21/Jan/2005:11:26:23 -0500] - INFORMATION - NSMMReplicationPlugin - conn=-1 op=-1 msgId=-1 - ruv_update_ruv: cannot commit csn 41f12d340000ffff0000
    Does anyone know how to get rid of these types of errors? I'm not having a lot of luck with Sun's paid support, so I'm trying the software forums. We are using version 5.2, and it has patch 2 applied. Any help is appreciated.

    I am also getting these errors. According to Sun, this are harmless errors, just filling logs though. Me too have password policy enabled.
    One thing I found during my investigation was that If you have MMR , replica might be getting update from 2 Master within very short time and the Master server reaching 2nd with a CSN already "played" , replica will throw above errors.
    For password policy in my case, I have not enabled it on consumer servers. I have both global password policy as well as role based password policy which applies to all the servers.
    Let me know if you get rid of the problem.

  • Unable to update Qty for outbound Delivery using BAPI_OUTB_DELIVERY_CHANGE

    Hi Experts,
    I am unable to update the Outbound Delivery quantity using FM BAPI_OUTB_DELIVERY_CHANGE. I am getting error in BAPI Return "Error in document &1 item &2 (quantity consistency check)".
    Here is my sample program to update Quantity
    *& Report  ZTEST_BAPI                                                  *
    REPORT  ZTEST_BAPI                              .
    tables : lips.
    parameters : v_vbeln like likp-vbeln,
                 v_posnr like lips-posnr.
    data : it_item type BAPIOBDLVITEMCHG occurs 0,
           wa_item type BAPIOBDLVITEMCHG,
           it_return type BAPIRET2 occurs 0,
           i_head type BAPIOBDLVHDRCTRLCHG,
           i_hdata type BAPIOBDLVHDRCHG,
           wa_conf type BAPIOBDLVITEMCTRLCHG,
           it_conf type BAPIOBDLVITEMCTRLCHG occurs 0.
    start-of-selection.
    select single * from lips into lips where
                      vbeln = v_vbeln
                      and posnr = v_posnr.
    if sy-subrc eq 0.
    move lips-vbeln to I_hdata-DELIV_NUMB.
    *append wa_hdata to i_hdata.
    move lips-vbeln to wa_item-DELIV_NUMB.
    move lips-posnr to wa_item-DELIV_ITEM.
    move lips-matnr to wa_item-MATERIAL.
    move lips-charg to wa_item-BATCH.
    lips-LFIMG = lips-LFIMG + 20.
    move  lips-LFIMG to wa_item-DLV_QTY.
    move  lips-LGMNG to wa_item-DLV_QTY_IMUNIT.
    move  lips-VRKME TO wa_item-SALES_UNIT.
    MOVE  'KGM'      TO WA_ITEM-SALES_UNIT_ISO.
    MOVE LIPS-MEINS  TO WA_ITEM-BASE_UOM.
    MOVE 'KGM'  TO WA_ITEM-BASE_UOM_ISO.
    append wa_item to it_item.
    move lips-vbeln to wa_conf-DELIV_NUMB.
    move lips-posnr to wa_conf-DELIV_ITEM.
    move 'X' to wa_conf-CHG_DELQTY.
    append wa_conf to it_conf.
    endif.
    CALL FUNCTION 'BAPI_OUTB_DELIVERY_CHANGE'
      EXPORTING
        HEADER_DATA               = i_hdata
        HEADER_CONTROL            = i_head
        DELIVERY                  = v_vbeln
      TECHN_CONTROL             =
      TABLES
      HEADER_PARTNER            =
      HEADER_PARTNER_ADDR       =
      HEADER_DEADLINES          =
       ITEM_DATA                 = it_item
       ITEM_CONTROL              = it_conf
      ITEM_SERIAL_NO            =
      SUPPLIER_CONS_DATA        =
      EXTENSION1                =
      EXTENSION2                =
        RETURN                    = it_return
      TOKENREFERENCE            =
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    I need to update Qty to the outbound delivery for an given item.
    Thanks for your quick response.
    With Regards,
    Bala Sankar
    9900433488

    Hi Bala,
    make sure you are setting...
    itemdata-dlv_qty
    itemdata-dlv_qty_imunit
    itemdata-fact_unit_nom     e.g = 1.
    itemdata-fact_unit_denom  e.g = 1.
    Rgds
    Glenn

  • 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

  • Is there any way to disable update check for a specific add-on?

    There are a few add-ons I have problems with their latest versions. So i don't want to update them. But everytime there are any updates for other add-ons they also appear and need to be unchecked. Is there any way to disable update just for them permanently?

    Yes, but it is not straightforward. For details see [http://kb.mozillazine.org/Updating_add-ons Updating add-ons - MozillaZine Knowledge Base]

  • Display values in different versions for 3 specific years

    Hi
    I want to show in a dynamic report and in a dynamic input schedule values for different versions ACT and PLAN via Excel client.
    In the rows are entity, time (for 2009, 2010, 2011) and version. And in the columns are special time dimension to show month. Sounds very strange - and it is so... Now I want to show only values for ACT for year 2010 and PLAN for 2011.
    How can I enter the dimension within the expansion area? Is there a way to combine 2 different dimensions like a statement "where time is 2010 and version is ACT"?
    Thank you very much for your ideas

    Hi Nilanjan
    Thank you for your post.
    I'll give EVTIME a try. But it will not solve my problem I guess. EVTIM is helpful for columns to use offset I do understand. Can I use it within expansion area of EVDRE function?
    The display behavior has to be dynamaic. Cause there is in the first expansion dimension entity with a hierarchy. 2.nd expansion is year and 3.rd is version. And I only want to see ACT row for 2009, FC row for 2010 and  PLAN row for 2011. Next 3 rows must be the next item of dimension entity and so on...
    Currently I see 2009 ACT, 2010 ACT and 2011 ACT same like 3 HR and 3 PLAN rows.
    Any ideas?

  • Unable to update apps for iPad Air in iOS 8.1

    Unabl

    I'Ve had the same problem since I updated to IOS 8. I then updated again to 8.1 still have the same problem. Now my app store icon is telling me that 17 apps need updating but when I try all the apps go into waiting mode. I tried to update 1 app at a time, doesn't work.  I have tried everything, reset, restore, delete apps, reinstall, nothing works. I saw some suggestions regarding the Wall Street Journal (WSJ) app but i don't have that app. Can someone please help?

  • Unable to update CC for desktop. Error code:2

    I can not update CC tool for managing application. Error code: 2. My OS is Win 7(64bit).
    Can anyone help me?

    Hi Tomas,
    Please use the below Kb article for resolution.
    Creative Cloud desktop failed to update.(Error code: 2)
    Cheers,
    Kartikay Sharma

  • Unable to generate report for a specific user

    Hi all,
    I have a simple report in Agreements screen. The report is working fine when i Use another developer's id. But when i login using my Id and click the reports icon, it throws the following error.
    " SBL-DAT-00382: The same values for '<?>' already exist.
    If you would like to enter a new record, please ensure that the field values are unique. "
    i have tried generating the report for the same agreement id. The report throws the error only when my login id is used and succesfully generating for other ids.
    Pl help me understand.
    Thanks
    Sri

    978849 wrote:
    Hi all,
    I have a simple report in Agreements screen. The report is working fine when i Use another developer's id. But when i login using my Id and click the reports icon, it throws the following error.
    " SBL-DAT-00382: The same values for '<?>' already exist.
    If you would like to enter a new record, please ensure that the field values are unique. "
    i have tried generating the report for the same agreement id. The report throws the error only when my login id is used and succesfully generating for other ids.
    Pl help me understand.Understand that this has nothing to do with Oracle Application Express (APEX) which is the topic of this forum. Why have you posted this here?

  • I am unable to update either iTunes or iPhone or iPad or ipad2.  After timing out I am instructed to check network setting and ensure connection is active. Connection is ok, all other downloads work ok as does iTunes and sync.  Any suggestions?

    I am unable to update software for iTunes, iPhone, iPad, or iPad 2. Installation times out and recommends I check network settings and the connection is active. It is   There are no problems with other downloads/installs. iTunes, sync and devices work fine otherwise. Any suggestions?

    Could you post your diagnostics for us please?
    In iTunes, go "Help > Run Diagnostics". Uncheck the boxes other than Network connectivity tests, as per the following screenshot:
    ... and click "Next".
    When you get through to the final screen:
    ... click the "Copy to Clipboard" button and paste the diagnostics into a reply here.

  • Camera RAW 5.6 Update - OK for PSE 7.0?

    Is the
    Camera RAW 5.6 update suitable for Elements, specifically say PSE 7.0 onwards?

    Indeed it is different. But it appears to work fine in PSE 8.
    The method I used below is for a manual install of ACR 5.6 for PSE 8 running on 64-bit system.
    If you are running on a 32-bit system and/or are using PSE 7, it will probably be  a bit different.
    1 After unzipping the ACR 5.6 download file, navigate to the
    \Adobe Camera Raw 5.6\extensions\AdobeCameraRaw5.0All-xxxxxxxxxx\Assets” folder (ie, the top folder, not the x64 folder)
    2. Copy the 1003 file to a new folder and rename it “Camera Raw.8bi”
    3. Navigate to the “Program Files (x86)\Common Files\Adobe\Plug-Ins\Elements 8\File Formats” folder. Move the Camera Raw.8bi file to another folder for safe keeping.
    4. Move the file you created in step 2 into the folder listed in step 3.
    5. Return to the ACR 5.6 folder and navigate to the \Adobe Camera Raw 5.6\extensions\AdobeCameraRaw5.0All-x64-xxxxxxxxxx\Assets” folder.
    6. Copy the 1003 file to another new folder and rename it “Camera Raw.8bi”
    7. Navigate to the “Program Files (x86)\Adobe\Photoshop Elements 8.0\Plug-Ins\File Formats” folder. If there exists a Camera Raw.8bi file, save/move it as in step 3 above.
    8. Move the file you created in step 6 into the folder listed in step 7.
    When you open a .cr2 file in PSE 8, you will be greeted with a notice stating that you are using a beta version of ACR.
    Nothing like a straight forward install  :-)
    JIm

  • Configurator is 'Unable to Update iOS". Error 11 (Preflight options copy fail)

    I'm attempting to restore 720 iPads to factory settings, and place a Configurator profile on them.
    I'm using a Bretford Cart that holds up to 30.
    Everytime I run configurator, it's unable to update iOS, and it specifically says that It "failed to copy preflight options during recovery mode restore. Error 11."
    Half of them work, and are done correctly, and the other half give the error.
    Some of the iPads are on iOS 5, I'm sure, considering the amount of iPads that I'm dealing with. Could this be the issue?
    What am I doing wrong?

    It's been a while, but I think I had to finally completely reset all of them to factory settings, and run them through the entire system again.
    It could be the cart (and configurator) having a problem applying settings to multiple OS installs. I'd put my money on this being the issue.

  • Multi-master replication and replica_update_ruv: unable to update

    I'm running Sun ONE 5.2 DS on Solaris 8 with multi-master replication comprising of 2 masters (M1 & M2) and 2 consumer replicas (R1 & R2).
    M1 sends updates to consumers R1 and R2, M2 sends updates to R2 and R1 (and offcourse M1 to M2 and M2 to M1).
    Replication works well at all times. However, occasionally there are a few annoying messages in the consumers' error log files (which do not affect the replication):
    INFORMATION - NSMMReplicationPlugin - conn=-1 op=-1 msgId=-1 - csnplCommit: can't find csn 4054e7710
    000ffff0000
    INFORMATION - NSMMReplicationPlugin - conn=-1 op=-1 msgId=-1 - ruv_update_ruv: cannot commit csn 405
    4e7710000ffff0000
    INFORMATION - NSMMReplicationPlugin - conn=-1 op=-1 msgId=-1 - replica_update_ruv: unable to update
    RUV for replica o=asx.com.au, csn = 4054e7710000ffff0000
    Has anyone come across this scenario? The explanation that I found on the web refers to 4.x Master and 5.1 DS but I do not have any of that and "Allow replicas to be 4.x compatible" is not set.
    Below is the extract from "Release Notes for iPlanet Directory Server 5.1 Service Pack 1" found on the web:
    "In a topology, where an iPlanet Directory Server 5.1 Service Pack 1 is a Dedicated consumer of a 4.x directory server supplier (4665571), messages of the following type will be written to the error log:
    NSMMReplicationPlugin - csnplCommit: can't find csn 3d0f496f0001ffff0000
    NSMMReplicationPlugin - ruv_update_ruv: cannot commit csn 3d0f496f0001ffff0000
    NSMMReplicationPlugin - replica_update_ruv: unable to update RUV for replica <suffix> csn = 3d0f496f0001ffff0000
    To prevent such a situation from occuring, configure the iPlanet Directory Server 5.1 Service Pack 1 instance as a Single Master (because a 5.x master may also be a consumer)."
    Thanks in advance,
    Erika

    I have had a similar problem. and it was due to that I recreated a new replication agreement which pointed to a different server with the same id. Or to the same server with a different ID.
    The solution provided by sun was to remove the reference to the old replicas in the dse.ldif and restart but it didn't work out. not even by ldapmodify on the replicas dn.
    I had to reinstall...

  • Unable to Update Project Thumbnail - Disk May Be Full

    When I open iMovie, all of my projects have an alert message indicating "Unable to update thumbnails for project 'XXXXX.rcproject'. Your disk may be full." Thankfully when I say OK to each alert message my project thumbnails do appear and each project appears to be ok. Any thoughts on how to get rid of the alert messages?
    Thanks

    I have had the same issue, but it does not appear that others have answered. Wondering if you have received any answers independently? I have an Elgato 250 plus and an iMac 27" computer for background. I also sent a query to Elgato last evening - no response as of yet though.
    "I have successfully recorded through my eyeTV 250 plus older home movies that had been recorded in several formats (VHS tapes, 8mm cassette tapes, some DVDs where I recorded some old tapes via a Panasonic HDD, and in some cases I had to use the Master DVD RAM disks as some of the original tapes were degraded. They transferred successfully as eyetv recordings.
    Next I exported these to iMovie. In total there were 90 recordings that I made. Most transferred satisfactorily and were ok. But a total of 16 gave me an error message as follows (one example):
    "Unable to update thumbnails for project '1996-09_ PMHS Soccer - Roberto - PMHS vs Western Wayne - September 3, 1996.rcproject'. Your disk may be full."
    The disk is not full as I have some 800gb of total disk space. I do not know if it is due to a recording issue or choices made when exporting or an iMovie issue. I have not been able to find any on-line similar issues published, so I am exploring this issue with you as well as Apple in parallel. I also recall seeing another error message once referring to "quartz video card??".

  • HT201263 I have an iPod Touch which I've had for almost 4 years, with 32 GB of memory. I am unable to update it, and consequently cannot install any newer apps. I am very disappointed that I spent a lot of $$; now Apple wants me to spend $$ again to get a

    I have an iPod Touch which I've had for almost 4 years, with 32 GB of memory. I am unable to update it, and consequently cannot install any newer apps. I am very disappointed that I spent a lot of $$; now Apple wants me to spend $$ again to get a new one. As I mentioned, I am pretty upset. Does anyone know if there's a work around?

    I suspect you have a 2G iPod. Those can only go to iOS 4.2.1.
    Identifying iPod models
    iPod touch (3rd generation)
    iPod touch (3rd generation) features a 3.5-inch (diagonal) widescreen multi-touch display and 32 GB or 64 GB flash drive. You can browse the web with Safari and watch YouTube videos with Wi-Fi. You can also search, preview, and buy songs from the iTunes Wi-Fi Music Store on iPod touch.
    The iPod touch (3rd generation) can be distinguished from iPod touch (2nd generation) by looking at the back of the device. In the text below the engraving, look for the model number. iPod touch (2nd generation) is model A1288, and iPod touch (3rd generation) is model A1318.

Maybe you are looking for

  • Installing Visual c++ express and plugin wizard

    Hi I am new to SDK and trying to get everything set up so I can begin development of an acrobat plugin in visual c++ studio express 2008. I found the plugin wizard in the acrobat 7 sdk (absent from sdk 8) but I am having difficulty running it. I am g

  • Anyone using 4.0 Beta 5 on MAC and noticing Adobe Flash creating boxes when moving away from site where flash is used?

    Just upgraded to FF 4.0 beta 5 - noticing that when I visit a new page that uses Flash, I navigate away or to other sites and the box that Flash used is blanked out and super-imposes itself over the page. That means when I move from the flash page, t

  • LabVIEW 8.2 style Palettes in LabVIEW 8.5?

    I am about to upgrade to LabVIEW 8.5 BUT I hate the palette changes. Anyone know how to get the 8.2.1 style palettes on 8.5? What about at least disabling the hidden menu system where you have to click the two down arrows to see the full palette? Tha

  • Default-web-access.log

    hi all, first i am sorry to post here but i am confuse i have application server 10g on unix 5.10 and my database is 10g.2 my application server is only tier without infra ,now all user who access the database take more time to call the forms i serac

  • Can't modify clip speed iMovie 10

    can't modify clip speed iMovie 10...speed controls in top menu light and keystroke shortcuts have no effect?