Headcount planning issue

Hi,
I am working on NWBPC 7.5 version, i have a problem with Headcount planning
The headcount planning is by Positions and it is incremental planning.
I have created two dummy account for headcount and salarybypoistion, so positions and both the dummy accounts in rows and time is columns.
I have assumption for salary increase rate.
so my total salry calaculation is need to be post in to SALARY COA account
what is the best way perfrom calculation?

Hi Naresh,
Here my clear requirement
Our planning every year start at august
I have my total headcount avaialbale until the july fo that year in 2011.TOTAL
Plan data enter for 2011.AUG to future 2 YEARS.
ACTUALS
Posititon       50001
heacount         20
time            2011.total
salary            5000USD
Planning for smae position
time           2011.august
headcount      2
time           2011.sep
headcount     1
2011.august  headcount should be 20+2 = 22
2011.sep       headcount = 2021=23
for slaalrys there is increase rate common for all periods (say increaserate 5%) , the increase rate is common for all postions
2011.august  salary   5000*5/100+5000=5250
same for all periods for that postions
total salary for
2011.aug   22*5250 =some amount
2011.sep   23*5250 = somamount
like that all postions amount need to be transfered to COA(CHARTOF ACCOUNT) for total slary.
If you have any doubt please let men know

Similar Messages

  • MSS Headcount planning-status 'Planned'

    Hello All,
    When Manager performs man power planning through Headcount Planning service in MSS, the number of manpower requisitons are getting updated into the IT1019 with "Active" planning status.
    As per our requirement we have to capture these requisitions in IT1019  with "Planned" planning Status.
    Do we need to make any specific settings for MSS?
    Note: We are on ECC 6.0
    Thanks
    Karthik

    This issue is resolved.

  • Planned issue

    Hi,
    We are usig REM scenario. We require a report which shows the actual issues & planned issues for the components & the variance. Actual issues ca be obtained from table MSEG through movement types. How to get planned issues considering that a component may be used in many BOM's.
    Matter very critical.
    regards,
    Mohit Goyal

    Thanks Srikanth for promp reply.
    But i am not looking for PIR data. I need standard issues of the component as per the BOM.
    For example a component is used in 5 BOM's. Now corresponding to actual issue of the component , planned/standard issue is required for the component. This way we can further calculate the variance.
    Hopefully the requirement is clear.
    regards,
    Mohit Goyal

  • Workspace - planning issue.

    HI,
    I have issue with logging into workspace and opening a planning application.
    I am able to login into workspace without an issue .
    Before that . I have configured using IIS ( instead of apache ) on port number 80 and with weblogic 45000.
    Now, i am able to open it on both 80 and 45000, and I see the following error in both the cases.
    The errors are :
    1. Invalid or could not find module configuration.
    2. Required application module HyperionPlanning.planning is not configured. Please contact your administrator.
    3. Communication Error
    I have seen the errors in other posts of the forum. but In my case it does not work both on 80 and 45000.
    pls help.

    Hi,
    If you can't access planning through http://<planning machine>/HyperionPlanning/ then IIS set up must not of been successful.
    By default it uses a isapi redirect filter to redirect from IIS to the correct port of say planning.
    It is picked up from \Hyperion\common\appServers\Tomcat\5.0.28\isapi\isapi_redirect-1.2.14.dll
    If you go into IIS management and select properties for your web server, under the ISAPI filters tab you should see the status of the filter.
    It is configured using the property files :- uriworkermap.properties and workers.properties
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Subquery execution plan issue

    Hi All,
    Oracle v11.2.0.2
    I have a SELECT query which executes in less than a second and selects few records.
    Now, if I put this SELECT query in IN clause of a DELETE command, that takes ages (even when DELETE is done using its primary key).
    See below query and execution plan.
    Here is the SELECT query
    SQL> SELECT   ITEM_ID
      2                         FROM   APP_OWNER.TABLE1
      3                        WHERE   COLUMN1 = 'SomeValue1234'
      4                                OR (COLUMN1 LIKE 'SomeValue1234%'
      5                                    AND REGEXP_LIKE (
      6                                          COLUMN1,
      7                                          '^SomeValue1234[A-Z]{3}[0-9]{5}$'
      8  ));
       ITEM_ID
      74206192
    1 row selected.
    Elapsed: 00:00:40.87
    Execution Plan
    Plan hash value: 3153606419
    | Id  | Operation          | Name        | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |             |     2 |    38 |     7   (0)| 00:00:01 |
    |   1 |  CONCATENATION     |             |       |       |            |          |
    |*  2 |   INDEX RANGE SCAN | PK_TABLE1   |     1 |    19 |     4   (0)| 00:00:01 |
    |*  3 |   INDEX UNIQUE SCAN| PK_TABLE1   |     1 |    19 |     3   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("COLUMN1" LIKE 'SomeValue1234%')
           filter("COLUMN1" LIKE 'SomeValue1234%' AND  REGEXP_LIKE
                  ("COLUMN1",'^SomeValue1234[A-Z]{3}[0-9]{5}$'))
       3 - access("COLUMN1"='SomeValue1234')
           filter(LNNVL("COLUMN1" LIKE 'SomeValue1234%') OR LNNVL(
                  REGEXP_LIKE ("COLUMN1",'^SomeValue1234[A-Z]{3}[0-9]{5}$')))
    Statistics
              0  recursive calls
              0  db block gets
              8  consistent gets
              0  physical reads
              0  redo size
            348  bytes sent via SQL*Net to client
            360  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processedNow see the DELETE command. ITEM_ID is the primary key for TABLE2
    SQL> delete from TABLE2 where ITEM_ID in (
      2  SELECT   ITEM_ID
      3                         FROM   APP_OWNER.TABLE1
      4                        WHERE   COLUMN1 = 'SomeValue1234'
      5                                OR (COLUMN1 LIKE 'SomeValue1234%'
      6                                    AND REGEXP_LIKE (
      7                                          COLUMN1,
      8                                          '^SomeValue1234[A-Z]{3}[0-9]{5}$'
      9  ))
    10  );
    1 row deleted.
    Elapsed: 00:02:12.98
    Execution Plan
    Plan hash value: 173781921
    | Id  | Operation               | Name                        | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | DELETE STATEMENT        |                             |     4 |   228 | 63490   (2)| 00:12:42 |
    |   1 |  DELETE                 | TABLE2                      |       |       |            |          |
    |   2 |   NESTED LOOPS          |                             |     4 |   228 | 63490   (2)| 00:12:42 |
    |   3 |    SORT UNIQUE          |                             |     1 |    19 | 63487   (2)| 00:12:42 |
    |*  4 |     INDEX FAST FULL SCAN| I_TABLE1_3                  |     1 |    19 | 63487   (2)| 00:12:42 |
    |*  5 |    INDEX RANGE SCAN     | PK_TABLE2                   |     7 |   266 |     3   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       4 - filter("COLUMN1"='SomeValue1234' OR "COLUMN1" LIKE 'SomeValue1234%' AND
                  REGEXP_LIKE ("COLUMN1",'^SomeValue1234[A-Z]{3}[0-9]{5}$'))
       5 - access("ITEM_ID"="ITEM_ID")
    Statistics
              1  recursive calls
              5  db block gets
         227145  consistent gets
         167023  physical reads
            752  redo size
            765  bytes sent via SQL*Net to client
           1255  bytes received via SQL*Net from client
              4  SQL*Net roundtrips to/from client
              3  sorts (memory)
              0  sorts (disk)
              1  rows processedWhat can be the issue here?
    I tried NO_UNNEST hint, which made difference, but still the DELETE was taking around a minute (instead of 2 minutes), but that is way more than that sub-second response.
    Thanks in advance

    rahulras wrote:
    SQL> delete from TABLE2 where ITEM_ID in (
    2  SELECT   ITEM_ID
    3                         FROM   APP_OWNER.TABLE1
    4                        WHERE   COLUMN1 = 'SomeValue1234'
    5                                OR (COLUMN1 LIKE 'SomeValue1234%'
    6                                    AND REGEXP_LIKE (
    7                                          COLUMN1,
    8                                          '^SomeValue1234[A-Z]{3}[0-9]{5}$'
    9  ))
    10  );
    The optimizer will transform this delete statement into something like:
    delete from table2 where rowid in (
        select t2.rowid
        from
            table2 t2,
            table1 t1
        where
                t1.itemid = t2.itemid  
        and     (t1.column1 =  etc.... )
    )With the standalone subquery against t1 the optimizer has been a little clever with the concatenation operation, but it looks as if there is something about this transformed join that makes it impossible for the concatenation mechanism to be used. I'd also have to guess that something about the way the transformation has happened has made Oracle "lose" the PK index. As I said in another thread a few minutes ago, I don't usually look at 10053 trace files to solve optimizer problems - but this is the second one today where I'd start looking at the trace if it were my problem.
    You could try rewriting the query in this explicit join and select rowid form - that way you could always force the optimizer into the right path through table1. It's probably also possible to hint the original to make the expected path appear, but since the thing you hint and the thing that Oracle optimises are so different it might turn out to be a little difficult. I'd suggest raising an SR with Oracle.
    Regards
    Jonathan Lewis

  • Contract , billing plan issue

    Hello
    I am having issue where I have cancelled billing document corresponding to a contract, then also I canu2019t rebill the contract. I found in the header billing plan the status is showing is B(Partially processed) which is partially processed and for a line item it is showing C(Completely  processed), though I have cancelled all the invoices. Can some one help.
    David

    David
    Try running reports SDVBUK00 and RVV05IVB  to correct the status and/or billing index after carefully reading their documentation.
    Hope this helps.

  • Costcenter planning issue

    hi guys,
    I am facing with a problem like when i am trying to use the t.code: KP06 To use the cost center planning it is asking for a planner profile. i had tried to use the default profiles but it is giving an error like  Entry  does not exist in TKA50 (check entry).
    Please tell me how to solve the issue.

    Dear,
    Use Path
    SPRO > Controlling > Cost Center Accounting > Planning > Manual Planning > Define User-Defined Planner Profiles.
    Select the profile you want and click on General Controlling.
    Select Cost ctrs: Cost element/activity inputs then click on Layout for Controlling and enter layout created by you or enter any existing one.
    Once you have done all settings here go to KP06 and use SETTINGS > SET PLANNER PROFILE and enter the profile you maintained settings for.
    Regards,
    Chintan Joshi.

  • Milestone Invoicing Plan Issue

    Hi All,
    We have successfully  configured Milestone Invoicing Plan Scenario, but are facing one issue. We were successfully able to transfer PS invoicing plan to PO. After milestone is confirmed when we go to check PO in DISPLAY mode, block is still there. If we just switch to CHANGE mode in PO without doing anything else, the block disappears. Hence the functionality appears to be working but we have to switch to change mode and save PO once.Please let us know if anyone faced this issue earlier and what was the resolution.
    Thanks in advance.

    Hi Ankesh,
    It's the standard behavior in SAP. Contacted OSS.. no help. finally with the Help of WF and PO maintain BAPI we made that to Work

  • SQL Server Maintenance Plan Issue

    SQL Server Version:
    Microsoft SQL Server 2005 - 9.00.5000.00 (Intel X86) 
    Dec 10 2010 10:56:29 
    Copyright (c) 1988-2005 Microsoft Corporation 
    Enterprise Edition on Windows NT 5.2 (Build 3790: Service Pack 2)
    Issue : Maintenance Plan - DB backup plan & TRN Log backup plan skipped / some times not deleting the old backup files.
    Error : Failed to retrieve date for this request (Microsoft.SqlServer.SmoEnum)
    Additional Informaiton
    An exception occurred while executing a Transact-SQL statement or batch.
    (Microsoft.SqlServer.ConnectionInfo)
    A Server error occurred on the current command.
    The results, if any should be discarded (Microsoft Sql Server)
    Any experts can help me to resolve this issue.
    Thanks
    drmrpush
    MRVSFLY

    Hello,
    Same issue reported here:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/601fd83c-c49f-4bf8-b69d-95431197652d/maintenance-plan-is-not-opening-on-sql-server-2005-sp2?forum=sqlkjmanageability
    Please check solution on :
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/3e53ba8b-ea23-4629-98db-43c80ba9888e/cannot-save-maintenance-plans?forum=sqltools
    This problem occurs if some of the stored procedures while installing SP2 has not been applied successfully. So manually run the script below and it may resolve
    your issue. It resolved ours and we went throught exact same process of re-installing several times.
                    1)     
     First go to the folder Install . The default location is this = “C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Install “ .
    Please post back still your issue not resolves.
    2)     
    Then in this folder find this “sysdbupg.sql” .
    3)     
    Please open this script with a nodepad.
    4)     
    Then copy the
    whole script and then paste it in the Query window of the Management studio.
    5)     
    Then execute this script.
    6)     
    Once this script has been successfully executed, The issue should be resolved.
    Regards, Pradyothana DP. Please Mark This As Answer if it solved your issue. Please Mark This As Helpful if it helps to solve your issue. ========================================================== http://www.dbainhouse.blogspot.in/

  • Workforce planning- issue with available capacity

    Hi All,
    I have an issue in workforce planning. I have created a workcentre and have entered the required details in capacity tab to arrive at available capacity. The available capacity for this workcentre is visible in transaction CM01.
    I have done the workforce palnning using worcentre view in transaction CMP3, but for some reason I am unable to see the workcentre avaliabile capacity. I only see the distributed total requirements.
    Would appreciate any pointers on this.
    Regards
    Pradeesh

    Regarding the availablity of CMP3, it refers the availability of  assigned persons rather than the work centers.
    Please check the involved person with transaction PA30 using infotype 007
    (see details in consultant note 543362).
    Kind regards,
    Zhenbo

  • Load Plan issue

    Hi Experts,
    I have created 3 load plans as below:
    1. LP_Stag
    2. LP_DWH
    3. LP_Main
    The flow is as below:
    LP_Main - Serial steps
    Step 1: Set variables
    Step 2: Calling LP_Stag using odistartloadplan
    Step 3: Calling LP_DWH using odistartloadplan
    Step 4: A procedure updating error_log tables
    Everything in LP_Main is executing serially, the only issue is that step 4 is not considering the child process of LP_Stag and LP_DWH
    Step 3 and 4 is getting executed in seconds since it only has 1 step to start the load plan. This is treating LP_Stag and LP_DWH independently. Step 3 is not waiting for step 2 (Entire LP_Stage and its child) to get complete. Similarly, Step 4 is not waiting to complete (LP_DWH and its childs).
    How I want it to Happen:
    Step 3 should be started only if LP_Stag and its steps get complete. Similarly, Step 4, should be started once, LP_DWH and its steps are completed. The errog_log procedure is executed in parallel with LP_DWH and its steps.
    Pls help.
    I can create only single LP, however, I am looking solution to this issue.
    Thanks,
    Andy

    Hi
    have you check the constraint on table level in ODI studio>Designer>Model tab>Source table
    Regards,
    Phanikanth

  • WebLogic 10.2 Annotation Override/Deployment Plan Issue

    We're migrating applications from WLS 9.2.1 over to 10.2. When we create the deployment plan and configure the overrides we find that some of the web service controls overrides are ignored and the defaults are used.
    This was not an issue for 9.2.1 and I've not been able to find any information about this.
    Has anyone experienced this before?
    Chris

    This issue turned out to be a missing target during the ant build process.

  • Planning issue

    Hi Gurus,
      I've an issue . Materials are planned on the Weekend days even factory calender is working only five days./week And in MRP screens  We assigned the Planning calender with weekly lot size.
      With Reagrds,
      Laxman

    Looks like your PLanning calender is not in sync with factory calendor.
    Regards
    Ratan

  • Employee Head Count Planning issue

    Dear Gurus,
    I hope you are doing good...    
    We have requirement in our project which is User wants to enter HeadCount Working days to different cost centers.
    Existing Configuration :
    1) We have mapped employees to respective cost centers(Fixed)
    2) User can enter working hours data for that cost center with out an issue
    Requirement
    User has that flexibility to select different cost centers and the entered working hours data needs to be saved.
    Ex : Employee 10001 is mapped to Cost Center 12345.
    Process - 1)Employee 10001 working hours mapped to Jan , Feb and March to cost center 12345.
                    2) Employee 10001  working hours mapped to Apr , May , Jun          to Cost center 1236.
    In the above case first instance it is possible because we have maintained this employee under 12345 cost center as hierarchy.
    How we need to achieve the second instance since we are not able to map to multiple cost centers.
    Please can any one help us in this issue.
    Regards,
    Satish 

    Hi Satish,
    What do you mean by mapping? Do you have costcenters as nodes in employee dimension?
    Vadim

  • Capacity planning issue

    Dear all
    My customer has two actor types: project managers PM and 7 work center managers WCM, with strong antithesis: PM looks at project quality and productivity; WCM looks at his resources capacity planning.
    Every PM defines wbs basic start / finish dates with appropriate, large and comfortable time lag. Into this time lag, during the capacity planning, the WCMs can set definitive activity start / finish dates, by their needs (and with user status communicates to PM the happened choice) .
    The generic project is composed of more wbs elements and 7 networks: all activities of a generic network are assigned to only one work center. Every lowest wbs element has only one activity.
    Every PM plans dates (large and comfortable) and efforts on network activities; schedules via bottom up and copies wbs scheduled dates on basic dates. After, CP sets the top down scenario and save the project. In IMG, network profile, the type of checking during top-down time scheduling is u201CEu201D:  exit with error (transaction code OPUU).
    Every WCM using transaction code CM01 doesnu2019t see the WBS constrains. So doesnu2019t know the wbs dates range. Moreover the WCMs donu2019t like a dashboard like CM01 because it is not user friendly. They prefer a graphical dashboard. 
    My personal idea to resolve this issue is use transaction code CM21 or similar with the display of wbs time lag. Is it possible?
    Is there anyone who could help me, please? I am also interested in other technical solution.
    Thanks in advance.
    Salvo50

    Venky,
    1) Sales order when enter in the system can perform the capacity availability check ?
    Not in ECC/R/3.  However, in APO this is possible.
    2) The delivery dates & confirmation in the sales order is on what basis?
    Depends on how you have configured your availability check.  There are a number of possibilities.  Many companies confirm MTS orders to Total Replenishment Lead time in the Material master.  Other companies leave the orders unconfirmed until Planning has created supply elements (production orders).  
    As far as the delivery date is concerned, it can also start with the confirmed material availability date as calculated by ATP, and then additionally schedule in the warehouse pick-pack-load times, and route transit time (the time it takes to move the shipment from your loading dock to the customer's location.
    In 'Assemble to order' (a special version of Make To Order) it is possible to confirm to the scheduling time of the supporting Finished goods production orders combined with the availability of the components of the FG production order.
    In R/3, some companies will confirm the MTS sales order to a date that is farther into the future than the actual estimated process time including capacity backlog.  Then, they run MRP to create planned orders.  Then, they run Capacity leveling.  Then, they run BackOrderProcessing (rescheduling) of the sales orders to re-confirm to the planned or production orders that have been capacity leveled.  In this way, Sales orders are indirectly confirmed to capacity.
    Consult with your local SD and PP ATP experts to discover the options available.
    Rgds,
    DB49
    Edited by: Dogboy49 on Jan 6, 2010 10:37 PM

Maybe you are looking for

  • Scanning multiple pages in one document

     I am trying to scan multiple pages in one document.  I am using a HP Envy 4501 All-in-one and running Windows 8.1.  I used to be able to do this at one point but for some reason, lately I am not able to.  I have read other posts that spoke of a "+"

  • Why do I need to connect my Ipad mini with my Mac Book Pro via iCloud?

    Why do I need to connect my Ipad mini with my Mac Book Pro via iCloud? I don't have iCloud on my MacBook Pro and only intend to use the mini to check e-mail and use Garage Band and Photo Booth for song writing when traveling . . .

  • How can I change the font to multiple titles at the same time?

    Hey guys, quick question. I have a bunch of titles and lower thirds in my project and my producer decided that he didn't like the font we were previously using and wants to change it to a new one. He seems to do that pretty often. Is there a way to "

  • DMP TABLE IMPORT IN ORACLE 10G

    Dear All, i have an Oracle 8i DB in Windows 2000 server . I am export One table to x.dmp. I have an Oracle 10g Db in Windows 2000 server with Cluster option. One is data base server and 2 is O/s of Windows 2000 . So, How to import .dmp to 10 g db. I

  • Payment terms field as reuired field

    hello gurus where i have to configure for payment terms field as a required field at the time of making Purchase order. Thanks Venkat.P