TEM Program -  Appraisal Model Inheritance

What is the program in TEM that allows Appraisal Models assigned to BET be inherited to BEs?
We are planning to create a cuztomized batch job based on this program.
Any help will be appreciated.
Points will be given out.
Thanks
Regards,
Olekan Babatonde

Hi Noob!
I am right at the moment on holiday that's why my answers delay..
I dont want to answer your question now,  I only show you how to answer such questions for yourself:
You have an object ID for the BE. You open the pp01 transaction and choose the objct "Business Event" or "Course" (this is in LSO).
You enter the ID and push the Enter.
You will see to every infotype whether they exist -> green check shows you on the right of the infotype.
Choose relationships and choose "create".
On the right hand side you can find a button "Allowed relationships" -> this indicates all the reletionships configured between the object id "BE" and the other objects.
If you can find here the right relationsip to the Appraisal than you are able to do this. If you cannot, than it is forbidden and in this case the BE will inherit the relationship from the BET. Which one of the alternatives you can find there?
Hope I was able to show you some more useful thing than just an answer on this specific question
Have a very nice day!
Best regards,
Zsolt

Similar Messages

  • [TEM] Creation of Multi - Lingual Appraisal Models

    Hi Experts! (Zsolt? )
    We need Multi- Language Appraisal models so that end-user in the ESS portal can choose what language they prefer during maintenance of appraisal form for BEs.
    In our Appraisal Catalog, there are already created identical Appraisal Models but in different languages. In English and in German.
    When I assign Appraisal models in PP01 to BETs, I can only choose 1 of these Appraisal Model (English or German). So the Appraisal model that appears in the Portal can only be English or German depending on what you've assigned to the BETs in PP01. Users cannot choose whether they prefer appraisals in English or German.
    We are trying to implement a functionality where users can choose the language they want.
    How do I do this? Does it involve customization of the Appraisals Catalog table.
    Many thanks!
    Points to those who can help.
    Regards,
    Olekan

    Hi Olekan,
    to do the assignment with several Appraisal models to one BET is not this easy thing. Let me explain you why:
    You can assign to one BET two different app. models ->
    > BE appraisal
    > Attendee appraisal
    These are related to the BET with different relationships. The point now is that you can assign with PE transasction (PVD0) ONLY ONE APP.MODEL TO ONE BET WITH THE SAME RELATIONSHIP.
    Theoretically you can do more by changing the Time constraint of this relationship. I think you will be able than to assign more App. Model in PP01  after changed the Time constr. BUT THIS IS NOT A PE TRANSACTION. Whether the application will enable you to choose from these realted objects while running it is not sure. This is a design issue, that the PD transaction (PP01) and the PE transaction (PVD0) don't have the same logic.
    I can show you another example to understand my point of view:
    if you create a Web-link to the Event in PE transaction while creating an event you are able only attaching one link. BUT if you do maintaining in Change modus on the event in PP01 you will be able to assign more Web-links..
    In this case the situation works, you are able to page between the links later, the multi-assignment is accepted by the app.
    Please check whether in our case the app. accepts the multi assignment with PP01 and whether you are able to show on ESS portal side the option to choose.
    Best regards,
    Zsolt
    null

  • Mutliple Appraisal Models (TEM)

    Hi Experts!
    I need some help regarding appraisal models.
    The business requirements are:
    Appraisal models can be assigned to Business Events (BE) and Business Event Type (BET) in PP01.
    1. Only 1 Appraisal Model will be assigned per BE at any given time.
    2. Multiple Appraisal Model can be assigned per BET at any given time.
    The different Appraisal Models are:
    AA– Event Appraisal (Appraiser: Attendee)
    BB– Attendee Appraisal (Appraiser: Event)
    CC– Event Appraisal (Appraiser: Supervisor)
    There are two relationship that assign appraisal models to BEs and BETs
    A058 – Has attendee apprsl model (Time Constraint currently set to "2")
    A057 – Has event apprsl model (Time Constraint currently set to "2")
    Problem no. 1  Appraisal Model for BEs – Single Appraisal Model at any given time
    Since A058 and A057 are different relationships how can I configure it so that, once one of these two relationships already exists, you cannot create a new appraisal model without delimiting the previous one? (wether its A058 or A057)
    NOTE: This configuration must not affect the relationships used for BETs since it have different requirements.
    Requirement 2 - Appraisal Model for BETs – Multiple Appraisal Model
    I would need to set Time Constraint of A058 – Has Event apprsl model to “3” – Unlimited  to accommodate Appraisal models AA and CC which are both Event Appraisals.
    Problem no. 2 These two relationships are used when we maintain either BE or BETs. Only one time constraint can exist for each of this relationship at any given time.
    The problem is that the requirement for BEs and BETs needs two differing sets Time Constraints for these two relationships.
    I will give away points to those who can help.
    Many thanks!
    Regards,
    Olekan

    Ive decided to create a different sets of relationship for so that BEs and BETs have different pairs of relationships.
    Please disregard this thread.

  • How to find the appraisal form for an appraisal model

    Hi group,
    We want to implement the BAdI that defaults dates for an appraisal.  However, it should only kick in for certain appraisal models.  When entering the BAdI, I have APP_MODEL_ID available to me.  Based on this ID, I need to find which appraisal form the passed appraisal model belongs to - and only carry out code in BAdI if appraisal form = 5.
    I find AFORM_ID in table T77BF, but I cannot find how to determine this based on the APPL_MODEL_ID passed to the method.
    Any hints greatly appreciated.
    /Kirsten

    You can do a look up of the Table HRP1043 for the Appraisal Model & retrieve the Appraisal Form ID.
    data: w_form_id type AFORM_ID.
    select AFORM_ID into w_form_id up to 1 rows
                               from HRP1043
                               where plvar = '01'
                                   and otype = 'BS'
                                   and objid =  "Appr Model ID
                                   and istat =1
                                   and begda le sy-datum
                                   and endda ge sy-datum.
    endselect.
    if sy-subrc eq 0.
    * w_FORM_ID will ahve the form no
    else.
    * error.
    endif.
    ~Suresh

  • Need to default dates based on appraisal model in Java Iview MboStatusApp

    Hi Gurus,
      I Need to default dates based on appraisal model selected in Java Iview MboStatusApp in MSS->Team->Performance Managemeent->Update Appraisals of reportees->Status overview .
    In this iview we have drop down with list of appraisal models along with the validity period(Start and end date)
    Trails Made : HRPDV00APPRAISAL0001 - I made an implementation for this BADI along with the iview settings at
    self services - > Use Evaluation Period for Employee Selection set to 'NO'.
    But when i tried to run the iview after implementation of BADI , i see there is no execution of BADI .
    My Basic requirement is when manager select any appraisal model say 2009 's appraisal model then dates must be as
    start date : 01/01/2009   End data : 12/31/2009
    when i select 2011 appraisal model
    start date : 01/01/2011   End data : 12/31/2011
    Please help !
    Appreciates the efforts made !!!

    Hi Reddy, did you get any solution on how to change the initial date in Status overview?
    Best regards
    Lasse Finderup

  • Difference Between Appraisal Model and Appraisal Doc

    Hi Experts,
    Please do let me know the difference between Appraisal Model and Appraisal Documents (Appraisal Template).
    I mean in terms of functionality.
    when are where to use them.
    Through Appraisal model i m unable to create Appraisals for n number of employees in one shot. i.e, appraisals to be created for each individual of a department in one go.
    i know this transaction PHAP_PREPARE_PA which will create mass Appraisal Doc's but i want to create Appraisal which can be stored in Infotype 0025.
    Plz suggest.
    Thanks in Advance
    ...Sadhu
    Edited by: sadhar on Sep 8, 2008 11:09 AM
    Edited by: sadhar on Sep 8, 2008 11:09 AM

    hi
    the basic difference you are looking at is the old appraisal model
    and the new MBO
    the old appraisal model very much supports infotype 25 and you can view the data in there,
    but once you activate the MBO you cannot have the old module active practically.
    In the PHAP_prepare_pa transaction can be used for mass dipatch of appraisal documents,
    select the second option for the same in the list .
    The second option will allow you to select org unit which will  allow to assign to all employees in the selected org. Unit.
    Regards
    Sameer

  • Change the Proficiencies in Appraisal Model, PD???

    Dear All,
    I am trying to change the Proficiencies in Appraisal Model from the following, as per standard;
    1 = 100%
    2 = 90%+
    3 = 80%+
    4 = 70%+
    5 = 60%+
    6 = 50%+
    To the following, as per the requirements of the client;
    1 = 50%+
    2 = 60%+
    3 = 70%+
    4 = 80%+
    5 = 90%+
    6 = 100%
    Is it possible to be done? If so, how do I do it?

    One more thing, Is it possible to edit the weighting in the appraisal forms? like the weighting i comming up as 1, i i want to change it to 2 how can i do that?
    Regards.

  • I want to change the end date in SAP HCM Appraisal model

    Hi all,
    The short dump gives out this message:
    Object type SUBTY cannot be read for message type HRMD_A from segment type E1PLOGI
    i want to change end date of the appraisal model multiplier, where i have to go and change the same.

    declare variable:
    DATA : gv_date(10) TYPE c.
    and assign value to it:
    CONCATENATE sy-datum+4(2) sy-datum+6(2) sy-datum(4) INTO gv_date SEPARATED BY '/'

  • OSA .. Assign Appraisal Models to Personnel (Sub)Areas/Employee (Sub)Groups

    Hi all,
    I am using OSA and I am trying to assign appraisal templates to certain employees. The old "Assign Appraisal Models to Personnel (Sub)Areas/Employee (Sub)Groups" does not seem to work.. could I be doing something wrong? How does this functionality work in the new module of OSA . can anyone help me out?
    Thank you

    Hi Bisu ,
    Could you so nice as to tell me how exactly can I do this?
    Thank you so much for your quick reply!

  • What is Appraisal Model, criteria, Appraisal template ??

    Hi All,
      I am very new to SAP HR, please let me know what is
      Appraisal Model  Object type - BS
      Criteria Object type - BK
      Appraisal template Object type - VA
      Appraisal criteria Object type -  VC
      How appraisal model and criteria is used the BSP application "HAP_DOCUMENT" for appraisal  ???
      Is there any difference between Training (Attendee) appraisal and Personnel development appraisal and
      how the they are used ??
       How to do the Online "Attendee" appraisal on ESS ??? Our system is ECC 6.0 without any Enhancement pack.
       What is the significance of PHAP_CATALOG_PA and how it is different from PHAP_CATALOG ??
       You are requested to help me.
    Thanks & Regards,
    Edwin

    Hey
    This is too much to answer in one thread. However, I will try , see my answers in bracket
    Appraisal Model Object type - BS  ( Belongs to old appraisal model)
    Criteria Object type - BK  ( Belongs to old appraisal model)
    Appraisal template Object type - VA ( Object to define a appraisal template  in the new OSA module )
    Appraisal criteria Object type - VC ( Object to define a criteria in the new osa module )
    How appraisal model and criteria is used the BSP application "HAP_DOCUMENT" for appraisal ??? -  (you define the VA, VB and VC objects in PHAP_CATALOG and bsp page display it )
    Is there any difference between Training (Attendee) appraisal and Personnel development appraisal and
    how the they are used ?? -  (These are used for difference purpose. Appraisal are used for course evaluation, object setting and appraisal ( osa ) is used for personnel evaluations )
    How to do the Online "Attendee" appraisal on ESS ??? Our system is ECC 6.0 without any Enhancement pack. ( This can be either using the BSP / webdynpro abap screens ) - It is all devlivered part of ESS/MSS business package
    What is the significance of PHAP_CATALOG_PA and how it is different from PHAP_CATALOG ??
    (PHAP_catalog_pa is for personnel appraisals only . you can see much more in phap_catalog)
    Documentation for OSA  in EHP 4 - http://help.sap.com/erp2005_ehp_04/helpdata/en/98/1222d3404e3849912015524dce03e5/frameset.htm
    Documentation for other versions - http://help.sap.com/saphelp_erp60_sp/helpdata/en/98/1222d3404e3849912015524dce03e5/frameset.htm
    Hope this helps , let me know if you have any questions.
    Aneez Hameed

  • Appraisal Model

    Hi,
    I am new to PD.
    I am  using ecc6.0 and i have requirement  on performance appraisal...
    Can anyone please help me on configuring the appraisal model or share any document regarding appraisal model.
    Arun.

    Hi,
    SAP provides standard templates to proceed with appraisal cycle.
    one should be aware of using the existing appraisal templates and if they are not suitable we can create our own templates.
    Before getting into appraisal firstly get all the requirements from client and the start point of appraisal and end point of appraisal i.e, ratings.
    after getting all the required things you can start with OSA  (objective setting and appraisal).
    there are standard workflows to complete the ratings....
    on top of this get familiar with the objects like VA, VB, VC and other objects of appraisals.
    start of with this. 
    good luck
    rafi

  • Upload of Appraisal Model Notes thru BDC

    Hi,
    Friends is it possible to upload notes maintained in hard copy Appraisal sheet to SAP Appraisal Model notes through BDC.
    Samriddhi

    Hi,
    Uploading content from hard copy to sap..it is possible if you have DMS..document mangement system.
    I doubt about appraisal system.
    Thanks & Regards
    Pallavi

  • APPRAISAL MODEL (PERFORMANCE GOAL SETTING)

    Hello ,
              I am new to this HR module , can u please solve my doubt .
              My requirement is , I want to include my customized Adobe form in
              the APPRAISAL MODEL (PERFORMANCE GOAL SETTING) . I have implemented
              In  the  BADI .By creating a new template manually , it is not allowing in the list box
               How could I include my zxxxx adobe form instead of the standard.
    Thanks in advance.
       Arun

    Hi,
    SAP provides standard templates to proceed with appraisal cycle.
    one should be aware of using the existing appraisal templates and if they are not suitable we can create our own templates.
    Before getting into appraisal firstly get all the requirements from client and the start point of appraisal and end point of appraisal i.e, ratings.
    after getting all the required things you can start with OSA  (objective setting and appraisal).
    there are standard workflows to complete the ratings....
    on top of this get familiar with the objects like VA, VB, VC and other objects of appraisals.
    start of with this. 
    good luck
    rafi

  • Deletion of Appraisal Model

    Dear Friends,
    I am trying to delete Appraisal Model from Appraisal Catalogue. But an error msg comes that this Appraisal Model is still in use and can't be deleted. I do have used the Appraisal Model for some personnel numbers but I had deleted all those personnel numbers.
    Sipra

    Hi Sipra,
    Try some of these things : Go to appchange > select appraisal model and personnel number for  which you want to delete-in the next screen you can see delete option try using this option.
    But sometimes this option is greyed out if your appraisal is in completed status.
    It it is so go in infotype-25(Objective setting and appraisal received tab)  of those personnel numbers and try deleting record from there.
    Reply if this work out.
    Thanks and Regards
    Pallavi

  • No Appraisal Model in Appraisal Overview

    Hi,
    in ECC5 EP6sp15.  MSS 60.1.18 (not webdynpro)
    We're using PD -> Appraisals   not  OSA 
    I have created some appraisals but the Appraisal Model drop down doesn't contain them.  Anyone suggest what I need to do to get them to come through?   Can't see anything in the doco.
    TIA
    J

    Sorry jambo...
    I'm fighting with your some problem...
    What are missing entry in table T513PAPD?
    What's theirs use in appraisal model creation?
    I think can we help each other in this new sap's domain...or better, i hope so.
    Thank's in advance.
    Valerio Floriani

Maybe you are looking for

  • How do I get more text options in photoshop??

    How do I get more text options in Photoshop?  I have the basic package, but I would like more script options. Thank you,    Maureen

  • How can i change authentication settings for existing account?

    I have an email account from my work server that i have set up as a pop account in Mail. The problem is that the settings have recently been changed on the server and on other accounts but I cant find the same options in the preferences of mail. What

  • Missing Images in IDCS3

    We received an IDCS3 Indesign file with a collect. When we open the file it shows all images as being linked. When we try to make a PDF, one of the images goes missing. At first we thought maybe the image was marked to suppress output, but I don't se

  • WBS Element Search Help

    Hi, I need to get WBS Element in the Selection screen in a zreport with collective search.how do i get it? Thanks & Regards, Apurva.

  • Executing transaction without active Undo Tablespace

    Hi, DB: 9.2.0.5 OS : AIX 5.2 I have opened my standby database in READ ONLY mode.I have undo tablespace.It is live setup and users are checking data with standby database. SQL> show parameter aq_tm NAME TYPE VALUE aq_tm_processes integer 0 SQL> SQL>