SAP HR appraisal template - value determination: set texts

Hi experts,
I'm implementing SAP HCM - Performance Management and I have the following requirement.
In a specific column I want to use the badi implementation for value determination and set a text value (for example: "ROCE"). Is it possible to set a text value in the field? It's working only for number values (I don't want to use the cell note)
Thanks in advance.
Cheers,
Andre Sousa
Edited by: Andre Sousa on Mar 17, 2010 3:27 PM

Anyone?

Similar Messages

  • To make text entry on KPI field in Appraisal Template

    Hi Experts,
           Presently i couldn't enter any text in KPI field in Appraisal Template(PHAP_ADMIN_PA), my requirement is to make that as text entry/numeric entry both.
    Currently it is allowing me to enter only numeric.
    Thanks in Advance
    SSHIVAK

    in PHAP_CATALOG  , what is the value assigned as? Please check the customisation for this field

  • How to set OSA appraisal template validity period ??

    Hi Guru,
    I am now working on OSA appraisal. When i create a appraisal template in PHAP_CATALOG, i cant specify the validity period. In the end, the validity period always sets to start date as 01/01/1900 and end date as 31/12/9999. As a result, i cant specify that in which year, which appraisal template to be used because all the templates are having the same validity period. For example, i wanna create a appraisal template from 01/01/2008 to 31/12/2010. So,how can i set the validity period to the period i want?  Or is there anywhere can set the validity period ?
    Thanks

    In the VA object,  Layout tab, make sure "do not display validity period" is not checked.  This should display the validity period columns, which the user's can enter.
    If the column cannot be changed, then check the security authorization.
    If the values are defaulted, make sure, you disable the BAdi. Also, make sure, in the processing tab,
    click on the "further template behaviour" button. Make sure, there are no "default validity period" enhancement area's.

  • Getting error while trying to set text for form value field in oaf

    Hi ALL,
    When i am trying to set text for a form value type field it is giving null pointer exception, please help me out.
    I tried below way.
    OAFormValueBean containlineid=(OAFormValueBean)webBean.findChildRecursive("item11");
                containlineid.setText(pageContext,"test");
    Thanks

    HI Keerthi,
    I am able to set and get the value now, i am able to see the data in my log window, but in my page it is erroring out, giving null pointer exception.
    after commenting the two lines setting and getting value page is running fine, so any clue on this, please check the below code.
    public class XXDPECONTAINLINESCO extends OAControllerImpl
      public static final String RCS_ID="$Header$";
      public static final boolean RCS_ID_RECORDED =
            VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
       * Layout and page setup logic for a region.
       * @param pageContext the current OA page context
       * @param webBean the web bean corresponding to the region
      public void processRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processRequest(pageContext, webBean);
        OAApplicationModule am = (OAApplicationModule) pageContext.getApplicationModule(webBean);
          OARawTextBean startDIVTagRawBean =
          (OARawTextBean) webBean.findChildRecursive("DivStart");
          System.out.println("debhorizontal"+ startDIVTagRawBean);
    // addScrollBarsToTable(pageContext, webBean,"DivStart", "DivEnd", true , "400",true,"400");
       * Procedure to handle form submissions for form elements in
       * a region.
       * @param pageContext the current OA page context
       * @param webBean the web bean corresponding to the region
      public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processFormRequest(pageContext, webBean);
         String preplenish = pageContext.getParameter("item1");
          String pworkorder = pageContext.getParameter("item2");
          String pdmr = pageContext.getParameter("item4");
          String punloading = pageContext.getParameter("item6");
          String prrnum=pageContext.getParameter("item16");
          String pworknum=pageContext.getParameter("item14");
          String pdtr=pageContext.getParameter("item13");  
          Serializable param[] = {preplenish,pworkorder,pdmr,punloading,prrnum,pworknum,pdtr};
          OAApplicationModule am = (OAApplicationModule) pageContext.getApplicationModule(webBean);
          if(pageContext.getParameter("item11")!=null)
            if(am !=null)
              am.invokeMethod("getSearchData",param);
          if (pageContext.getParameter("item30") != null) {
            String recout = (String)am.invokeMethod("getSelectedData");
               System.out.println("deb multi select test"+recout);        
                System.out.println("1111test1"+pageContext.getParameter("item32")); 
                OAFormValueBean containlineid=(OAFormValueBean)webBean.findChildRecursive("item32");
                System.out.println("1111test2"+pageContext.getParameter("item32"));
                //containlineid.setValue(pageContext,recout);
                System.out.println("1111"+pageContext.getParameter("item32"));
              ///  System.out.println("22222"+containlineid.getValue(pageContext));
            containlineid.setValue(pageContext,recout);
            containlineid.getValue(pageContext);                            
               System.out.println("1111test3"+pageContext.getParameter("item32"));
    --------------Error it is giving in the page as----------------
    Exception Details.
    oracle.apps.fnd.framework.OAException: java.lang.NullPointerException at oracle.apps.fnd.framework.OAException.wrapperException(Unknown Source) at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(Unknown Source) at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(Unknown Source) at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(Unknown Source) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source) at _OA._jspService(_OA.java:71) at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370) at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453) at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239) at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34) at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:595) ## Detail 0 ## java.lang.NullPointerException at xxdpe.oracle.apps.ak.xxdpecontain.webui.XXDPECONTAINLINESCO.processFormRequest(XXDPECONTAINLINESCO.java:123) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source) at oracle.apps.fnd.framework.webui.beans.layout.OAMessageComponentLayoutBean.processFormRequest(Unknown Source
    Thnaks

  • Restriction of goal / KPI values Weightage to 100% in an appraisal template

    Dear All
    In EHP4 scenario, How can we restrict the appraisal goal / KPI values weightage to 100% in an appraisal template.
    Can we configure or arrive at an solution for -- the weightage calculation of ( Company Goals + Team Goals+ Core Values + Individual goals ) = shoould be limited to 100%.
    Kindly suggest.

    weightings are controlled when you add the column to the template. 
    the application has logic so that it doesn't exceed 100% within the criterion group, each of your sections individual goals, team goals, corporate goals, will be setup as a criterion in your template with a free enhancement.
    then at the criterion level you can define weightings on the "element" level of your template. 
    so i think the best way you could make this work is with this example:
    individual goals = 50%
    team goals = 25%
    corporate goals = 15%
    corporate values = 10%
    employee and manager would not have control on the weightings above...
    then within each criterion group, as the employee adds things such as individual goals...
    they have control..
    so goal1  = 10%
    goal2 = 20%
    goal 3 = 70%
    (this 100% reflects 50% towards the overall appraisal weighting)
    and then the manager when defining team goals does weightings:
    goal 1 = 40%
    goal2 = 10%
    goal 3 = 10%
    goal 4 = 20%
    goal 5 = 20%
    then similar logic for corporate goals and values...

  • Set text in template?

    I know that we can create templates that will set the fonts,
    caption types, etc. but I'm wondering if there is a way to set the
    text that Adobe automatically adds to the captions. For example,
    Adobe uses the language "SELECT this link" when clicking a
    hyperlink. Can we somehow manipulate Captivate so that it will
    always say "click" instead of "select" saving us from having to
    change each caption every time? In other words, creating a set
    language within the template?
    Thanks very much!

    Hi Bethanne
    There certainly is!
    Open Windows Explorer and navigate to where Captivate has
    been installed. Normally that will be:
    C:\Program Files\Adobe\Adobe Captivate 3
    In this location you should find different files for each
    language. For English, locate the file named:
    CaptureTextTemplates_English.rdl
    Edit that file using something like Windows Notepad. It would
    probably be a good idea to make a backup copy in case you ever wish
    to easily revert to what it once was.
    Save your edited file and the next time you record, the
    captions will be inserted with your changed verbiage!
    Cheers... Rick

  • Value determination in Appraisal

    Dear Friends,
    I have created a quality scale which is like  Everage --good-- excellent. this has to be come as a drop down value in the portal.
    what is did is, I create a scale like ablove mentioned and create a column in the tample. now i want to assige this value for that column, i have done that in the element level.
    but in portal still i did not get the scale value as a dropdown value  againts the  column. what i did wrong? do i want to write value determination badi and has to attached in the column?
    Pls advise me.
    Regards,
    Saritha

    Hi Andy,
    i have assigned the scale to the colum. my required is the scale value ( everage- good-- excellent ) should come as a drop down list in the portal.
    But in the configuration , as u said I tried all value input like ( no entry) and the (no note ). My doubt is wether I need to create value determination badi for this?
    regards,
    Saritha

  • How to restrict maximum 5 part appraisers in the Appraisal template

    Dear All
    Our requirement is to allow maximum 5 part appraisers in the Appraisal template. Currently the System is calculating & restricting to only 2 part appraisers (as the total columns used is 16).
    Even on using the BADI - Maximum Number of Part Appraisers (HRHAP00_MAX_P_APPER), we are not able to attach more than 2 part appraisers as the defaulted value is overriding the BADI value. This is because as per BADI - Maximum Number of Part Appraisers (HRHAP00_MAX_P_APPER) : The calculated number of part appraisers must always be greater than the desired number of part appraisers. If this is not the case, the system outputs an error message and resets the desired value.
    Also the link http://help.sap.com/saphelp_rc10/helpdata/en/ae/ec6f01d143e141992f22fcf31a7aaa/content.htm says - "In the case of an approval process for a 360° degree feedback, you do not need to restrict the number of part appraisers. In all other part appraisal processes, the system restricts the maximum number of part appraisers". But even in 360° degree template, on selecting 16 columns the system is calculating & defaulting 2 part appraisers.
    Kindly advice how to restrict the no. of part appraisers to 5 when the system is calculating only 2 part appraisers as we are using 16 columns in the Appraisal template.
    Regards
    Ravindra

    Get Maximum Number of Part Appraisers
    Functionality
    The method determines the calculated number of part apparaisers.
    Result
    The number of desired part appraisers is returned.
    Notes
    The calculated number of part appraisers must always be greater than the desired number of part appraisers. If this is not the case, the system outputs an error message and resets the desired value.
    Parameters
    FLT_VAL (Import) Parameter FLT_VAL of Method MAXIMUM_NUMBER_GET
    CALCULATED_NUMBER (Import) Calculated Number of Part Appraisers
    MAXIMUM_NUMBER (Export) Number of Part Appraisers (set by implementation)
    see the note 530913 that ie no of appraisers are stuck at 17
    ELSE.
    no_of_part_appraisers = ( c_column_max_number - l_total_columns )
    DIV l_part_columns.
    ENDIF.

  • Column - Value determination

    Hi,
    I am new to SAP HCM PMS. I want to configure template as shown below:
    Tasks to be performed:
    Task -1     Deliverable      Actual-achievement     Rating (Rating should be calculated as per Actual achievement against Deliverable)  
    Task -2     Deliverable      Actual-achievement     Rating (Rating should be calculated as per Actual achievement against Deliverable)
                                                                           Overall Rating(Average of above Ratings)
    For the above requirement, what columns and respective value list & value determination can be used.
    Furthermore, I am getting warning message"Value determination 'Value Determination - Overall Result (Weighted)' without dependent elements is of limited use" when I use Value determination as "TOTALERC" for Final Appraisal.
    Kindly assist me in this regard.
    Thanks and Regards,
    Harish

    Hi,
    I know it's a bit outdated, but in case someone looks for the anwser I post it here. All you need to do is to implement method CUST_CHECK_EXECUTABILITY of your BAdI (HRHAP00_VAL_DET) specifying which columns it might be assigned to i.e. for FAPP:
       read table t_pt5022 with key column_id = 'FAPP'
                                     transporting no fields.
       if sy-subrc = 0.
         executable = 'X'.
       else.
         clear executable.
    endif.
    Now you are able to assign this BAdI implementation to FAPP column.
    Regards
    Marcin

  • EhP4 Flexible Appraisal template HTML errors

    We are reviewing the new Web Dynpro Flexible Appriasal interface in EhP4. When we create a new appraisal from our current appraisal template, the html tags for each criteria (Description - Web Layout) are displayed along with the text on the new WD UI. There is also an error message under each criteria description. If we remove the html and just use the standard Description, the form displays correctly.
    Is there a way/setting to make the WD UI in EhP4 display html?

    Dear Scott,
    I found that it supports XHTML, refer to
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/44/51f6dce86e14bce10000000a155369/content.htm
    for the tags supported though it is not as rich as HTML.
    Also, please implement SAP Note 1354044 if you are not in NW7.01 SP5.
    Example :
    <h1>
    Hello World
    </h1>
    <br></br>
    <em>This is a test</em>
    <br></br>
    <em>remarks</em>
    Hope it helps a little.
    Regards
    Kir Chern

  • I have error while testing the system created from a sap business objects template in SAP portal

    I have error while testing the system created from a sap business objects template in SAP portal. Error text:
    com.sapportals.connector.connection.ConnectionFailedException: Connection Failed: A nested exception occurred. Could not initialize physical connection. Connection Failed: A nested exception occurred. Could not initialize physical connection. Connection Failed: A nested exception occurred. Could not create JCO connection. 'mshost' missing
    I configure integration SAP portal and SAP BW system. All system requirements are complied.
    Environment
    SAP Business Objects 4.0
    SAP BW 7.31
    1.     I configure SSSO between SAP BW and SAP Business Objects Enterprise 4.0
    2.     Next I setting integration SAP PORTAL with SAP BW system
    3.     I download certificate from portal. Select Certificates and key (http://sapserver:port/nwa) – See scren_
    4.     In next window selected Ticketkeystore and Saplogonticketpair-cert( near part window form)
    5. Select Export entry button and binary format file certificate for download. Press download.
    6.     Save certificate file in local PC folder
    In next step need export certificate file to SAP system. Sequence of step:
    1.       Run STRUSTSS02 transaction .
    2.       Chose certificate ->import.
    3.       Select downloaded certificate file
    4.       Select Add to certificate list button and Add to ACL button
    5.       Inter System ID and Client(000)
    6.       In next I download iview sap business objects template into sap portal: System administration->transport->Import. And select and download sap business Objects iview template in .epa format into sap portal.
    7.       Result – downloaded iview.
    8.       In next step I create system from template. System administration->system landscape.
    9. In next step I input parameters for my system in Connector category, Sap business objects and user management categories: See screen _2
    10.   When I created the system and test the connection error occurred: See screen_3
    This issue is important enough. I would be grateful for opinions and ideas. Thanks in advance.

    Did you find a solution?

  • Regarding addition of new column in existing  appraisal templates

    hi gurus,
    i m working on the existing appraisal templates in which i have to add one more column named "Avereage Rating"
           in which the average of "MID YEAR ACHIEVEMENT COLUMN TOTAL VALUE" & "FINAL APPRAISAL RATING COLUMN TOTAL VALUE"
           for eg:"(3.5+4.0)/2 = 3.75" i.e the value 3.75 will come in the average rating column,plz help me to sort out
           this column,for this,no doubt i have added the column for this but for the  value "3.75" what "value list",
           "value class" & "value determination" sud i use against this column plz help me....

    solved

  • Technical Link b/w Employee and Appraisal Template

    Hi,
    Can anybody please help me in finding the technical link b/w an Employee and an Appraisal Template? In other words, I need to know the table name(s) in which data is stored while appraisal processed is going on. I can view the appraisal form in IT0024 and IT0025 in PA. I can also see the objects VA, VB & VC in PP01, but where are these entries stored in the table.
    We are on SAP R/3 4.7 (Enterprise) and using new Objective Setting and Appraisal Component.
    Thanks
    Vikas Bhatia

    Hi there,
    Function module 'HRHAP_DOCUMENT_GET_LIST' can be used for this purpose.
    In order to find the objects you want, make sure you set the appraisal templates for calling this function as well as all of the other required parameters. If you need help for the other parameters then let me know.
    The fields for the template table import parameter need to be set as follows:
    plvar = <b>Active plan version</b>
    otype = <b>VA or VB or VC</b>
    objid = <b>appraisal template id</b>
    This returns two tables - the appraisals and the associated documents.
    Other tables you may be interested in are :
    HRHAP_T
    HRHAP
    HRHAP_APPER
    HRHAP_APPEE
    Hope this helps you out. Any questions, let me know.
    If this works, please award the points for this advice.
    Cheers
    Colin.

  • "Set text of container" behavior crashes Dreamweaver! (CS3)

    When I try to change pages which use the "Set text of
    container" behavior it
    crashes DW-CS3. The dialog which used to come up first shows
    a series of
    asterisks in the drop-down for the container selected, and
    the CPU does
    overtime for about a minute before the correct values appear.
    If I change
    any values and OK it, then CPU starts using over 90% on DW
    and nothing
    happens until I force a shut-down (I've left it running for
    over 15 mins!)
    I have tried setting up a new "Set text of container"
    behavior and the same
    thing happens.

    Oh it truly needs work...
    http://www.jackbooks.com/Wystan/Regional/Regionalism.htm
    Even on a simple new page with a couple of divs this
    behaviour is now very
    slow and the line of asterisks comes up while waiting for the
    dialog to
    load. What has changed? How can a simple behaviour be now so
    demanding?
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:f4opvn$sod$[email protected]..
    > Can we see the page, please?
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    > ==================
    >
    >
    > "Stephen C" <[email protected]>
    wrote in message
    > news:f4nd0t$8lq$[email protected]..
    >> When I try to change pages which use the "Set text
    of container" behavior
    >> it crashes DW-CS3. The dialog which used to come up
    first shows a series
    >> of asterisks in the drop-down for the container
    selected, and the CPU
    >> does overtime for about a minute before the correct
    values appear. If I
    >> change any values and OK it, then CPU starts using
    over 90% on DW and
    >> nothing happens until I force a shut-down (I've left
    it running for over
    >> 15 mins!)
    >>
    >> I have tried setting up a new "Set text of
    container" behavior and the
    >> same thing happens.
    >>
    >

  • Appraisal template - Columns

    Hi all,
    I am trying to analyze the appraisal template.
    The columns which are defined in template show up in the document.
    we have columns for final appraisal, start date, end date and obviously they are visible in the document.
    Question is what happens to the column OBJECTIVE SETTING. How is it displayed!
    May be this is an elementary question but your views would help me understanding template config. even better.
    Regards,
    Bharat

    Hi,
    The objective setting column is a special column, like weighting it had its own behavior. If just selected it will show as element name. But if you tick the box "Free Input" under objective setting then the element name will be replaced with an input field on teh appraisal document where you can give your own text (= a new objective) in.
    Hope that clears the "mystery"..
    Regards and Groetjes,
    Maurice Hagen

Maybe you are looking for

  • Function Module to send Vendor Master Data from SRM to ECC

    Hi Guys I heard there is a function module in SRM which can send Vendor Master Data from SRM to ECC please confirm for me if there is such a function Module and what is it called. Thanks

  • How to Render a Tiff Sequence with original EXIF Data?

    Hi, I´m importing a DNG Image Sequence via Camera Raw to AE. After some color corrections and alignment I would like to Render the images as TIFF sequence including their original Exif Information, e.G. Exposure time, ISO, Aperture. in the render dia

  • Why is screen turning off randomly?

    For some reson or another, My Macbook Pro will be running fine, and depending on my actions (mostly using FCPX or Preview) the screen will shut off and go completely black, not dim cuz I tryied the brightness keys they do nothing. and the keyboard ba

  • Vendor analysis purcase selection MCE3

    Hi I execute the analysis report in LIS transaction MCE3 with selection criteria as plant , purchase organisation & data.. if i execute this report it is  displayed PO Values always  zero Amount instead of values. I checked initial selection screen u

  • Consuming a Web Service in Perl - Import parameter

    Hey, i tried to consume a SAP Web Service with perl... Just calling the Web Service works fine, but I am not able to transfer a parameter. Here is the perl code: my $sapsoap = SOAP::Lite     -> uri('urn:sap-com:document:sap:soap:functions:mc-style')