HR Appraisal System : Columns adding

Hi,
I have added two cloumns (Modifier and Performance Category) in the column tab of Appraisal template. The issue is with modifier column because whenver user enters value it is placing 3 decimals.Client doesn't want 3 instead they need 2 decimals. Can anyone help me on resolution. No chance in modifying sap structures data element. I have checked the BADIs but i could not figured out which one will be applicable. Please share if anyone know about this.
Thanks,
Ravi.

Hello Mohan,
I was travelling in the same boat as you are.  Please check below link. It will give you more inputs.
Re: Performance Management - columns ordered in row in Webdynpro version
Hope it helps.
Best Regards.
Karan.

Similar Messages

  • Appraisal system

    we are working on Appraisal system.
    the requirement is, every person have his own criteria or ojective, no specific catalogue we can make
    so client demanding to have option to type the criteria of employees manually while creating the appraisal rather than have it in appraisal cataloge.
    how can we handle this in old appraisal system?
    thanks if any one can help

    im already using old appraisal system...no integration required.
    client demanding open entery option on criteria and weighting column.
    while creating appraisal of employee they can type, system is allowing..but weighting column is in display mode, so user can't entr any value in it......our client demanding it a open enterable column.
    remember im using old appraisal system.
    how to enable that weghting column so that user can enter value in that also?
    thanks if any one can help.

  • Switching from Old Appraisal System to Management By Objective (MBO)

    Dear fellow practitioners,
    I have a requirement to switch or migrate from the OLD appraisal system to the NEW appraisal system (MBO).
    Does anyone have any information of the implications of switching the value of REPLA in T77SO from blank to 'A' or 'X' when the old appraisal system is already configured previously and is to be replaced by the new appraisal system with similar business requirements?
    There is an existing appraisal catalog configured for the old appraisal system. How do I migrate the Appraisal Models in the Appraisal Catalog of the OLD Appraisal system to the NEW Appraisal Catalog in MBO?
    I have not been able to find much information with regards to this. Therefore, many thanks in advance to anyone who can shed some light or provide some references to this matter.

    Hello,
    have a look at note 728542
    It was planned to use the switch to replace the appraisal functionality in only one of the applications; technically it's turned out, this was not possible.
    For using the usual functionality for appraisals in training and event management (TEM), HAP00 REPLA has to be set to space.
    All other settings: X, T, A will cause problems.The reason is that many transactions of TEM delegate work to the central appraisal component and there the swith to MBO functionality is done (in the case X, T and A).
    It is however possible to use MBO functionality for personnel appraisals. The transactions of MBO have to be used 'directly'.
    These transactions are not part of the menu but can be added to the favorites list.
    PHAP_ADMIN_PA
    PHAP_CHANGE_PA
    PHAP_CREATE_PA
    PHAP_PREPARE_PA
    PHAP_SEARCH_PA
    PHAP_CATALOG_PA
    There is no recommended way to load historical appraisal data. You will have to write a customer-specific program for this purpose.
    It depends on your specific requirements whether you really need the data in R/3. For example, if you need the data for reporting, it may be easier to load the legacy data directly into BW. If you need them for program logic, e.g. to default values for new appraisals, you could consider loading the data into a customer table and read that table in your implementation of an appropriate user exit.
    Hope this help
    Sarah

  • How to display dynamic column added by vo.addDynamicAttribute in jspx?

    Hi,
    I met problem when programmatically add cloumn and display it on screen. Here are my steps:
    0. define a ViewObject using xml. Define a transient column Addtion2. later will add a dynamic column Addtion3, but not defined here.
    1. Implement Application Module, adding a method init() and expose it to client.
    2. In init() method, get target VO and use vo.addDynamicAttribute("Addition3"). Then iterate it use row.setAttribute("Addition3", Math.random()). Add init() to page binding and invoke it.( it's invoked )
    3. In jspx, use dynamic table. But Addition3 never shows up.
    This is my last question: Re: How to display dynamic column added by vo.addDynamicAttribute in jspx? People say I should use dynamic table.
    please have a look at my code:
    Application Module: when it runs, it will print 6 coulmns. vo.getAttributeCount() is <font color="red">6</font>.
    <pre>
    public void init() {
    ViewObject vo = this.getCountryView1();
    if (vo.getAttributeIndexOf("Addition3") == -1) {
    vo.addDynamicAttribute("Addition3");
    vo.executeQuery();
    for (AttributeDef deft : vo.getAttributeDefs()) {
    System.out.println(deft.getColumnName() + ": " + deft.getName());
    RowSetIterator it = vo.createRowSetIterator("i1");
    while (it.hasNext()) {
    Row r = it.next();
    r.setAttribute("Addition2", Math.random());
    r.setAttribute("Addition3", Math.random());
    it.closeRowSetIterator();
    for (AttributeDef deft : vo.getAttributeDefs()) {
    System.out.println(deft.getColumnName() + ": " + deft.getName());
    System.out.println(vo.getAttributeCount()); //vo.getAttributeCount() is 6
    </pre>
    jspx: when it runs, only 5 columns are shown. Column Addition2's values are set as expected. but Column Addition3 never shows up. And #{bindings.CountryView1.attributeCount} shows <font color="red">5</font>.
    <pre>
    <af:table rows="#{bindings.CountryView1.rangeSize}"
    fetchSize="#{bindings.CountryView1.rangeSize}"
    emptyText="#{bindings.CountryView1.viewable ? 'No data to display.' : 'Access Denied.'}"
    var="row" rowBandingInterval="0"
    value="#{bindings.CountryView1.collectionModel}"
    selectedRowKeys="#{bindings.CountryView1.collectionModel.selectedRow}"
    selectionListener="#{bindings.CountryView1.collectionModel.makeCurrent}"
    rowSelection="single" id="t1">
    <af:forEach items="#{bindings.CountryView1.attributeDefs}" var="def">
    <af:column headerText="#{def.name}"
    sortable="true" sortProperty="#{def.name}" id="c1">
    <af:outputText value="#{row[def.name]}" id="ot1"/>
    </af:column>
    </af:forEach>
    </af:table>
    <af:forEach items="#{bindings.CountryView1.attributeDefs}" var="def">
    <af:outputText value="#{def.name}" id="ot2"/>
    </af:forEach>
    <af:outputText value="#{bindings.CountryView1.attributeCount}" id="ot3"/>
    </pre>
    it's quite weird for me. The vo.getAttributeCount() is 6, but #{bindings.CountryView1.attributeCount} shows 5. And column Addtion3 never shows up.
    what's the matter? How can I show the dynamic added column Addtion3?
    Edited by: simon li on 2012-9-10 下午7:31
    Edited by: simon li on 2012-9-10 下午8:00

    Hi,
    Can you check the tree binding (CountryView1 - in the pagedef) and see it has the 5 attributes hardcoded in it. If yes, try removing everything and then run the page to see if it works fine.
    -Arun

  • What's the difference between old SAP appraisal system and the new SAP appraisal system?

    Hi Experts,
    What's the difference between old SAP appraisal system and the new SAP appraisal system?
    Can anyone shed some light please.
    Thanks.

    emgr_update no longer sets or gets the thesaurus from workbench. In 11 all workbench configurations are saved in IFCR configuration directly.
    Hence the thesaurus entry should be added directly in version 11 Workbench as opposed to xml file in older versions.
    And if you want to migrate the changes across environments then import_site script in control directory can be used.

  • Issue in retrival of Old Appraisal system template

    Dear Expert,
    landscape :ecc 6 , business package 1.41
    Currently i am facing a problem in ESS/MSS regarding extracting old appraisal template.the scenario is currently old and new (objective setting and appraisal ) both are available at server . i activated old appraisal system but again system is no extracting appraisal data of the subordinates ,using path data Mss -> Team - > Personnel development -> Appraisals .
    then i created an iview with BSP using HAP_Document but system is extracting new appraisal templete rather than old one.
    Please let me know the solution as it is an urgent .
    Edited by: Sadia Kamal on Jul 31, 2011 5:55 PM

    Dear Expert,
    I took the follwoing steps
    1. In the customization i use the subcomponent Appraisal Systems, this corresponds to the switch position <SPACE>.
    2. in the portal content i create a new iview using template BSP based view, i gave the BSP application name : HAP_Document and start page name : Documents_todo.htm (for create purpose) , Documents_recieved_open (for display purpose)
    3. in the customization i define the Iview path .
    then execute the system , in the case of creation system showing new appraisal templates and in the case of view system is not showing the appraisals against employees .
    Please advise wht to do .

  • Business Event Appraisal Form in New Appraisal System

    Hi,
    I have created Business Event Appraisal Form in New Appraisal System. I have done Appraisals for one Business Event by an attendee.
    Where can see this Appraisal Document of Business Event and do any change if required. Or from we can delete this documents of Business Event Appraisal.
    I have tried tcode appchange but there only Personnel Appraisal templates are visible.
    Samriddhi

    Hi,
    If you are using a template created by using the Objective Setting and Appraisals componet you can view and maintain forms filled in by employees via Transaction phap_admin_pa.
    Br,
    Art

  • Old Appraisal System (SAP R/3 4.7 ITS) upgrade to SAP ECC 6.0, Ehp4

    Hello experts,
    We are currently on SAP R/3 4.7 (using ITS) and will be upgrading to ECC 6.0, Ehp4 (using Netweaver Portal). This upgrade will be purely technical, no changes to existing talent modules.
    Our employee performance appraisals are currently accessed via ITS using the Old Appraisal System. Can you tell me if it is even possible to link the old appraisal system to the NW portal?
    If yes, what kind of changes are required here? Which iviews will I need to activate?
    All of your advice is greatly appreciated. Thank you in advance.
    Dina

    hi,
    THe old appraisal system runs on ITS , true .
    In the new ECC 6 , there is a built in ITS , which should allow you to still run the old services . But it makes sense to explore the newer functionalites offered in EHP4.
    Regards
    sameer

  • ECC 6.0 Source Systems are added to 2 Different Folders - BI and SAP

    Hi Experts:
                    Our BASIS team added 2 ECC 6.0 Source Systems to BI 7.0. One of the ECC 6.0 System is added under BI Folder ( where DataMart Source stays) and other ECC 6.0 system is added under SAP folder where all other R/3 Source Systems are. I talked to BASIS team and they followed the same configuration in SM59 for both of the  RFC connections.
    Other peice of Information, Both the ECC 6.0 systems are on same server but just different Client.
    This is how it looks:
    RSA1 -> SOURCE SYSTEM
                  -> BI Folder - 1st ECC 6.0 System
                  -> SAPFolder -  2nd ECC 6.0 System
    Thanks,
    Rez

    Following OSS note fixes this:
    Note 1087980 - ECC Source systems appearing in BI folder

  • SharePoint 2010 designer workflow assoicated tasklist not showing columns added by collect data

    Hi,
    We had a SharePoint designer workflow in production. This is a reusable workflow, and this workflow uses collect data action to get some of data from users. Through collect data action, we added 7 columns(default task list), which have been used in logging,
    email template and other places in the rest of the workflow.
    Suddenly we find all the references to task columns(added through collect data), are not showing up in the workflow. If we try to add those collect data columns, it is not showing in "Field from Source" field as shown below.
    Here Association Tasklist field are not showing.
    If we again try to select columns, we find that all the columns that we added through collect data
    no longer visible in associated task list.
    Please help. 

    Hi Fender,
    Please can you confirm which version of Outlook your users have (and if they are all on the same version)? All my none 2007 users lack the Edit Item button, and have to use the links in the body of the email, which I believe is simply due to the fact that
    2003 et al lacks the same SharePoint integration options as 2007.
    Cheers
    Stew

  • Authorization in appraisal system

    Hi Exports,
    I am trying to maintain the authorzation in appraisal system.
    Is that possible to control the access according to different appraisal models? how could i do that?
    Thanks,
    Liang

    Hi
    Thanks a lot for your help! it works as your suggestion.
    Another question: is it possible to make the search option on Person mandatory in APPCHANGE? for example, when user access in APPCHANGE, he must enter his personal number as appraiser。
    And how could I remove all the options from field "Appraiser" drop down list except person?
    Regards,
    Liang

  • Objective Setting & Appraisals VS Appraisal System

    Hello,
    Trying to understand the meaning of customizing Objective Setting Appraisals instant of Appraisal System,
    Does anyone know if there is a way to transfer all the old Appraisal Models (BS Object) into the new Appraisal Template (VA Object) ?
    Another Question : Is it possible to continue using the old way (Appraisal System) with running projects and the Objective Setting & Appraisals for new needs? meaning - BAPIs like BAPI_APPRAISAL_CREATE \ CHANGE \ GETDETAILS will still work ?
    thanks !

    Hi Binu,
    I am not entirely clear about your requirement, but in OOHAP_VALUE_TYPE, for a specific proficiency value, if you have maintained a description for the value under 'Value description' then it will be displayed on the form within the 'Info' button.
    Regards,
    Priya.

  • Column added date

    How to get columns added date for table.

    Hi,
    I don't believe Oracle automatically records when every column of every table was created. If you need to keep track of that, then you'll have to do it yourself.
    The column last_ddl_time of user_objects shows when any kind of DDL (such as adding a column) was done, but only the most recent time, and there's no telling what change was made at that time. I know tjat's pretty far from what you want, but it might be the closest that you can get with standard Oracle features.

  • Get an additional column added to PWA Page which shows up the resource names

    When we got to Project center and open up the respective project.By default the Tasks Summary window opens up.
    Where in I can see the ID,Task Name,Duration,Start, Finish,% Complete,Work and Task State.
    In one of the request a user wanted us to get an additional column added to this which shows up the Resource Names.
    Note:
    In the project plan what we publish to the server we used to have a resource name column.
    Please let me know if it is possible to add a new column. 

    amavila --
    Your Project Server administrator will need to do the following:
    Log into PWA with administrator permissions
    Click the Server Settings link in the Quick Launch menu.
    Click the Manage Views link in the Look and Feel section of the Server Settings page.
    In the Project section, click the Task Summary view to open it for editing.
    In the Available Fields list, select the Resource Names column, and then click the Add button to add it to the Displayed Fields list on the right.
    Click the Save button.
    Keep in mind that only your Project Server administrators can perform the above steps.  Hope this helps.
    Dale A. Howard [MVP]
    VP of Educational Services
    msProjectExperts
    http://www.msprojectexperts.com
    http://www.projectserverexperts.com
    "We write the books on Project Server"

  • Check IP of the system who added the Resp ?

    HI All,
    We are on 11.5.10.2
    RDBMS 9.0.2.0.6
    RHEL 4.6
    How we can check the IP of the system, who added the Responsibilty to user.
    Thanks
    KSV.DBA

    Hi,
    If auditing is not enabled, I believe you cannot get the IP Address.
    How to i get client IP address of a system on Oracle E-biz
    Re: How to i get client IP address of a system on Oracle E-biz
    Audit client IP address in EBS R12
    Audit client IP address in EBS R12
    Thanks,
    Hussein

Maybe you are looking for

  • More days in week view

    Found a tip recently to change the dafault number of days within the week view of Calendar: Change to 14 days: Close Calendar Open Terminal enter following command within Terminal: defaults write com.apple.iCal CalUIDebugDefaultDaysInWeekView XX XX t

  • IView and system admin objects appear changed or not registered when transported

    Hi, Recently we moved a few objects - iViews, pages and roles as epa and system admin objects as config archive and imported them manually to Test system. But when checked in the next landscape, the iView properties appear different. Eg. In Developme

  • How to  write and what are reports for Income Statement by Region (SD/AR)?

    Hi all, I am anticipating  to write some abap reports, I am new to abap..Here is one of them..Anyone can help  me with writing a Report , how to do  'Income Statement by Region (SD/AR)' But since I am new to abap , if you wish to reply, please use a

  • How to query for messages on JMS Queue?

    Hi All, What is the best way to query on a JMS Queue? I would like to query for messages based on values entered on a screen. Can this be achieved using the JMS Adapter or any other adapter? JDev : 11.1.1.4 Thanks and Regards.

  • Screen/Display Issues with Aperture 3.6 & iPhoto 9.6 on Yosemite

    When I open Aperture or iPhoto, my screen goes all wonky. I have an early 2011 MacBook Pro with 8 GB Ram with the Intel HD Graphics 3000 512 MB. What is it doing this? How can I fix it?