Associating Development-plan with position

Hi.
We are trying to implement the Development-plan sub-module in our system and thus we are new to the whole deal.
We created a Development-plan using transaction "OOEC" and were able (we think...) to associate it to an employee, but what we realy want is to be able to associate a Development-plan to a Position (STELL).
Any ideas will be welcome.
thanx
ayal & Shlomit.

Hi Karthik
Are you using flexible template or Pre Defined Template
Below link might be useful
Flexible appraisal processes vs Development Plan
Thanks
RAjdeep
Edited by: rajdeepk on Oct 4, 2011 3:16 PM

Similar Messages

  • Development Plan

    Hi all,
    Good Day!
    I want some clarification on development Plan and Training & Event Management. What is difference between these two and y we required both? I have not clear idea about development plan, how it will be conducted ? what is the impact of this ? how this process will proceed and is there any relation between these two?
    Can anybody will share his experience in this regard?
    Thanks & regards,
    Neeta Verma

    Hi Neeta & Crista:
    I guess from my perspective, the Development Plan is broader than Training & Event Management.  Part of your Development Plan CAN be to take courses in order to grow the employee, however, the Development Plan can also be about other items, such as receiving mentorship or something along those lines.
    In ECC 6.0 EHP4, you can integrate your Development Plans with LSO (as well as with the Qualification Catalog), but you can also add development objectives that would not be solvable by taking a course.  So another example might be that you would include in your development plan that the employee should hold a position rotation in logistics over the next x months.
    There is no integration that I know of between the Development Plan and the Appraisal Template as of EHP4.
    As to the final question, out of the box the Development Plan is NOT available to both the employee and the manager, which is a bit of a bummer.  In the SAP help document for EHP4, they specifically note hypotheticals that address how the manager and HR work out the Development Plan, not the employee.  Candidly, this seems a little counter-intuitive that the employee would play no role in their own Development Plan, but maybe there's a reason I don't understand.
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/3f/6efcf555334d9e981c36e253dc2aec/frameset.htm
    Thanks,
    Chris

  • Book a participant to a course via Profile  / Individual development plan

    Dear experts, I'm meeting a problem with transaction PPPM :
    A person has beens assigned an Individual development plan with course types.
    I want to put the status current to the course type in order to make the booking.
    Then I have a pop'up with the message : "Teilnahme buchen (Integration LSO in PD) is being performed."
    Then I click yes and arrive on the course booking page.
    I Select the course.
    I click on book and nothing happens, and nothing happens.
    I click on save and nothing happens.
    When I chek the participant list the person isn't booked.
    I already checked the plogi quali that is set on "1 A032 Q".
    Can someone hlp please?
    Thank you for your replies.
    FLO

    Hi,
    Are you using Training & Event Management or Learning Solution?
    Regards,
    Dilek

  • PD - Qualifications - Development Plan - Appraisal - Events

    Hi
    I am reading and studying up about Personell Development. I have a good overview of what SAP HR has to offer for these different areas. However I would like to get practical input on how it is actually already being implemented.
    Here is how I understand it thus far.
    You assign Qualifications to People (appointed in HR) and you can match it with Qualifications that you have attached to a Job Category (for example). Then you can set up appraisals and development plans for each individual, and business events can be kicked off during such a development plan. This is obviously very high level and I can see from all the help files it has a lot to offer.
    Do some of you have input as to what parts of PD is currently being used, and being found sufficient, or do all of the different areas have to work together.
    Thanks
    Corne

    Hi Corne,
    About PD, users can see the benefits of following functions:
    *Qualification catalog --> input all qualifications and requirements
    *Profiles --> assign (from catalog) qualification to each profiles
    - Qualification profiles of persons
    - Requirement profiles of positions (or jobs)
    *Profile matchup function --> compare profiles (to find suitable position/candidate)
    -Career planning (to find suitable position)
    -Succession planning (to find suitable candidate)
    *Appraisal --> use different catalog (criteria catalog) --> assign criteria to each appraisal model --> launch appraisal
    *Individual planning --> develop paths --> create career (an EE must go through certain step, event... to achieve certain promotion...)
    About the last one individual planning, I think it's not practical for customers for many reasons. Or in other word, we dont use it in PD in general The core function of PD is profile match up, just focus on that.
    Huynh Thanh

  • How can I create a new Care Plan with one or more care tasks

    Hello,
    I'm working on a Dutch website in the HealthVault Environment. I got difficulties in creating and updating a careplan with care tasks. Most likely it's due to lack of knowledge...
    Following code works fine:
    CarePlan plan = new CarePlan();
    plan.Name = "test";
    this.PersonInfo.SelectedRecord.NewItem(plan);
    It creates a plan called [test]. But I don't know how to create a plan with one or more tasks in it: the tasks property is read only.
    https://msdn.microsoft.com/en-us/library/microsoft.health.itemtypes.careplan.tasks.aspx
    Half a year ago I was able to add an example of a careplan, which was a feature of the dev tools, but for some reason that's not possible anymore.
    https://developer.healthvault.com/DataTypes/Overview?TypeId=415c95e0-0533-4d9c-ac73-91dc5031186c
    So my question is, how can I add a new care plan with a task like the example from the HealthVault dev tools:
    <tasks>
    <task>
    <name>
    <text>Run 100 miles</text>
    </name>
    <description>Run 100 miles in 6 months</description>
    <start-date>
    <structured>
    <date>
    <y>2013</y>
    <m>12</m>
    <d>1</d>
    </date>
    </structured>
    </start-date>
    <end-date>
    <structured>
    <date>
    <y>2014</y>
    <m>6</m>
    <d>1</d>
    </date>
    </structured>
    </end-date>
    <target-completion-date>
    <structured>
    <date>
    <y>2014</y>
    <m>12</m>
    <d>31</d>
    </date>
    </structured>
    </target-completion-date>
    <sequence-number>279128532</sequence-number>
    <recurrence>
    <interval>
    <text>Once</text>
    </interval>
    <times-in-interval>10</times-in-interval>
    </recurrence>
    <reference-id>p01vil21ckg7k2346y1g60337mmi20sg564l321l8pmpqev39n302572sewu76lh9019s3993e02924</reference-id>
    </task>
    </tasks>
    Any help is welcome 
    Wilfred

    Hi Wilfred,
    Have you tried this?
    CarePlan plan = new CarePlan();
    plan.Name = "test";
    plan.Tasks.Add(someTask) 
    If you have a task list already, you would need to enumerate through it and add one by one...
    foreach (var task in existingList)
        plan.Tasks.Add(task)

  • Error while creating a Development plan template

    Hi Gurus,
    I am facing errors  while creating Development Plan Template.
    This is how it goes :
    When i click on Define Forms for Talent Assessment --> a wizard pops up & i select Development Plan :
    In first step, I am giving Title,Integration with SAP Learning Solution (check) & a rating scale.
    Now after clicking next, I am adding 2 development areas :
    1) Training
    2) Mentoring,
    now as soon as I'm clicking on End Configuration, It displays 2 errors & 1 warning message :
    error1 : Element Appraisal Template 'XXXXX' contains errors.Cannot change status.
    error2 : Value type 000000XXX of value class Q does not exists
    Warning 1 : You have maintained a description that is not displayed.
    In PHAP_CATALOG, when I'm trying to manually release the Criterion Group (VB) or Appraisal template (VA), it does not allow me to do it.
    Kindly let me know how to proceed further.
    Regards
    bharti

    Hi,
    Even though it gives the error,the new RTF template is uploaded and it is reflected when I query the template again.
    But when I run the Concurent program and see the output,the output still shows me the old template.
    Regards
    Jujaar

  • Strategy Plan with task list

    Hi all,
    can any one help me?
    I create a strategy plan with one maintenance item and one task list, with one task list item, for example. After scheduling I get a maintenance order with two items. One item from the task list and one from the maintenance item and it´s necessary to confirm both order items.
    It´s possible to create a maintenance order with only items from the task list?
    Thank you for your support
    Detlev

    Detlev,
    The PM/CS Order operations should only come from the task list that is assigned to the maintenance item.
    If you are getting additional operations than are on the task list then its possible that you have:
    - a system bug
    - developed some new functionality
    PeteA

  • Eclipse as a development environment with Jakarta Tomcat - Need help!!

    Hello:
    Subject: Eclipse as a development environment with Jakarta Tomcat
    I am setting up the new development environment for my application (project). Below are the components involved::
    �     Eclipse 3.1
    �     myEclipse - EnterpriseWorkbenchInstaller_4.0GA_E3.1
    �     jakarta-tomcat-5.0.28 (Application Server)
    �     Sysdeo Eclipse Tomcat Launcher plugin - tomcatPluginV31beta
    �     SDK 1.4.2_08
    �     Microsoft XP sp2 operating system
    I have no issue with creation of project structure in eclipse IDE, compilation, and deployment, but there are some exception upon running the application.
    My project folder structure as follows:
    MyApplication/
    src/
    Conf/
    Web/
    classes
    taglib
    lib
    web.xml
    �     my application has few dependent projects, therefore I copied all the dependent projects final compiled classes (jars) to �lib� folder.
    �     I set all necessary classpath according to tomcat documentation.
    �     I created MyApplication.xml file under D:\jakarta-tomcat-5.0.28\conf\Catalina\localhost\ folder with the below context
    <Context path="/MyApplication " docBase="D:/xx/xxx/dev/src/ MyApplication/web" debug="0" reloadable="true" />
    �     I don�t get any exception during compilation and deployment process.
    �     I would greatly appreciate if you could give me a tips!!!!!!!!!!!!!!!!!!!!!!
    Error as follows:
    2005-10-10 17:31:45 StandardContext[balancer]org.apache.webapp.balancer.BalancerFilter: init(): ruleChain: [org.apache.webapp.balancer.RuleChain: [org.apache.webapp.balancer.rules.URLStringMatchRule: Target string: News / Redirect URL: http://www.cnn.com], [org.apache.webapp.balancer.rules.RequestParameterRule: Target param name: paramName / Target param value: paramValue / Redirect URL: http://www.yahoo.com], [org.apache.webapp.balancer.rules.AcceptEverythingRule: Redirect URL: http://jakarta.apache.org]]
    2005-10-10 17:31:47 StandardContext[jsp-examples]ContextListener: contextInitialized()
    2005-10-10 17:31:47 StandardContext[jsp-examples]SessionListener: contextInitialized()
    2005-10-10 17:31:47 StandardContext[servlets-examples]ContextListener: contextInitialized()
    2005-10-10 17:31:47 StandardContext[servlets-examples]SessionListener: contextInitialized()
    2005-10-10 17:32:27 StandardContext[manager]HTMLManager: init: Associated with Deployer 'localhost'
    2005-10-10 17:32:27 StandardContext[manager]HTMLManager: init: Global resources are available
    2005-10-10 17:32:27 StandardContext[manager]HTMLManager: list: Listing contexts for virtual host 'localhost'
    2005-10-10 17:32:35 StandardWrapperValve[jsp]: Servlet.service() for servlet jsp threw exception
    java.lang.IllegalStateException: getOutputStream() has already been called for this response
         at org.apache.coyote.tomcat5.CoyoteResponse.getWriter(CoyoteResponse.java:599)
         at org.apache.coyote.tomcat5.CoyoteResponseFacade.getWriter(CoyoteResponseFacade.java:163)
         at org.apache.jasper.runtime.JspWriterImpl.initOut(JspWriterImpl.java:122)
         at org.apache.jasper.runtime.JspWriterImpl.flushBuffer(JspWriterImpl.java:115)
         at org.apache.jasper.runtime.PageContextImpl.release(PageContextImpl.java:190)
         at org.apache.jasper.runtime.JspFactoryImpl.internalReleasePageContext(JspFactoryImpl.java:115)
         at org.apache.jasper.runtime.JspFactoryImpl.releasePageContext(JspFactoryImpl.java:75)
         at org.apache.jsp.default_jsp._jspService(default_jsp.java:101)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:462)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)
    path setting as follows:
    %JAVA_HOME%\bin;D:\oracle\ora92\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\Borland\AppServer\bin;C:\Program Files\CA\PEC\bin;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SystemRoot%\system32\nls;%SystemRoot%\system32\nls\ENGLISH;C:\Program Files\Attachmate\E!E2K\;C:\Program Files\CA\AllFusion Harvest Change Manager;D:\jwsdp-1.1\jaxb-1.0\bin;D:\jwsdp-1.1\jwsdp-shared\bin;C:\Borland\classes12.zip;C:\Program Files\UltraEdit;D:\jakarta-tomcat-5.0.28\webapps\cst\WEB-INF\classes;D:\EPS\EB_CST_v3.7.2\dev\src\cst;%PATH%
    Classpath setting as follows:
    .;%third_pty%\xerces.jar;D:\EPS\EB_CST_v3.7.2\dev\src\cst;D:\jakarta-tomcat-5.0.28\webapps\cst;D:\jakarta-tomcat-5.0.28\common\lib\servlet-api.jar;D:\jakarta-tomcat-5.0.28\common\lib\jsp-api.jar;D:\jwsdp-1.1\jaxb-1.0\lib\jaxb-api.jar;D:\jwsdp-1.1\jaxb-1.0\lib\jaxb-ri.jar;%third_pty%\ant.jar;D:\jwsdp-1.1\jaxp-1.2.2\lib\endorsed\dom.jar;D:\jwsdp-1.1\jwsdp-shared\lib\jax-qname.jar;D:\jwsdp-1.1\jaxb-1.0\lib\jaxb-libs.jar;D:\jwsdp-1.1\jaxb-1.0\lib\jaxb-xjc.jar;D:\jwsdp-1.1\jaxp-1.2.2\lib\jaxp-api.jar;D:\jwsdp-1.1\jaxp-1.2.2\lib\endorsed\sax.jar;D:\jwsdp-1.1\jaxp-1.2.2\lib\endorsed\xercesImpl.jar;%third_pty%\activation.jar;%third_pty%\ant-optional.jar;%third_pty%\j2ee.jar;%third_pty%\jakarta-regexp.jar;%third_pty%\jaxp.jar;%third_pty%\jcert.jar;%third_pty%\jnet.jar;%third_pty%\jsse.jar;%third_pty%\xalan.jar;C:\MSJDBSLib\msbase.jar;C:\MSJDBSLib\mssqlserver.jar;C:\MSJDBSLib\msutil.jar;
    Other IDE setting:
    As per tomcat documentation.

    Need tips to solve this issue!!!

  • Obsolete in Development Plan

    Dear Luke,
    Greetings.
    We are on ECC 6, Eph4.
    We configured Development Plan starting from Define Forms for Talent Assessment to Define Process Periods and Groupings. But while executing Talent Information by TMS in Portal encountring the below error. " Obsolete" in Developmental plan. Totally puzzled abt the error.
    Would be great if you can share in your inputs.
    Step 1:
    Step 2:
    While configuring "Development Plan" we performed the following steps
    Config step 1:
    Config step 2:
    Config Step 3:
    Kind regards
    Sathya

    Dear Luke,
    Thank you for your reply.
    All those Services were activated already. I just checked once. All fine.
    We dont have any issues with other templates. All are working fine.
    But at the time of saving Development Template in Config Define Process Periods and Groupings,we got an error message as below
    Process DEVP cannot be grouped
    Message no. HRTMC_TM_ASSESSMENT051"
    Despite the error message the Development template still got saved. Is this an issue ?
    Below is the Config screen shot.
    Appreciate your support.
    Kind regards
    Sathya

  • Development Plan Configuration details for Talent Management

    Hi Gurus,
    I need to know the configuration nodes used for Development Plans in Talent management.I created the development form in Talent Assessment -->Define Forms for Talent Assessment. & assigned a scale to it.
    Now when I log in with the TMS id in portal & create a development form for one of the employees, I can see certain links & fields like : Add Action (link), when i click on Add action a screen pops up & asks for Action Type & Action Status.
    Firstly i need to know where does these values get fetched from.
    Secondly when i click on Add Action button, ideally it should give me 2 options :1. Add actions that can be freely defined and 2. Add training,but currently it just opens a window to create a new action.So how to control the same.
    Regards
    Bharti

    Hi,
    I know this is a (very) old post but my answer might help someone anyway.
    1. Actually, the dropw-down lists are filled from the table T77TMC_SCA_MAP, status is mapped with scale 8 and type is mapped is scale 9.
    Customizing of this table can be reached trough transaction S_EH4_55000247.
    2. The option is only shown when LSO integration is active.
    Hope it helps.
    Best regards,
    Guillaume

  • Network graphic for Development Plan

    how can I access Graphic Network for creating Development Plans through transaction OOEC. When I click on the network graphic icon, it takes me to SAP standard screen not to the graphic editor. I face the same problem with transaction PPDPIM.
    However, it works properly for creating career path (transaction OOQ4)
    kindly help me on this as i need it urgently.
    Best Regards

    Even I'm facing the same problem.
    Waiting for Reply

  • Link between Predefined Development Plan and Training

    Dear Gurus,
    We have implemented Talent Management without Training but now we will implement it (Training).
    In Talent Management Process, we have used Predefined Development Plan. In Development Plan Form, we assign development category (ex: training, job assignment, etc).
    My question is can we link the Development Plan to Training?
    So for example: when Talent Mangement Specialist or Managers assign development training with Action Type "Training", Talent Management Specialist or Manager can view the Training List and they can choose which Training that they will assign to that employee.
    Appreciate for your helps.
    Many thanks
    Regards,
    Luciana Nasserie

    Hi Luciana,
    The Development Plan I am referring to is the one in Talent Management:
    http://scn.sap.com/community/erp/hcm/blog/2012/09/11/the-development-plan-in-sap-hcm-talent-management
    It leverages the Course Catalog in LSO by standard.
    Best regards,
    Luke

  • Talent Assessment - Development Plan

    Hi Guys,
    We set up the wohle talent assessment, but we cannot see any "Create, change or display" link on the Development Plan tab.
    Any help?
    Regards
    Edited by: Henning van Wyk on Oct 21, 2009 8:34 AM

    >
    Ranjit Kumar wrote:
    > Hi,
    >
    > I have created development plan in Talent Management. But its showing error while consistency check that "You Do Not Have Authorization".
    >
    > I have 4 Talent Management roles assigned to this user id. So let me know where is the issue.
    >
    > Awaiting for valuable reply.
    > RK
    Hi Ranjit:
    Creating Development Plan templates in EHP4 should be done through the IMG step: Talent Management & Talent Development -> Talent Assessment -> Define Forms For Talent Assessment
    Once you create the form there and select "End Configuration" the appraisal template and it's subcomponents will automatically be set to "released" (HRP****-ISTAT = 4).  However, if you attempt to go into HRTMC_CATALOG_TMC, unrelease the template, modify it, then attempt to re-relase it, you will not be successful.
    The easiest answer would be.. create a new template using the IMG step I listed above.  If you don't like that, in a very indirect way, you can release the template again by updating the ISTAT field of the various V* objects you have created.  However, you're sure to have mixed results with this approach (I have lived this 1st hand).
    Further, if you attempt to modify the template directly in HRTMC_CATALOG_TMC, that is only one half of the process.  For instance, I wished to make the development plan printable.  Since it's the same basic technology as performance appraisals, it seemed completely logical.  There is a print layout option for the appraisal template, which for the development plan was blank.  I tried to set the value to something and then in my very indirect way, was able to release the template with the change in place.  Success (or so I thought)!  The frontend Web Dynpro functionality (and Flash Island) basically will not accomodate whatever modifications you've made. So basically, the Talent Assessment configuration is meant to be done through the IMG step above and that's prettymuch your only option.  Sorry I don't have better news.
    Let me know if you have any questions.
    Thanks,
    Chris
    Anyway

  • Development Plan in TMS role EHP5

    Hi ,
    We have implemented this TMS role and when we click on the Development Plan  we do not see any data for user.
    We get the header data and we see only the Obsolete section with no other data.
    Do we need to check for any other configuration

    The TMS needs to create the Development Plan document first. Did you configure the Development Plan template in the IMG?

  • Development Plans

    Hi,
    When I tried to test the Development plan in TSM - SAP_SR_TMC_TMS_6 getting the below error, When I tested service HRTMC_TA_DEV_PLAN getting the same error.
    But when I tried in MSS Talent Assessment iView i am able to see employees under Development plan tab? But I do not get the Create button to
    create the Development plans. I have configured assessment forms in TM.
    It would be a really a great help if some can share their experiences on Development plan iView’s, we have the below iView’s for Dev plan
    do not understand how these are different ?
    TM- Talent Assessment- Development Plans.
    TM- Development Plans.
        500 SAP Internal Server Error
    error: Invalid parameter combination PLVAR/OTYPE/OBJID (termination: RABAX_STATE)
    Thanks
    Kumar

    Hi Luke,
    I have assigned SAP_MANAGER_MSS_SR_NWBC_3 role to manager and able to get the development plans and the change button is  working (only header data is getting displayed).
    I have also assigned SAP_SR_TMC_MANAGER_6 but when i tried to open the Talent Assessment  in NWBC getting the error "  The user menu tree for user xxxx with role SAP_SR_TMC_MANAGER_6 is empty. Please contact your system administrator"  but i am able to open the development plans in PFCG using the SAP_SR_TMC_MANAGER role but  the change button is not working.
    Please let me know if i have missed any settings.
    Thanks
    Kumar

Maybe you are looking for