Appraisal template layout in OOAM

Hi Experts,
I am facing an issue with Appraisal Template, the sequence of the  template, which I was working on after the system refresh has changed
Please  advise me how I can restore the template in the same order as initial as the layout of the pep form which has been generated based on this template has changed because of this re arrangement.
Any inputs on this would be very helpful as we are stuck up on this
Thanks and Regards
Bonny

closing now

Similar Messages

  • Appraisal template standard buttons not working via ESS/MSS

    Hi experts,
    The error which I am facing in appraisal template is as follows
    When I click on any button on appraisal template no action takes place.
    Kindly let me know how can I resolve this error.
    we are using BSP application HAP_DOCUMENT.
    according to me page fragment 'document_buttons.htm' (Method CONVERT_BUTTON_TO_UI) contains the code for button creation and button handling
    the page fragment 'document_buttons.htm' is getting triggered when page is initialized but it is not triggering when button is clicked.
    Additional info that might be useful to resolve the issue:
    1) While viewing appraisal template's web layout in t-code PHAP_CATALOG_PA.
         I am facing following script error.
         This error reappears when I click on any standard button For eg SAVE
    2)  We are currently using IE 8
    3)  We recently upgraded ECC system from ECC 6.0 to ECC 6.0 / EHP 6 (ECC 6.6)
    4) I checked SICF and corresponding services are active
    Thanks in advance

    Hi Adrian,
    Design2008 service is inactive in my system.when activated temporarily I was not able to see previous page (Blank page was displayed) in my appraisal application.
    For BSP application HAP_document, i checked SICF->default host->SAP->BC->BSP->SAP->HAP_document.This service is active.
    The image which I have attached with my question is appraisal template's web layout in t-code PHAP_CATALOG_PA.
    regards
    Ninad

  • Customised Badi not appearing in Appraisal Template

    Hi All..
    I have created a Customized BAdi from an existing BAdi..i have also included this BAdi in Enhancement Area using the transaction oohap_basic.But when i go back to appraisal template and try to insert this BAdi in a column it doesnt reflect their..so please can anybody help me out with a solution..The BAdi is appearing in Enhancement area in oohap_basic and also in table T77HAP_FLT_EXI

    Hi
    Using tcode OOAM, go to the category to which your template belongs, and look in the Enhancements tab. The custom enhancement should be available in the available enhancements section. Move this to the selected enhancements section. Then you should be able to use it in the template.
    Hope this helps.
    Regards,
    Vikas Bhatia

  • Appraisal template download upload in excel

    Hi All
    We have the download upload functionality of appraisal template in PDF by offline layout setting in phap_catalog_pa. My query is can the upload and download of the template can be done in excel also. Our requirement is to download the appraisal template as configured in phap_catalog_pa in excel and then uploading back the same through portal. Please suggest if this can be done and how to proceed further.
    Thanks

    I have found a solution. FM HRHAP_DOC_BODY_ENHANCE
    In this example the program add two dynamic elements for qualification.
    REPORT  ZYS_APR_UPLOAD_DYN.
    DATA:  wa_prepare TYPE zys_upload,
            g_template_id           TYPE hap_template_id,
            g_header_defaulting     TYPE flag,
            gs_return               TYPE bal_s_msg,
            gs_menu                 TYPE hap_s_menu,           "for status
            gs_appraisal_id         TYPE hap_s_appraisal_id,
            gs_doc_processing       TYPE hap_s_doc_processing,
            gs_header_texts         TYPE hap_s_header_texts,
            gs_header_status        TYPE hap_s_header_status,
            gs_header_dates         TYPE hap_s_header_dates,
            gt_header_add_data      TYPE hap_t_header_add_data,
            gs_header_display       TYPE hap_s_header_display,
            gt_header_appraiser     TYPE hap_t_header_appraiser ,
            gt_header_appraisee     TYPE hap_t_header_appraisee ,
            gt_header_p_appraiser   TYPE hap_t_header_part_appraisers ,
            gt_header_others        TYPE hap_t_header_others,
            gt_buttons              TYPE hap_t_buttons,
            gt_body_columns         TYPE hap_t_body_columns,
            gs_body_columns         LIKE LINE of gt_body_columns,
            gt_body_elements        TYPE hap_t_body_elements,
            gs_body_elements        LIKE LINE of gt_body_elements,
            gt_body_element_descr   TYPE hap_t_body_element_descr,
            gt_body_element_buttons TYPE hap_t_body_element_buttons,
            gt_body_cells           TYPE hap_t_body_cells,
            gs_body_cells           like line of gt_body_cells,
            gt_body_cell_val_values TYPE hap_t_body_cell_val_values,
            gt_body_cell_val_ranges TYPE hap_t_body_cell_val_ranges,
            gt_body_cell_val_c_like TYPE hap_t_body_cell_val_c_like,
            gt_body_cell_val_descr  TYPE hap_t_body_cell_val_descr,
            gt_body_cell_notes      TYPE hap_t_body_cell_notes,
            ls_header_appraiser TYPE hap_s_header_appraiser,
            ls_header_appraisee TYPE hap_s_header_appraisee.
      DATA: COUNTER(5) type n VALUE '00003',
             lv_template_id    TYPE  objektid,
             date type sy-datum,
             lv_pernr TYPE pernr_d,
             s_return TYPE  bal_s_msg,
             lt_status_notes TYPE  hap_t_status_note,
             lv_error TYPE flag,
             ls_wd_return   TYPE bal_s_msg,
             ET_BODY_ELEMENTS_ADD  type  HAP_T_BODY_ELEMENTS_ADD,
             wa_BODY_ELEMENTS_ADD like line of ET_BODY_ELEMENTS_ADD.
    START-OF-SELECTION.
         gs_header_dates-ap_start_date     = '01.01.2014'.
         "endda
         gs_header_dates-ap_end_date      = '31.12.2014'.
         gs_header_dates-ap_date_set      = '31.12.2014'.
         "APPRAISER
         FREE gt_header_appraiser.
         ls_header_appraiser-plan_version = '01'.
         ls_header_appraiser-type         = 'P'.
         lv_pernr = '1000800'."wa_prepare-value.
         ls_header_appraiser-id = lv_pernr.
         APPEND ls_header_appraiser TO gt_header_appraiser .
         "APPRAISEE
         FREE gt_header_appraisee.
         ls_header_appraisee-plan_version = '01'.
         ls_header_appraisee-type         = 'P'.
         lv_pernr = '1000800'."wa_prepare-value.
         ls_header_appraisee-id = lv_pernr.
         APPEND ls_header_appraisee TO gt_header_appraisee .
    wa_BODY_ELEMENTS_ADD-NEW_ELEMENT_TYPE = 'Q'.
    wa_BODY_ELEMENTS_ADD-NEW_ELEMENT_ID = '50000392'.
    APPEND wa_BODY_ELEMENTS_ADD to et_BODY_ELEMENTS_ADD.
    wa_BODY_ELEMENTS_ADD-NEW_ELEMENT_ID = '50000399'.
    APPEND wa_BODY_ELEMENTS_ADD to et_BODY_ELEMENTS_ADD.
       CALL FUNCTION 'HRHAP_DOC_BODY_ENHANCE'
         EXPORTING
           row_iid                   = '0001'"wd_comp_controller->enhance_row_iid
           plan_version              = '01'
           s_appraisal_id            = gs_appraisal_id
           t_header_appraiser        = gt_header_appraiser
           t_header_appraisee        = gt_header_appraisee
           t_header_part_appraisers  = gt_header_p_appraiser
           t_header_others           = gt_header_others
           s_header_dates            = gs_header_dates
           s_header_status           = gs_header_status
           t_body_columns            = gt_body_columns
    *     FREE_ENHANCEMENT          = ' '
           trusted_call              = 'X'
           enhancement_type          = ' '
           t_body_elements_add       = et_body_elements_add
    *     T_BODY_ELEMENTS_STRUC_ADD =
         IMPORTING
           s_return                  = ls_wd_return
         CHANGING
           s_doc_processing          = gs_doc_processing
           t_body_elements           = gt_body_elements
           t_body_element_descr      = gt_body_element_descr
           t_body_element_buttons    = gt_body_element_buttons
           t_body_cells              = gt_body_cells
           t_body_cell_notes         = gt_body_cell_notes
           t_body_cell_val_values    = gt_body_cell_val_values
           t_body_cell_val_ranges    = gt_body_cell_val_ranges
           t_body_cell_val_c_like    = gt_body_cell_val_c_like
           t_body_cell_val_descr     = gt_body_cell_val_descr.
         "Saving document
         CALL FUNCTION 'HRHAP_DOC_UPDATE_BODY_AND_SAVE'
           EXPORTING
             plan_version             = '01'
           IMPORTING
             s_return                 = s_return
           CHANGING
             s_appraisal_id           = gs_appraisal_id
             s_doc_processing         = gs_doc_processing
             t_header_appraiser       = gt_header_appraiser[]
             t_header_appraisee       = gt_header_appraisee[]
             t_header_part_appraisers = gt_header_p_appraiser[]
             t_header_others          = gt_header_others
             s_header_texts           = gs_header_texts
             s_header_dates           = gs_header_dates
             s_header_status          = gs_header_status
             s_header_display         = gs_header_display
             t_body_columns           = gt_body_columns
             t_body_elements          = gt_body_elements
             t_body_cells             = gt_body_cells[]
             t_body_cell_notes        = gt_body_cell_notes
             t_status_notes           = lt_status_notes.
         IF s_return IS NOT INITIAL  .
           WRITE: / s_return-msgid , s_return-msgty ,s_return-msgno  ,s_return-msgv1,  s_return-msgv2, s_return-msgv3 .
         ENDIF.
         counter = counter + 1.

  • 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.

  • Customized Adobe interactive form as appraisal template

    Hi Experts,
    We want to use customized Interactive adobe forms as appraisal template for appraisee,same should be forwarded to appraiser to his MSS UWL.Can we do this?
    Also can we change the web layout from BSP to Webdynpro Abap?
    Please help me to solve this issue.
    Regards,
    Arun.

    Hi All,
    In web layout i am getting only 'STANDARD' option.
    In print layout i am getting standard pdf,instead of this i want to use custom adobe interactive form.How this can be done?
    Also the same adobe form i want to get in ESS and MSS.Is it possible?
    Please help me.
    Regards,
    Arun.
    Edited by: ARUN.NAREIN on Dec 1, 2011 11:04 AM

  • 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

  • Putting link on the appraisal template.

    hi ,
    I am working on appraisals.
    I have to put some link on the appraisal template which will take us to past appraisals/project history.
    any idea how to implement the requirement.
    Thanks,
    Adesh

    Hi Adesh,
    when i am executing the program after putting the code its giving error as "Class <htmlb:tree> (CL_HTMLB_TREE) was not found as BSP parent element
    I guess in the Layout or View in your BSP application somewhere you have defined TreeNode element without the Tree element.
    Somethign like:
    <htmlb:treeNode id          = "node12"
                                  text        = "Node12"
                                  onNodeClick = "node12"
                                  image       = "@03@"/>
    Should be like:
    <htmlb:tree id      = "myTree1"
                        title   = "Tree1"
                        tooltip = "Tooltip for myTree1"
                        toggle  = "X" >
    <htmlb:treeNode id          = "node12"
                                  text        = "Node12"
                                  onNodeClick = "node12"
                                  image       = "@03@"/>
    </htmlb:tree>
    Regards,
    Anubhav

  • Regarding appraisal templates whose appraisal documents already been made..

    hi experts,
                   i need to make some changes in the appraisal templates whose appraisal documents has already been made
    but when i go make changes in the system with the help of TC -OOAM the system giving me message that "changes no longer possible in the templates as appraisal documents already been made" ,what i want to know is there any alternative solution that without deleting appraisal documents i will be able to make changes in the appraisal templates.
    plz help me.

    no, you have to delete all the documents if you want to unrelease the template.
    You can take a copy of the first template or write a migration report, but that's all custom development.
    You have to be sure that the template is finished 100 procent before you start using it

  • How to use XDOXSLT in rtf template layout for etext template creation

    <DEFINE CONCATENATION>     BookDetails
    <BASE LEVEL>     Category
    <ELEMENT> Name || '/' || Price     
    <DELIMITER>      '/'
    <END DEFINE CONCATENATION>     BookDetails
    With EFTProcessor the above details are created in xsl file as follows
    <xsl:template name="CONCAT_BookDetails">
    *I need to declare one more variable here
    EG: <xsl:value-of select="xdoxslt:set_variable($mycount, count(.//Category))"/>
    --and use this variable for any dyanamic process inside this template. How to achieve this in rtf template by declaring a xdoxslt function. How to declare this
    syntax in rtf layout so that it creates a varibale in xsl template using the EFTProcessor. Please help me out. The main point here is to include xslt functions in
    rtf template layout for etext template creation.*
    <xsl:for-each select=".//Category">
    <xsl:call-template name="CONCAT_BookDetails_V"/>
    </xsl:for-each>
    </xsl:template>

    in the next time use BI Publisher forum - BI Publisher
    <?format-number(ENTERED_CR,'##,##0.00')?>it's works for me
    output:
    444    ->  444.00
    444.55 ->  444.55

  • Print Module templates layouts do not update on the fly

    Print layouts do not update on the fly when attempting to choose between various Print Module>Template Browser> Lightroom or User templates. This occurs in all three Layout Styles. The very first layout chosen in Single Image/Contact Sheet, Picture Package, or Custom Package is the permanent 'default' and cannot be changed. The Preview will show as expected however any image stays stuck in the very first layout I chose after installing LR4 beta.
    For example, I first chose Template Browser>Lightroom Templates>Maximum Size, and Layout Style>Single Image/Contact Sheet. Clicking through any other Templates (Lightroom or User defined) will alter the preview but not the layout display in the Print window. Same problem in either of the other Layout styles. I have been trying for days to rectify this, but it seems somehow more difficult than LR3. and not what I expect.
    As a comparison, using the same steps in LR3 works perfectly as all print template/layouts can be changed on the fly as expected. I have no problems generating different layouts in LR3 and have been using LR print module since version 1 without this issue.
    Is this a bug or are there any extra steps or workarounds I have not discovered? Any other testers seen this?

    Update with more info. What am I doing wrong, if anything?
    Print layouts do not update on the fly when attempting to choose between various Print Module>Template Browser> Lightroom or User templates. This is not a hang since the layouts do not change after the initial choice no matter how much time elapsed.
    iMac OS 10.6.8. 8GB RAM.Processor Intel Core 2 Duo. NVIDIA GeForce 8800 GS.
    The steps as follows:
    1) Lightroom 3.6 & LR4Beta exist side by side.
    2) LR4 Beta> Print Module;
    3) From filmstrip choose image;
    4) Template Browser> Lightroom4Beta Templates>Maximum Size;
    5) Preview displays as expected;
    6) Layout Styles>Single Image/Contact Sheets
    7) Template Browser> Lightroom4Beta Templates>click through any other templates (Lightroom or User defined);
    8) Image layout in main window does not update;
    9) Previews update;
    10) Layout Style>Picture Package;
    11) Template Browser>Maximum size is then automatically shown, however the template in the main window is actually (1) 7x5, (2) 2.5x3.5;
    12) Any further attempts to change the layouts regardless of Style Layout choices are not successful.
    13) Close LR4Beta>re-open LR4Beta;
    14) Repeat test;
    15) Print Module layouts do not update on the fly as expected;
    16) Close LR4Beta and all applications;
    17) Reboot iMac.
    18) Open LR4Beta only;
    19) LR4Beta>Print Module>Template Browser >Lightroom Templates>Maximum Size;
    20) Image displays in main layout window with Template and Preview display as expected;
    21) Choose different image>Template Browser>Lightroom Templates>Maximum Size;
    22) Click through templates, layouts DO NOT update in main window although previews do automatically update.
    23) CONCLUSION - In Lightroom 4 Beta>Print Module>Template Browser, image layouts do not change after initial choice as expected.
    I posted this on Photoshop.com as a problem.

  • Call BI Publisher Report in APEX, based on R.T.F Template Layout.

    Hi to all respected members of this forum.
    Since 18th May (Saturday), I am trying to connect BI Publisher Reports with Oracle Application Express 4.2.2.
    My APEX Version = APEX 4.2.2
    Oracle BI Publisher Enterprise Edition (Trial) = 11.1.1.6.0
    Oracle BI Publisher Desktop 32 Bit = 11.117.0.79
    For this purpose what I did?
    Firstly I downloaded Oracle BI Publisher Enterprise Edition 11.7 and when I started Installation I came to know that "R.C.U (Repository Creation Utility)" is required during installation and I don't have that so, left this idea.
    Than I downloaded Oracle BI Publisher Enterprise Edition (Trial) from www.oracle.com and BI Publisher Desktop Edition for Templates because there is no facility in BI Publisher Trial Edition to design Report Templates. I have installed both successfully and created a report as per my requirement.
    Now, I want to call that report in Oracle APEX but I am unable to do that.
    I followed http://dgielis.blogspot.de/2007/12/call-bi-publisher-report-from-apex.html but the link which is shown in picture no: 03, is not available, so this didn't help me.
    Then, I followed Oracle BI Publisher Blog https://blogs.oracle.com/xmlpublisher/entry/apex_users_why_not_integrate_w which discuss to call BI Publisher Report in APEX based on "Generic Report Layout". This done successfully but still I am unable to call BI Publisher Report .
    Then I found this type of script
    http://localhost/xmlpserver/Guest/Reporting_Channel.xdo&id=FGFC&password=****&xt=Reporting_Channel&xf=pdf
    to call BI Publisher Report in APEX but this also failed.
    Please help me to understand that how to call "BI Publisher Report in APEX, based on R.T.F Template Layout.
    Thanks in Advance.
    *Regards:*
    *Muhammad Uzair Awan*
    *ORACLE APEX Developer*
    PAKISTAN.
    Edited by: uzairmalik on May 20, 2013 1:32 PM

    Are you trying to have multiple sql queries and have multiple sections displaying different data sets ? Or with one single query but display it in different ways in a single report ?
    You can create one single query as Report Query in APEX and associate it with a BIP report layout. So you can achieve a Dashboard layout with the report query/layout.

  • Business event group in an appraisal template catalog

    HI all,
    Is there any way to include the catalog of training in an appraisal template catalog? ie, a column where you can select a business event group (object L).
    thanks, regards

    Hello Sergio,
    I guess your post is in the wrong forum - this forum is about Supply Chain Event Management.
    Regards
    Berthold

  • Training and Event Management - Appraisal Template

    I have created an appraisal template  but when I am trying to update score, it is neither creating a new APPRAISAL object nor it is getting saved. Please help me rectifying this issue.

    Hi,
    I donu2019t understand what you are trying ask . kindly let me know your scenario then Iu2019ll solve your problem if I could.
    Prasath

  • OSA - ERROR while downloading \ uploading appraisal template

    Hello!
    May be some of you came across the same problem: when appraisal template using object Q as reference object for VB or VC is being uploading into the other client it is copied with error. The relationship 607 between objects is not ceated in the other client, so the object is not correct. Is it a standard solution
    Thanks Ekaterina

    Hello, once more!
    I am inclined to think that lack of relationship  607 between objects VB and Q while uploading appraisal template into other client is due to a programm error but we failed to find relativa SAP Note, may be someone came across the problem?

Maybe you are looking for