ECM: Appraisal score in Planning I-view

Hi,
In the planning I-view you can customize the columns you want to show the user in view V_TWPC_ACOL. My customer would like to have the appraisal score in this view as well. Now the appraisal score is only visable when you go to the detailed employee data screen. Is it possible to have this value as a column in the planning I-view? I noticed that it is possible to create your own column and link it to a function module. Do I need to write a function module to solve this or is there a way within standard SAP?
Thanks,
Marco

S0004446408 wrote:>
> Do I need to write a function module to solve this or is there >a way within standard SAP?
> Thanks,
> Marco
That is what we did.. created a function module that reads the final rating of the Employee's Appraisal & tied that fm to the Rating column in the OADP..
I'm not aware of any Std function as yet..
~Suresh

Similar Messages

  • ECM Link to Appraisal Score

    On ECC 5.0, we are setting up Enterprise Compensation Management, MBO Appraisals and MSS. We have the appraisals configured to where a form can become 100% completed.  We have ECM configured completely as well.  Our issue is that in our Compensation Planning iView in MSS we cannot figure out how to link the appraisal score to the employees for planning, use in guidelines, etc.  We have activated the standard function module for this link, setup the standard column object to carry over this value, etc.  When viewing the Appraisal column in MSS, each employee has a number 0 as their appraisal score, and we get an error message "No appraisal document found".  Any suggestions would be much appreciated.

    Hi,
    Checking the following points may help you:
    1. In view V_T71ADM20 (IMG activity - Define Matrix Dimensions), there should be 1 dimension for MBO appraisal (MBOA) with Method Parameter as the element (VA, VB or VC) in which the appraisal result will be stored.
    2. In the same view V_T71ADM20, pay attention to field Dimension Date Shift. To give an example, if Appraisal document’s end date (e.g. 31-Dec-05) is less than the Compensation Planning begin date (e.g. 01-Jan-06), enter 1 day in this field so that the error "No appraisal document found" doesn’t appear.
    3. Check IMG activities Define Guideline Matrices and Assign Matrix Values.
    If none of these points help, do give some details of the customization done, in order to get some more clues.
    Regards,
    Vikas Bhatia

  • PMS viewing of appraisal scores by the appraisee

    Hi Friends,
    I have an question on PMS.
    Currently the performance appraisal scores are visible to employees (appraisees’) immediately after the Appraiser saves the score.
    But the viewing of appraisal scores by the appraisee should be possible only after the appraisal scores are submitted by the appraiser.
    Can any one help on this.
    Regards,
    Rajesh

    Hi Siddharth,
    I have checked below all BADI's, but still no result..
    HRHAP00_ACC_HEADER
    HRHAP00_ACTION_LOG
    HRHAP00_ADD_HEADER
    HRHAP00_ADD_ON_APPL
    HRHAP00_ADMIN
    HRHAP00_ATT_ACCESS
    HRHAP00_AUTHORITY
    HRHAP00_BC_ELEMENT
    HRHAP00_BSP_TMPL
    HRHAP00_BUT_ACCESS
    HRHAP00_CATALOG_ACT
    HRHAP00_CATEG_CREATE
    HRHAP00_CATEG_EXMPLE
    HRHAP00_CHECK_CUSTOM
    HRHAP00_COL_ACCESS
    HRHAP00_COL_OWNER
    HRHAP00_DEFAULT_OBJ
    HRHAP00_DOC_BC
    HRHAP00_DOC_DEF_D1
    HRHAP00_DOC_DEF_D2
    HRHAP00_DOC_DEF_DE
    HRHAP00_DOC_DEF_DN
    HRHAP00_DOC_DEF_DO
    HRHAP00_DOC_DEF_DP
    HRHAP00_DOC_DEF_DR
    HRHAP00_DOC_DEF_DV
    HRHAP00_DOC_DELETE
    HRHAP00_DOC_PREPARE
    HRHAP00_DOC_SAVE
    HRHAP00_DOC_STATNAME
    HRHAP00_DYN_EVENT
    HRHAP00_ENHANCE_DEL
    HRHAP00_ENHANCE_FIX
    HRHAP00_ENHANCE_FREE
    HRHAP00_FOLLOW_UP
    HRHAP00_FOLLOW_UP_D
    HRHAP00_GET_LIST_FLT
    HRHAP00_INIT_CATALOG
    HRHAP00_LINK
    HRHAP00_MAX_P_APPER
    HRHAP00_OFFLINE
    HRHAP00_REP_GEN_VAR
    HRHAP00_REPORTING
    HRHAP00_SELECTION
    HRHAP00_SES_BUSOBJ_AES
    HRHAP00_SMARTFORMS
    HRHAP00_TEXT_SUBST
    HRHAP00_TMPL_608
    HRHAP00_TMPL_EXAMPLE
    HRHAP00_TMPL_GETLIST
    HRHAP00_TMPL_RESTR
    HRHAP00_TMPL_WIZARD
    HRHAP00_VAL_DET
    HRHAP00_VALUE_TYPE
    Regards,
    Rajesh

  • Using SCORE on top of View with UNION

    Hi guys,
    I explain what I'm trying to do quickly:
    2 Tables: table1 and table2 with same structure and both have a multi_column_datastore ctxsys.context.
    1 View: view1
    select * from table1
    union
    select * from table2
    if I run:
    select * from view1 WHERE contains(view1.COLUMN1,'%textext%',1 ) > 0;
    this works fine, I get the correct result.
    If I try to use SCORE function I have an error:
    select * from view1 WHERE contains(view1.COLUMN1,'%textext%',1 ) > 0 ORDER by SCORE(1);
    ORA-29921: Ancillary operator not supported with set view query block
    I understand the problem is in the UNION inside the view,is there any way to make it works keep filtering the VIEW?
    Thanks in advance

    There is no score in the view, so you can't reference the score when querying the view.  In order to put the score in the view, you need a contains clause, which requires a value.  One method of doing this is to use sys_context.  Please see the reproduction of the problem and solution below.
    SCOTT@orcl12c> -- reproduction of problem:
    SCOTT@orcl12c> create table table1
      2    (column1  varchar2(30))
      3  /
    Table created.
    SCOTT@orcl12c> insert into table1 values ('textext')
      2  /
    1 row created.
    SCOTT@orcl12c> create table table2
      2    (column1 varchar2(30))
      3  /
    Table created.
    SCOTT@orcl12c> insert into table2 values ('textext')
      2  /
    1 row created.
    SCOTT@orcl12c> begin
      2    ctx_ddl.create_preference ('test_ds', 'multi_column_datastore');
      3    ctx_ddl.set_attribute ('test_ds', 'columns', 'column1');
      4  end;
      5  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> create index table1_idx on table1 (column1)
      2  indextype is ctxsys.context
      3  parameters ('datastore  test_ds')
      4  /
    Index created.
    SCOTT@orcl12c> create index table2_idx on table2 (column1)
      2  indextype is ctxsys.context
      3  parameters ('datastore  test_ds')
      4  /
    Index created.
    SCOTT@orcl12c> create or replace view view1
      2  as
      3  select * from table1
      4  union
      5  select * from table2
      6  /
    View created.
    SCOTT@orcl12c> select * from view1 where contains (view1.column1, '%textext%', 1) > 0
      2  /
    COLUMN1
    textext
    1 row selected.
    SCOTT@orcl12c> select * from view1 where contains (view1.column1,'%textext%',1 ) > 0 order by score(1)
      2  /
    select * from view1 where contains (view1.column1,'%textext%',1 ) > 0 order by score(1)
    ERROR at line 1:
    ORA-29921: Ancillary operator not supported with set view query block
    SCOTT@orcl12c> -- solution:
    SCOTT@orcl12c> create or replace view view1
      2  as
      3  select score(1) score, table1.* from table1
      4  where  contains (table1.column1, sys_context ('text_query', 'query_value'), 1) > 0
      5  union
      6  select score(1) score, table2.* from table2
      7  where  contains (table2.column1, sys_context ('text_query', 'query_value'), 1) > 0
      8  /
    View created.
    SCOTT@orcl12c> create or replace context text_query using text_proc
      2  /
    Context created.
    SCOTT@orcl12c> create or replace procedure text_proc
      2    (p_val in varchar2)
      3  as
      4  begin
      5    dbms_session.set_context ('text_query', 'query_value', p_val);
      6  end text_proc;
      7  /
    Procedure created.
    SCOTT@orcl12c> exec text_proc ('%textext%')
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> set autotrace on explain
    SCOTT@orcl12c> select * from view1 order  by score
      2  /
         SCORE COLUMN1
             3 textext
    1 row selected.
    Execution Plan
    Plan hash value: 4090246122
    | Id  | Operation                       | Name       | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT                |            |     2 |    60 |     8   (0)| 00:00:01 |
    |   1 |  SORT ORDER BY                  |            |     2 |    60 |     8   (0)| 00:00:01 |
    |   2 |   VIEW                          | VIEW1      |     2 |    60 |     8   (0)| 00:00:01 |
    |   3 |    SORT UNIQUE                  |            |     2 |    58 |     8  (50)| 00:00:01 |
    |   4 |     UNION-ALL                   |            |       |       |            |          |
    |   5 |      TABLE ACCESS BY INDEX ROWID| TABLE1     |     1 |    29 |     4   (0)| 00:00:01 |
    |*  6 |       DOMAIN INDEX              | TABLE1_IDX |       |       |     4   (0)| 00:00:01 |
    |   7 |      TABLE ACCESS BY INDEX ROWID| TABLE2     |     1 |    29 |     4   (0)| 00:00:01 |
    |*  8 |       DOMAIN INDEX              | TABLE2_IDX |       |       |     4   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       6 - access("CTXSYS"."CONTAINS"("TABLE1"."COLUMN1",SYS_CONTEXT('text_query','query_v
                  alue'),1)>0)
       8 - access("CTXSYS"."CONTAINS"("TABLE2"."COLUMN1",SYS_CONTEXT('text_query','query_v
                  alue'),1)>0)
    Note
       - dynamic statistics used: dynamic sampling (level=2)
    SCOTT@orcl12c>

  • Activity missing in Workforce planning:project view

    Dear experts,
               I an caught up with the following problem:
    1) I created a project with WBS and activities.
    2) Created relationship between activities.
    3) Created project team
    When I try to perform workforce planning (project view) using transaction CMP2, some of the activities are missing in the list.
    Please let me why this happens and also how to include the missing activities.
    Thanks and regards

    Hi
    Please check following prequisites-
    1.HR mini-master record (infotypes 0001and 0002).
    2.Assigned work centers to the internally processed activities.
    3.Entered  Formulas in the work center to determine capacity requirements.
    4.Scheduled the activities to generate capacity requirements.
    5.Assigned only one labor capacity to a work center. (that is catagory 002)
    6."Determine Cap. Check" indicator is ticked in the network header.
    Regards

  • In Hyperion Planning, smart view does not work

    In Hyperion Planning, when viewing the form , the link icon to Smart View (to view the data in Smart View) at the top of the screen does not work.
    When I clicked on smart view icon on the top of the screen, Excel opened but there were no connection showed in excel and not able to forms in smart view.
    Please assist ASAP. Any one can pls help me on this issue.

    Can any one pls help me ASAP with this issue?

  • Hyperion Planning Smart View issue with Member Names & Aliases

    Hi,
    Im using Smart View "Essbase" Connection to a Hyperion Planning Application, ver 11.1.1.3, however with the essbase connection i am not able to select at the smart view options to see aliases, members or both. I change the setting ( Duplicate member names allowed =true) directly at the properties of the outline in EAS, and now i am able to see the aliases, however if time I refresh using web planning/workspace this setting is undone. Furthermore i dont thing i should use it with planning. Any comments?
    Kind Regards

    First of all I hope you have not changed the properties of the outline in EAS for a planning application.
    For more information on using aliases in smartview have a read of :- Smartview --- Display options --- to display alias names
    Also you will only be able to view member name or aliases not both at the same time.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Delete a planned order for materials changed to ND (No planning) MRP1 view

    Hi guys !
    1. I changed the MRP Type "reorder point" to "no planning" (ND indicator in MRP1 view) for some materials.
    2. ¿There is a process to regenerate or delete the planned order created before or have to be a manual process, for example from MD15?
    Regards & thanks in advanced !

    >
    FRANCISCO RODRIGUEZ wrote:
    > Dear  kumar kumar,
    >
    > Before put the question, i was testing the MRP with delete & create new planned order but it doesnt work..why? because when you changed the material to ND, the MRP transactions like MD01, MD02, MD03, send a error message: "Material not plannig" so they does not consider the material anymore.
    >
    >  Definitly, i think to delete in a manual process (MD15).
    >
    > Thanks to everybody.
    Dear,
    even i know ND will not plan ( MRP )
    My view was before changing to ND, delete the existing header material demand & Run MRP
    with option 3, so that system will delete all plan orders of this material ( No Manual process )
    Anyways Good Luck !!!
    Regards
    Madhu

  • SCORM 1.2 and Saba - Reporting a 0 Score for Track Slide views

    Good morning,
    We have just transitioned over to our new LMS, Saba.  To say the transition has been rocky would be an understatement.   So, here is what I am dealing with:
    I have a very basic reader course where I want to grant someone credit once they have viewed all slides.  I am using SCORM 1.2 and setting either "User Access Only" or "Slide Views Only."  If I use slide views, I set it to 1, it sends a 0 score to the LMS, even if the user views all slides.  I have been able to create a fix by assigning a point value to a click box or button at the screen where I want the user to get credit.  However, this does not seem to be what was intended.
    Below are screen shots of my publishing commands, Saba screens, and communication report between Saba and CP.
    Content Communication Log with Saba
    Content Communication Log
    July 14, 2011 5:34:43 AM PDT
    Command Received = LMSInitialize
    Content Item: Super_Instructor_Role
    July 14, 2011 5:34:43 AM PDT Response data (Data sent by Saba LMS to content) =
    cmi.core.student_id = EEFIELDS1
    cmi.core.student_name = Fields, Eric
    cmi.core.credit = credit
    cmi.core.entry = ab-initio
    cmi.core.lesson_mode = normal
    cmi.launch_data =
    cmi.suspend_data =
    cmi.core.lesson_location =
    cmi.core.lesson_status = not attempted
    cmi.core.score.raw =
    cmi.core.score.min =
    cmi.core.score.max =
    cmi.core.total_time = 00:00:00
    cmi.comments =
    cmi.comments_from_lms =
    cmi.student_data.mastery_score =
    cmi.student_data.max_time_allowed =
    cmi.student_data.time_limit_action = exit,message
    cmi.student_preference.audio = 0
    cmi.student_preference.text =
    cmi.student_preference.language = 0
    cmi.student_preference.speed = 0
    July 14, 2011 5:34:45 AM PDT
    Command Received = LMSCommit
    Data sent by content to Saba LMS:
    cmi.core.lesson_status = completed
    cmi.core.lesson_location = 0
    cmi.core.exit =
    cmi.core.score.raw = 0
    cmi.core.score.max = 0
    cmi.core.score.min = 0
    cmi.core.session_time = 00:00:01
    cmi.suspend_data = A1Enone%24nP000AA000AA
    cmi.student_preference.audio = 0
    cmi.student_preference.language = 0
    cmi.student_preference.speed = 0
    cmi.student_preference.text = 0
    cmi.comments =
    July 14, 2011 5:34:45 AM PDT Response data =
    error=0
    July 14, 2011 5:34:59 AM PDT
    Command Received = LMSFinish
    Data sent by content to Saba LMS at the time of exit:
    July 14, 2011 5:34:59 AM PDT Response data =
    error=0
    Any help would be greatly appreciated.
    Thanks,
    Eric Fields
    Sr. eLearning Consultant
    Coventry Health Care

    I would suggest you try using Percent instead of Score, and set the Slide View completion percentage to 100 instead of 1.
    Change Reporting Level to Score instead of Interactions and Score.
    You haven't shown the screen for Quiz > Pass or Fail settings, but you need to set the passing percentage there to 100% as well if you intend that the learner must view every single slide.
    Bear in mind that when using slide views, if you have any navigation buttons on the slides that are set to jump to the next slide when clicked, then the learner does not get a completion mark for those slides.  In Captivate you have to watch a slide all the way to the last frame in order to get it marked as completed.  If for some reason you need to get slides marked as completed despite not being viewed (e.g. when using branching) then you can use our TickTOC widget to gain credit for those slides that are missed or not watched to the end.
    http://www.infosemantics.com.au/ticktoc
    If you suspect that not all slides will be viewed, you can adjust the Pass/Fail percentage to something less than 100% to allow for the missed ones.
    Try these changes and see if it works.
    Once you DO find the settings that allow Captivate to work with SABA I would be very interested to know what they were.  I've got a page on my website where I want to show the Captivate config settings for SABA: http://www.infosemantics.com.au/lms_guide/saba  I don't have access to this LMS myself, but perhaps you or other SABA users on this forum can contribute information to make it easier for others to work with it.

  • Automatic reorder point planning -forecast view

    Hi
    Our client want to implement automatic reorder point Planning.
    Reorder point quantity was maitained from last 3 years  but MRP type is 'ND' as they are not using MRP.
    Now i am changing MRP type to:VM  and in forecastting view: i maintained model as:D constant model period indicator:M
    His periods:60 , forecast periods:12 initialization:X tracking limit:4000 selection procedure:2 reset automatically
    Is it ok ? than can i run MP30.  and  the client wants to run for many materils(2000).
    How can be run for many materials.?
    Regards,
    srihari.M

    Dear,
    In automatic re-order oint planning , system uses past consumption data (historical data) to forecast future requirements. The system then uses these forecast values to calculate the reorder level and the safety stock level, taking the service level, which is specified in MRP2 view, and the material's replenishment lead time into account, and transfers them to the material master.
    Since the forecast is carried out at regular intervals, the reorder level and the safety stock level are continually adapted to the current consumption and delivery situation. This means that a contribution is made towards keeping stock levels low.
    From MP30 you have to executed forecast and system has generated forecast values and updated safety stock and reorder point also. Only thing to remember is you have to maintain service level in MRP 2 view of material master when you use VM- MRP type to calculate safety stock and reorder point
    Find bleow the set up following set up for automatic re-order point planning :
    1.Material Master Set up : Maintain all the relevent parameters from MRP1 to MRP4 view , Forecasting View
    1.MRP Type -VM , Lot Size -EX
    2.Procurement Type -E for FG and F for ROH
    3.Planning Startegy -10 or 40 in FG/SFG and 20 for componenet
    4.Planned Delivery Time in MRP2 VIEW
    5.Indiviaul/Collective Indicator - 1/2 based on your requirement in MRP4 View
    6.BOM Explosion -Keep it blank
    7.Service level percentage -MRP2 view
    8.Maintain Forecastin view data like model selection , Histry period , period indicator , Forecast control pramaters ,
    10.Make sure that you have min 12-8 monhts total consumption update in Forecasting view .
    Configuration : InSPRO -MRP -Check MRP Type -VM-check the details like Re-Orde point .Safety Stock both the automatic calcvualtion box are marked .
    Finally as a sample test , select any material -mm02-execute forecast in mm02-forecasting view -exectute forecast -then save .Run MRP in MD03-1,1,3,3,1.NETCH indicator and check the result in MD04
    HOPE IT WILL HELP. PLEASE REVERT BACK.
    Regards,
    Alok Tiwari

  • How to see Score in "Strategy Analysis" View (BSC)

    Hi anyone
    we have a BSC that work good for us, we can see in "Strategy Analysis" View for each Objective/Measure the status color and the value for each Valued Fields. We want add in this View the value of the score take for each Measure. We see that in at sap presentation.
    Thanks a lot

    It sounds like your preview is just closed - click the small triangle to the left of the word "Preview" in the final column to reveal it.
    Also, in any view (list, column, icon, whatever), you can use Quick Look for most file types, including images. Highlight the file and hit space - you'll get a large preview of the file. Space again to close it.
    best
    Matt

  • Score editor. Page view / Panorama

    Hi,
    How can I do in order to have the same staff distance in panorama view as in page view?
    When I go to panorama view the staffs are too far apart....if I change the distance then In Page view they are on top of each other.
    Thanks in advance.

    Here's the key: you have to set up your page settings before you do any formatting of your score. In other words, the score display you see on your monitor is based on the page attributes (paper size, orientation, etc.). So you can't format the score in portrait mode and then expect it to appear correctly just by changing to landscape mode. So save your song under a new name, change the page attributes, and then re-format your score.

  • KEPM -COPA  Planning document View

    Hi 
    I would like to see the changes made in to KEPM Planning package detials for example I have a Planninng Level-Planning Method-Planning Pckage , I have some values called Quantity ,when ever some one changes the Quantity and saves The Document (in KEPM) it gets saved , so I want to see the changes made document so that I will know who made changes and what changes are made ?
    Is there any Transaction ?
    Sandhya
    Edited by: Sandhya Ameya on Nov 13, 2008 10:50 PM

    Hi Sandhya
    1) +/- I didn't understand, I do see a Tab called Line Items in KEPM on the Top When I click it say Long run times and shows Many Documents, and only for 1 Product (I chose from selections)? with many Document numbers for period 1-12, and some with -ve for sales Qty some with +ve (no sign) for sales Qty.
    A. There is no tab in KPEM, KE25 is a seperate transaction to view Plan Line Items. You cant identify the changed documents seperately. What SAP does it, if you have planned for Product 1 for 100Qty, later the user changes to 200, it generates another document with additional 100 or if the user chnages the quantity to 10 then it generates another document for -90.
    2) How can see for all Lines(All Products) for that Planning Package in KEPM (as above method is useful to see Products and Revenues side by side)
    You can use TCode KE25, select the version, period, record type, currency, product view the data.
    3) Now I took one Document Number and KE25 saw the plan Items period, doc number, Created By,Revenue,BUT not showing Changed By or Actual Quantity ,previous Quantity Like that ,
    It wont have any changed records, it is only creating new document with incremental or decremental values
    I hope I have clarified.
    Regards,
    Suraj

  • MSS ECM preventing approver from planning & approving same employee

    Hi,
    IIn Enterprise Comp, is there any way to prevent the Approver from being able to plan for a subordinate and approve him as well?
    Thanks, Vlad

    HI Vlad,
    I think this can be achieved through authorizations and evaluation paths. The following threads may help you:
    Enterprise Compensation Management (ECM) and Approval Process?
    Authorizations in ECM?
    Authorizations in ECM..?
    Credit: Inputs from community members
    Donnie

  • Synchronisation of two tables in an APO planning book view

    If one has 2 separate tables/grids in an APO planning book data view, is there a way of making them move synchronously, so that if the user moves say x buckets in a direction then this applies to both tables?
    Thanks for any advice...

    Unfortunately no but would be very interested to know if someone has come up with any enhancement (has to be GUI related).
    Somnath

Maybe you are looking for

  • Changing preferences for photoshop cs5 in windows 7 64bit

    [email protected] Why does nothing tally in photoshop? The tutorials always differ to the text in photoshop? why is there no preference editing for windows 7 64 bit?

  • Look for histroy of sql statement executed in database

    is there a way to look for histroy or list of sql statement executed in database.? similar to history command in linux or bash shell.

  • Unable to Install Sims 2 onto Mac.

    When I go to drag the folder into my HD, it copies but when I open it, it says "You can't open the application, The Sims 2, because PowerPC applications are no longer supported. What does this mean?

  • N73 - Another Problem after upgrade the firmware t...

    Except the slow contact search problem (solved by Unplug the battery), I still suffered from some application install problems. 1. Whenever I restart the phone, a message 'Installing' always poped up, and the phone not responding for around 2-3 minut

  • Migration and copying schema

    Greetings, I am in the process of upgrading from DS 5.2 to 6.3. I am using dsmig to migrate. Here is what I am doing. a) I make a complete image of the 5.2 instance and copying it to the new 6.3 machine b) The name of the 5.2 schema is schemaORIG (ex