Predefined PMS Templates Infotypes or Table

Hi,
We are in the process of implementing talent management. We are also using predefined performance management for appraisals.
Even after the appraisal is completed (SAP status is closed approved), the appraisal rating is not getting saved in IT 7409.
Since its predefined PMS, the appraisal template is created via wizard and it is working fine according to the standard process. Is there something else which needs to be done/activated to save the appraisal rating in IT 7409?
Please tell me some one where this predefined templates will store with all status, i mean infotye number or table name.
Thanks in advance.
Regards,
Abhi

Hi,
The pre-defined is using the infrastructure of the appraisal engine and as such all data is stores in objects va, vb, vc. And although they have infotypes assigned you cannot / should not look at them directly but us transaction phap_catalog instead.
The pre-defined templates cannot be changed in this transaction but displayed, go to the VA level, Processing tab, and then at the bottom you find follow processes. Make sure Performance / performance and potential update in TMC is ticked.
When this is not the case you have missed a setting in the template configuration. When it is set, just place a break point in the badi to see where it goes wrong. According to the coding in the implemetation there is no special setting needed (but i just skimmed it quickly over)
Regards and Groetjes,
Maurice Hagen

Similar Messages

  • How to validate predefine PM template that is made by Apprisal Template Catalog?

    Hi, everyone.
    I'm customizing TMC talent assessment but some of them don't work well.
    I made a predefine PM template through Apprisal Template Catalog(IMG:Talent Management and Talent Development>Assessment of Employees>Talent Assessment>Transport Forms).
    However, I cannot set the Process Period of the template(IMG:Talent Management and Talent Development>Assessment of Employees>Talent Assessment>Define Process Periods and Groupings).
    In addition I cannot choose the template as a standard template(IMG:Personal Management>Personal Development>Objective Setting and Apprisals>Settings for Predefined Performance Management Process>Edit Performance Management Process).
    I guess the function which it enters the template ID to T77TMC_P_T doesn't work well, but I cannot enter template ID to T77TMC_P_T by myself (because It is greyout).
    Does anyone know how to validate the predefine template that is made by Apprisal Template Catalog?
    (I tried to make the predefined template by Talent Management Configration(IMG:Talent Management and Talent Development>Assessment of Employees>Talent Assessment>Define Forms for Talent Management) and distinguished that it did work well)
    Natsumi

    Problem solved,
    checking if output type is in outputtype schema. Using Table T683S.

  • Custom Infotype - Using Table control in the screen.  IN OM

    Hi,
    I am having a requriement where in I need to create a custom infotype using table control in the screen. I have to create this in OM and I am using PPCI transaction to create the info type. I am able to create the infotype with fields but not table control. Please let me know if any one of you came across and help me with the process I need to follow.
    Thanks in advance.
    Venkat.

    Hello,
    After you create the info type throug PPCi, you can directly go to the Sceen module program created automatically while creating Info type and edit the screen.
    activate it after your changes.
    Regards,
    Srujan.

  • ABAP HR How to create infotype with table control in it like Infotype 0008

    Hi Experts.
    I need help from u guys. My client requirement is to create custom infotype just like 0008 infotype which contain table control to save amount and wage types. I try to create infotype with table control using PM01, but that table control is in display mode only, i almost search every where to create custom infotype with table control but what ever threads in forum all are they unanswered and most of the threads for creating infotype. But i already done with infotype , but my main problem is table control.
    If any one have some suggestion for this please share with me.
    <removed by moderator> i am looking for positive reply.
    Edited by: Thomas Zloch on Aug 30, 2011 12:54 PM

    Hi
    I've created several infotypes with a Table Control and it is always the same story. You have to create a custom Z table to store the Table Control data (if you can have unlimited records), so in the PSXXXX structure you need to add a TABNR field to link the PAXXXX table and the Z one, just like the type table OM infotypes.
    Then in your code you have to control every possible operation, INS, MOD, DEL... and update the Z table accordingly (the standard code won't do that)
    If your TC fields appear in display mode, take a look at the Groups 1 and 3 in your fields, the must be set with the usual values for a PA infotype.
    If you have more questions, just ask,
    Regards

  • Mif template problem with table formatting

    I am trying to create a database driven Framemaker document via MIF. I have a problem trying to get my table formatting to work. The table tags and paragraph tags appear correctly in their respective designers but the values shown for font, shading, etc. are Frame defaults and not from my template unless I click on the tag drop down, reselect the same exact tag name and click apply. Any ideas on where I'm going wrong?
    Here is a snippet of the MIF for the main file:
    <MIFFile 7.10> # File created on 4/30/2009 3:03:36 PM
    include (AFrames.mif)
    include (Tbls.mif)
    include (template.mif)
    <TextFlow
    <TFTag `A'>
    <TFAutoConnect Yes>
    <TFFeather No>
    <TFMaxInterLine 3.0 pt>
    <TFMaxInterPgf 10.0 pt>
    <Para
      <PgfTag `Anchor'>
    <ParaLine
       <ATbl 500>
      > # end of ParaLine
    > # End of Para
    etc.
    And here is a sample from the Tbls.mif file:
    <Tbls
    <Tbl
      <TblID 500>
      <TblTag `Item Table'>
      <TblFormat
        <TblWidth 3.50000">
        <TblColumn
         <TblColumnNum 0>
         <TblColumnWidth 0.50000">
        >
        <TblColumn
         <TblColumnNum 1>  
         <TblColumnWidthP 1>
        >
        <TblColumn
         <TblColumnNum 2>
          <TblColumnWidthP 1>
        >
        <TblColumn
         <TblColumnNum 3>
         <TblColumnWidth 0.50000">
        >
      > # End of Format
      <TblNumColumns 4>
    <TblH
    <Row
      <Cell
       <CellContent
        <Para
        <PgfTag `Cell Head Left'>
        <ParaLine
        <String `Item No.'>
    etc.

    The Monkey Butler wrote:
    The include statements must appear in this order:
    Put the template after the tables and the tables don't read the format.
    Actually that does make sense to me (and I hate to say it, I remember now that I ran across this issue a million moons ago when first doing MIF export from a database).
    In looking at the MIF includes order, in your first example:
    include (AFrames.mif)
    include (Tbls.mif)
    include (template.mif)
    all of the tables are being instantiated before FM has a chance to "analyze" the template section -- so there's no way it can say "aha, this is the FormatA that I already know" so that's why it puts the "star" on the format, indicating that it's an override to the table catalog format (and in fact there's no table format catalog yet, no table format names at all, so it's an "override to nothing" table.
    In your successful document, the template includes the format for "FormatA", so when the tbls section comes along FM says "ah, ok, this is an instance of "FormatA" that I know already exists in the table catalog" so assuming there aren't any formatting changes in the instance of the table, it doesn't mark each table instance as a override to the named table format.
    "include (aframes.mif)"
    "Include (template.mif)"
    "include (tbls.mmif)"

  • Underline Problem in template of a table in smartforms

    Hi friends,
                   I have a requirement wherein i need to draw two line one above text as shown below :
    Total
    Invoice Amount
    Amount Eligible for cash
    I have copied std smart form LB_BIL_INVOICE
    template INFO_ENDSUMMEN in table TABLEITEM has texts .
    Now when I am using _ option in template tab for Total,
    I
    nvoice Amount
    Amount Eligible for cash  get invisible in output(though it was shown before).
    Can you guys help me out.I just need
    Total
    Invoice Amount
    Amount Eligible for cash
    to be displayed in output.
    SATISFACTORY ANSWERS WOULD BE REWARDED .

    Hi Rajiv ,
    Its getting disappered because the height of the cell is smaller than your text. so better increase your cell height.That is drag the lower line of your cell little down or increase its height by 1mm or 2 in details of template .
    The simplest way which i feel is create a template with exact height width and click on upper frame and lower frame button other than selecting pattern there.
    Try this it wil surely work
    Regards
    Swetha.

  • How to insert a template in a table of smartform

    In printing invoice, iam displaying invoice item details with in body of table, it has displaying some records but there was some gap between the records and border line of body. i want to place a template in a table but there was no change in output.
    1
    a
    b
    c
    d
    2
    e
    f
    g
    h
    3
    g
    h
    i
    j
    Gap               gap
    i want to fill the gap with lines, as the items displayed changes dynamically with billing document number
    so i tried placing a template in main window but it is not working
    it is possbile to fulfil my requirement

    Hi..
    The border line that is displayed now is that of the MAIN window boundary. if you want to print a line immedietly after the line items end, then you need to use a suitable frame which is available in Table tab of table that you have created. These buttons are just below the Table tab described as SELECT PATTERN, OUTER FRAME etc.
    Hope this works.
    Regards,
    Karthik

  • Workflow issue in PMS Template

    Hello Friends,
    I have an issue with PMS Template workflow.PMS Administrator relased  template to employee  with their respective Final mgr,Part appraiser Etc...In my project process is,once template relased from PMS Admin it has to go Final mgr-part appraiser Etc....
    Here the problem is template is triggering to Final mgr and not to Part appriaser.
    Guys please help me where i can check myself to know the reason why this workflow is not triggering to part appriaser.
    For kind info i have maintinaed all required information in 105 IT.
    Regards:
    Kumar

    Hello Kumar,
    Firslty have you defined a valid status flow to your template.
    If not , this can help.
    Restrictions for Status Flow
    The following provides you with a list of all possible statuses and subsequent statuses you should take into consideration when you edit statuses and substatuses.
    In Preparation
    ® In Preparation
    ® In Planning (if Objective Setting Agreement is defined)
    ® In Process (only if Final Appraisal or Part Appraisal is defined)
    In Planning
    ® In Preparation (only if Objective Setting Agreement  is defined)
    ® In Planning
    ® In Review (if review phase is defined)
    ® In Process (if Final Appraisal or Part Appraisal is defined)
    ® Completed (only if no Part Appraisal / Final Appraisal is defined) or higher status
    In Review
    ® In (Subsequent) Review
    ® In Process
    ® Completed (only if no Part Appraisal / Final Appraisal is defined) or higher
    In Process
    ® In Preparation (only if no objective setting phase is defined)
    ® In Process
    ® Completed or higher status
    ® Part Appraisal Completed
    Completed
    ® In Planning (only if Objective Setting Agreement and no review phase is defined)
    ® In Review (only if Objective Setting Agreement and review phase is defined)
    ® In Process (only if Final Appraisal or Part Appraisal is defined)
    ® Approved
    ® Rejected
    ® Closed Approved
    ® Closed Rejected
    Approved
    ® Closed Approved
    ® Rejected
    ® Closed Rejected
    Closed Approved
    ® No status change allowed
    Rejected
    ® In Planning (only if Objective Setting Agreement and no review phase is defined)
    ® In Review (only if Objective Setting Agreement and review phase is defined)
    ® In Process (if Final Appraisal or Part Appraisal is defined)
    ® Approved
    ® Closed Approved
    ® Closed Rejected
    Closed Rejected
    ® No status change allowed
    If you have done this - secondly you also need to check tcode- PHAP_Admin - Click Utilities- Event Linkage and check all the evvents you will be using for your workflow.
    also check if you have activated the workf flow events in IMG.
    Hope this helps.
    Regards,
    Regi

  • Custom infotype with table

    Hi Guyz,
    i have to create a custom infotype with a table in it.i have created the PS structure (PM01)with fields a,b,c,d,e. i gave the infotype charac, techn attr, activated the PA table and P structure . In the lay out editor i created a table and put the fields a, b and c. i dragged the input/output field on the table and then dragged the text fileds above them. when i check the layout i get the following error in the flow logic.
    Program MP988800 Screen 2000
    The field P9888-ZA is not assigned to a loop. "LOOP............ENDLOOP" must
    appear in "PBO" and "PAI"
    can anyone tell me how and where should i write the code for the table to get activated. Thanks a lot.

    HI Ranjeth,
      i have tried the code you provided. I am getting errors.can you please tell me what IT_TBCTRL_BEHAVIOR and IS_TBCTRL_BEHAVIOR are.
    i am getting the following errors.
    Statement CONTROLS is not defined.
    IS_TBCTRL_BEHAVIOR-CODETXT not defined
    IS_TBCTRL_BEHAVIOR-RATE not defined.
      i have replaced i_bc_tbctrl with the table name which i defined in the layout editor.  i have put your code in the flow logic. check the code below
    CONTROL: options TYPE TABLEVIEW USING SCREEN 2000.
    PROCESS BEFORE OUTPUT.
    LOOP AT IT_TBCTRL_BEHAVIOR
    INTO IS_TBCTRL_BEHAVIOR
    WITH CONTROL options
    CURSOR options-CURRENT_LINE.
    MODULE options_GET_LINES.
    ENDLOOP.
            general infotype-independent operations
      MODULE BEFORE_OUTPUT.
      CALL SUBSCREEN subscreen_empl   INCLUDING empl_prog empl_dynnr.
      CALL SUBSCREEN subscreen_header INCLUDING header_prog header_dynnr.
            infotype specific operations
      MODULE P9111.
      MODULE HIDDEN_DATA.
    PROCESS AFTER INPUT.
    LOOP AT IT_TBCTRL_BEHAVIOR.
    CHAIN.
    FIELD IS_TBCTRL_BEHAVIOR-CODETXT.
    FIELD IS_TBCTRL_BEHAVIOR-RATE.
    MODULE options_MODIFY ON CHAIN-REQUEST.
    ENDCHAIN.
    ENDLOOP.
    process exit commands
      MODULE EXIT AT EXIT-COMMAND.
            processing after input
            check and mark if there was any input: all fields that
            accept input HAVE TO BE listed here

  • Insert Infotype with Table Part

    Hi All,
    I am trying to insert Infotype nnnn including the information in the table part using a Function Module.
    I have found FM RH_INSERT_INFTY_EXP. This FM has a parameter called TNNN which is supposed to hold the table part information. However, I have tried to used this but the table part is not filled.
    I saw that PNNNN-ITXNR is relevant here.. However, incremeting this number for each entry I write seems unhandy..
    Can anybody help me here?
    Thanks, Johannes

    Hi Maricella,
    Use FM 'RH_INSERT_INFTY'.
    Pass values for below parameters while calling the FM.
      REPID               = SY-REPID
      FORM                = 'FILL_TASK_DATA'
    Create a subroutine with the same name as you have given above for 'FORM'
    and in this subroutine you can populate data for HRTNNNN.

  • Cut and Paste in Baby Record template, Daily Log table

    Apologies if the answer is obvious, but I just had a baby and my brain is working on very little sleep, and I don't have time to read through the user guide to find the answer, if in fact it's in there.  I've been using the Daily Log table in the Baby Record template, but I can't seem to figure out how to add new categories/lines without literally having to recreate every single category level manually.  That seems incredibly time consuming and inefficient.  Isn't there a way to copy one date (with all three subcategories of Food, Diaper and Sleep) and paste to create the rows for the next date?  For instance, I just manually created an entry for 1/19/2012, and then manually added the three subcategories and had to retype in the names "Food," "Diaper," and "Sleep," and then had to manually add lines for each entry under those subcategories.  Instead, I want to copy the entier hierarchy for 1/19/2012 and then paste it and change the date to 1/20/2012, and so on, so I only have to create the hierarchy once and then can just enter in my data.
    Thanks in advance for any help you can provide. 

    Not a very intuitive template, to my thinking.
    Let's try to unravel the 'magic.'
    Categories on this template are created automatically from the entries in column B (which is hidden).
    Category rows are created automatically when you check the "Insert Categories form the following" checkbox in the Reorganize dialogue. When the box isn't checked, these Category rows don't exist.
    Start by unchecking the box and unhiding column B when your interest is in adding data
    To create a new category, you need only make an entry in column B that is different from the entries already there.
    For data entry, I'd forget about immediately creating a full set of categories for each new date. Instead, try this:
    On 7 July, 2009 at 7:15 AM the baby has a bottle of formula. To record that entry:
    Select the row where the most similar event took place on the previous day (6 July, 2009, 76:10 AM Food Formula), row 12 in the illustration below.
    Press option-down arrow to insert a new, empty row below the row containing that event. The selection will move down to the first cell in the new row.
    Reslect the previous row, then drag the Fill control handle (the small circle at the bottom right corner of the blue selection rectangle) down to fill the contents of row 12 into row 13.
    Note that the Date in column A increments by 1, and now shows 7 July, 2009, the date of the event to be recorded.
    Time has also incremented by one hour, and will need to be edited.
    The other two values, "Food" and "Formula" are the same as there were in the previous row.
    Edit the time in column C, and the entry is done.
    Make other entries in a similar manner.
    When done, click the reorganize button and sort the table by Date (column A). You may want to add two sub-sorts, by Activity (column B), then by Time. Each subsort is done within the previous category. Note that Time entries actually create Date and Time values in the cell, with the Date part equal to the date the entry was made.. If all entries for a specific date are not made during a single day sorting on time will give unexpected results,
    Regards,
    Barry

  • Updating a customer infotype detail table (in PIQSTM) from an interface

    We have a customer infotype that has a header table (HRP....) and a detail table (HRT.....) and we have this attached to transaction PIQSTM. This works fine. However, we now have a requirement to update the infotype via an interface and we have hit a problem using the standard function modules. We have tried, for example, using FM 'HRIQ_PNNNN_MAINTAIN' but have found that whilst it updates the header ok, if any detail record exists it is always overwritten. We need to keep the existing detail records attached to the same header.
    I've debugged the way our tables are updated when saved in PIQSTM and can see that there is a lot going on with buffers. It seems that buffers are updated and then FM 'RH_BASE_UPDATE_DB_DIALOG' is called, ultimately resulting in an insert to our detail infotype table. In our interface program, obviously I would prefer not to update the table directly. I guess BDC is always an option but again, I'd prefer not to use it if possible.
    Has anyone out there done this and can offer me any advice ?
    thanks,
    Malcolm.

    Malcom,
       Try to feed old HRT record and New records(from interface) to Insert/update info-type function module.
    Thanks,
    Prabhat Singh

  • XML Publisher template with fixed table

    Hi,
    I need to print the table fixed on each page, irrespective of the number of rows. For example, if the query returns 1 row or n rows the table should be shown as fixed. If there are more pages to be displayed, then the same should be displayed (fixed table) in the second page onwards.
    In short, the table should like the one in pre-printed stationary. In other words, the table should be fixed on each page, regardless of number of rows.
    Any help will be highly appreciated.
    Thanks in Advance.
    Thanks
    Rama

    Yella,
    There is not a solution. XML Publisher is not capable of doing this with RTF templates. You must either use a PDF template, make a bitmapped report, or use a third-party solution.
    RTF templates are convenient, but they are not yet, in my opinion, advanced enough to produce professional looking documents. They may get there someday, but they are not there now.
    Me personally, I have been able to make very beautiful professional looking documents with bitmapped reports. Doing things that are just not possible in XML Publisher. I do use RTF templates for some things, so they do have their place, but from my experience, professional documents is not one of them.
    Kurz

  • Infotype 25 Table

    Dear guys
    Can any body tell about table used by Infotype 25. Table PA0025 has no records in it. But still infotype has appraisals maintain in it.

    Adnan,
    Are you sure you are looking at the Appraisals records in PA20? because when you look at it through PA20 it shows some other infotypes data too like Qualifications.
    Also, this question could better be answerd in HCM forum at this link: SAP ERP Human Capital Management (SAP ERP HCM)

  • PMS Template Error :Releasing

    Dear All,
    We are getting an error while releasing the template in PMS in PHAP_CATALOG
    Status 'In Process' and substatus 'Submitted to Appraiser' are not assigned to category 'PERFORMANCE MANAGEMENT SYSTEM_BTL'
    Message no. HRHAP00_TEMPLATE128
    REGARDS
    VJ

    Thanks Giriesh.See the given below screen shot

Maybe you are looking for