Restricting appraisee from viewing Appraisal Document

Hi All,
We have an appraisal model where the appraisal document flows as below with respective doc. statuses
HR Admin (In preparation)  --> Appraisee ( In Planning) --> Appraiser (In Process) --> Approver (In process/sent for approval)
When the 'Approver' approves, the document goes to 'Complete' status..
flow is working fine but the document is available to appraisee in change mode till the end (i.e. till it moves to complete status).
We have a requirement that it should not be available to the appraisee (not even in display mode) once it moves to In-Process status (i.e when it goes to Appraiser)
Please advice how to restrict it..
Note: Appraisal process is taking place in portal (ESS/MSS)
Thank you in advance
Regards
Syed

Hi,
Go to SPRO - Personnel Management - Personnel Development - Appraisal Systems - Edit Appraisals Catalog
Select your template and go to column- column access
Check there Phase dependent access for owner
also check for column access in different phases for owners and others.  There you have option to hide also in different phases.
Check with this.  If this resolves your problem then award with points.
All the best,
Santosh

Similar Messages

  • SM58 - How to restrict users from viewing all the idocs?

    Howdy,
    The users want to be able to use SM58 to view any idocs that have failed. Unfortunately they currently can access the IDOCS of all countries, in addition to their own country. Does anyone know how we could restrict them?
    Or if there another transaction that we could ask them to use?
    Many Thanks!

    Hi,
      You can restrict by the Transactional RFC Destination which should be different.
    regards
    Aveek

  • Restrict user to view uploaded document in solar02

    Dear All,
    I have uploaded some document in Solution Manager vi solar02 transaction.
    I want that only with my sapid documnet should view. With another login id document should not view.
    Is it possible? please help.

    Hey Tarun,
    here is a simple solution for you but, that requires some lines of ABAP but its still very easy and it works (tested on my Solman).
    Create an enhancement for function module SOLAR_BUSINESS_CONTENT_FCODE at the beginning (1st line)
    Insert following lines
    if fcode = 'SA_DOCDISPLAY' and sy-uname ne 'I060172'.          "      Here put YOUR User ID
      message 'You re not authorized to display this document' type 'E'.
    endif.
    Keep us updated !!
    Hope this helps,
    Regards
    Khalil

  • Restrict administrator from viewing "out of the box" reports

    I want to create an administrator who will be restricted to viewing a single report (a new dashboard report). Is there anyway to "turn off" the administrators ability to see all of the out-of-the-box reports that are created / owned by sysman? For example, logging into GC as the administrator and browsing to : *[http://{oms:port}/em/console/reports/admin|http://oms:port/em/console/reports/admin]* displays all of the out-of-the-box report definitions. I only want this administrator to see the one custom report, (a dashboard) that I've created for him.
    Using GC 10.2.0.4.
    thanks for your replies

    I don't think so.. I've never seem this type of ability

  • How to restrict users from printing documents and exporting to local file

    Hi SAP gurus,
    I have two questions.
    1. How can I restrict users from printing a document? i.e. billdoc? I would like to know if I could block it though authorization. If yes, what auth obj to use?
    2. How to restrict certain users from exporting to local file? the System> List>Save-->Local File. I have tried restricting it using auth object S_GUI but it seems it is only applicable to older versions of SAP. im on ecc6.
    Thank you in advance.

    Hi,
    Check this:
    Create your own gui status and attach it to the list in the event START-OF-SELECTION.
    In the menu painter extra -> adjust template.
    Make it a list status and you will see all the standard list options appear including list->download
    Deactivate the ones you don't want. 
    If you just want to prevent users from downloading the list you can achieve this with authorization object S_GUI, activity 61. Menu option will still be there though.
    Please note that if you remove authorisation for S_GUI activity 61 then all downloads will not be possible. 
    If you just want to disable downloads only for a particular report, you can try this test program:
    Code:
    REPORT ztest. 
      DATA: PROGNAME LIKE SY-CPROG value 'Z_CHECK_AUTH', 
            FORMNAME LIKE SY-XFORM value 'F_CHECK_AUTH'.
    START-OF-SELECTION. 
        CALL FUNCTION 'SET_DOWNLOAD_AUTHORITY' 
             EXPORTING 
                  FORM    = FORMNAME 
                  PROG    = PROGNAME 
             EXCEPTIONS 
                  OTHERS  = 1.
      WRITE: / 'TEST'.
    You also need this:
    Code:
    PROGRAM z_check_auth.
    FORM f_check_auth USING pe_result TYPE i. 
      pe_result = 5. 
    ENDFORM.
    Also have a look at the exit SGRPDL00.
    Hope this helps you.
    Rgds,
    Raghu

  • Prevent user from view line item details in KSB1 report

    Hi,
    how to restricting user from view line item details by double-click on it or highlight an item click on Document?
    Regards,
    Kelvin

    Hi,
    This issue got resolved.
    SAP suggested to execute the program "FAGL_CORR_0001" for company code wise.
    In ECC 5.00 from support pack 10 onwards two new fields has been added to table FAGLFLEXA.  (earlier we are on support pack 9, recently we applied the latest support pack)
    If we can execute the above program FAGL_CORR_0001, the two new fields will filled with relevant data and then we can able to use drill down option.
    This is for your information.
    Message was edited by:
            prasad naga

  • How to restrict employees from accessing managers data using custom security profile

    Hi,
    I am using custom security profile for restricting the employees from accessing supervisors details(PG.SEGMENT2=4). I have written the custom code as below :
    Responsibility :US Super HRMS Manager
    ASSIGNMENT.PERSON_ID
    IN
    (SELECT PAF.PERSON_ID FROM PER_ALL_PEOPLE_F PAF,
    PER_ALL_ASSIGNMENTS_F PF,
    PAY_PEOPLE_GROUPS PG,
    PER_PERSON_TYPE_USAGES_F PPU,
    FND_USER FNU
    WHERE PAF.PERSON_ID=PF.PERSON_ID
    AND :EFFECTIVE_DATE BETWEEN PAF.EFFECTIVE_START_DATE
    AND PAF.EFFECTIVE_END_DATE
    AND PF.PEOPLE_GROUP_ID=PG.PEOPLE_GROUP_ID
    AND :EFFECTIVE_DATE BETWEEN PF.EFFECTIVE_START_DATE AND PF.EFFECTIVE_END_DATE
    AND PPU.PERSON_ID=PAF.PERSON_ID
    AND PPU.PERSON_ID=PF.PERSON_ID
    AND :EFFECTIVE_DATE BETWEEN PPU.EFFECTIVE_START_daTE AND PPU.EFFECTIVE_END_DATE
    AND PAF.PERSON_ID=FNU.EMPLOYEE_ID
    AND PAF.PERSON_TYPE_ID =2
    AND PPU.PERSON_TYPE_ID
    IN(2,62)
    and PAF.person_id = FND_PROFILE.value('user_id')
    AND PG.SEGMENT2=8)
    and using "restrict the people visible to each other using this profile".
    I have assigned the security profile to HR user responsibility
    But when I query the supervisor name in HR User responsibility , it is not restricting me from viewing supervisor details.
    When I query for first time, its restricting me to view others details, but when I close that click on torch button and try searching, its allowing me to access manages details.
    Can any one please let me know what setups need to be done for restricting employees from viewing supervisors data.
    I have gone through the document "Understanding and Using HRMS Security in Oracle HRMS" but didn't got any idea.
    Please suggest.
    Thanks & Regards,
    Anusha.

    Hi All ,
    i solved the problem by using event 01 of header view and using the table "Extract" .
    Regards,
    Neha

  • Access to appraisal document via ESS is restricted by status

    Our requirement is for the appraisee to record their objectives (via ESS) and then select a 'To Manager' pushbutton to send a workflow to the manager requesting them to approve the objectives. The problem is that once the workflow has gone to the manager the appraisee cannot access the appraisal document until the manager has approved the objectives and the appraisal status has changed from 'In Planning' to 'In Process'. How can the appraiser view the appraisal document (via ESS) whilst it has the status ‘In Planning’?
    We also have a similar issue later in the process. When the appraisee selects the <Close Part Appraisal> pushbutton to signify that they have completed their self appraisal the appraisal document has status ‘In Process’. The appraisee cannot access the appraisal (via ESS) until the appraiser also completes their part appraisal and sets the status to ‘Completed’. Is there a setting to allow the appraisee to have read access to the document during this part of the process?
    Thanks and regards,
    Janet

    Hi again Maurice.
    Once the appraisal status has been set to 'Completed' the appraisee needs to Accept or Reject the appraisal but the appraisal now appears as display only (both in ESS and ECC). We are using BSP documents_received.htm for ESS
    The 'Accept' and 'Reject' pushbuttons are not active in ESS
    The 'Accept' and 'Reject' pushbuttons are active in ECC and update the appraisal status as required. However if the appraisal is rejected and the status is set back to 'In Process' the appraisal document is still display only.
    Any ideas?

  • Unable to view the appraisal document in PMS

    Hi,
    We have upgraded our system from 7.01 to 7.4 and ECC from EHP4 to EHP7.
    After upgrade we are not able to open the appraisal document from
    Appraisal Inbox (Performance management) page/Employee & Reviewer Inbox
    page but getting blank screen.
    We had refer the note 1600380, according to the note we had checked the objects in all pages mentioned.
    But then also unable to view the appraisal document.
    Refer the attachment.
    Kindly guide us to resolve the issue.
    Regards-
    Poonam

    Hi ,
    Before upgrade it was working fine, There is no change in the authorisation in the backend.
    Kindly specify what kind of authorisation are required, so that we can check at our level.
    No error messages and logs are generated related to this.
    Regards-
    Poonam

  • Excluding appraisee from the planning phase appraisal process

    Hi
    Our client wants to exclude the employee (appraisee) from the planning phase in the case of displinary appraisal process.
    So is it possible to configure a appraisal model in a way where the appraisee can only see the document when status has been set to 'In process' - this way only the appraiser can see(and maintain) the document when it is being prepared and planned.
    I have looked into the anonymous settings but it does not cover our requirements.
    Do you have any hint for us?
    Thank you in advance.
    Best regards
    Hanne

    Hi Sarah
    Thank you for input.
    I have looked into the hiding of colomns - but we want to make the planning of the whole document a secret to the appraisee. So it is only when in process phase, that the appraisee should be able to see that the manager has created the appraisal form.
    Do you see a solution for this case?
    Best regards
    Hanne

  • How to restrict some users from viewing a screen of standard transaction

    Hi All,
    I need to restrict certain user ids from viewing the 'Payment Transactions' screen for the below mentioned transactions.
    FK01, FK02, FK03, MK01, MK02, MK03, XK01, XK02, XK03
    The Basis consultant has tried to configure it. However its not working. So need to find other solution.
    For all transactions other than FK01, MK01, XK01 (create vendor), the BAdi GOS_SRV_SELECT is called before the payment transaction screen appears. But for transactions FK01, MK01and XK0, no such BAdi is there.
    Also I'm not able to figure out how to restrict that particular screen using Badi GOS_SRV_SELECT. What will be the service name for this?
    Please help !!!
    Thanks in advance,
    Radhika

    hi,
    u can do this using user exits.
    identify the appropriate exit for ur transaction and thn put condition like
    if username = ...
    loop at screen.
    hide..
    endloop.
    i was just trying to give u some hint .make it to ur best.
    reward if hlpful.

  • Unable to view pdf documents opened from a website

    I'm not able to view pdf documents, e.g. bank statements or tax returns, when opened from a website. If the site offers the option to download, I can do that and have no problem opening the downloaded file and viewing in pdf. The problem is when the pdf file opens in another window, or in a window within a window - then I just get a black screen where the pdf document should be. Has anyone encountered this and fixed it? I've already followed any help I can find online, like making sure pop-up blocker is turned off, and that java, java script are enabled, and downloading most recent adobe acrobat. So far, nothing has worked.

    To Apple Discussions!
    Check your browser(s) preferences to see if you have PDF files properly mapped.
    *For FireFox v3.0:*
    FF>Preferences>Applications
    I have Always Ask to open word/text documents.
    Preview is the app I use to view PDF documents.
    *Another suggesion:*
    Strongly recommend that you update your OS to the latest Tiger version - 10.4.11. Your system info confirms you are still using the basic OS 10.4.

  • View Self Appraisal Documents

    Dear Experts,
    Employee is not able to view the Self Appraisal Documents in ESS where as he is able to view the same in R/3.
    What should I do to correct it.
    Regards,
    Kamal rawal

    hi
    i suppose that you are having the same/identical  id on r/3 and on the portal.

  • How to view word document from report?

    We have one table with blob datatype and manage to save some document by creating form on this talbe. Through form we can see the document as default functionality of portal forms. But now we want to allow user to view this document from report as well.
    We tried one Solution on WWDOC_DOCUMENT and its working for WWDOC_DOCUMENT table but we want to display from our user table's word document. ( Any relation between user table and WWDOC_DOCUMENT table of PORTAL30).
    Thanks

    Found way around but facing another problem. Its worked fine for first time (means when i inseted documents and created report on same table).
    But subsequent session it giving HTTP 404 file not found error.
    Any clue?

  • Restrict HR admin from viewing another HR admins infotypes

    Hi
    How can I restrict one HR admin from viewing the basic pay of his college? Should I implement an user exit so everytime a pa30 is executed, i remove all pernrs from my org unit? Please help...
    Thanks

    Hi there,
    I saw you have closed this post, but I thought I'd see if I could add to it anyway.
    One I've seen implemented is to have a user exit that, every time a transaction that checks HR info is run, checks the value of field PA0001-SACHA.  If the field is populated, then the user exit is called and depending on the values, will or will not show HR related information. e.g.
    HR manager has H1, HR team have H2, regular employee has blank.
    If the HR team goes to look at an employee, it checks to see if the employee has anything populated.  If there's nothing, it goes ahead.  If the field has something in it (H1 or H2) then the check looks to see what the HR team member has.  If that member has H2, it will fail.
    then...
    If the HR manager goes to look at an employee the checks pass for the employee, if it looks at another HR team member, then there is a check to see if the field is populated.  If the field is, it checks what the HR manager has against their personnel record (H2).  users with H2 can see the values.
    I've also read something once where they solved this using structural authorisations and wrote a structural auth function module that, after running and building the structural authorisation listings, it completes a removal of specific (HR team related) objects from the lists via the customised FM.
    http://sap.ittoolbox.com/groups/technical-functional/sap-security/view-the-whole-org-but-not-hr-912916 is where I read about this.
    I know you can also use context sensitive HR auths depending on your SAP version.
    Good luck,
    Cheers,
    Dianne

Maybe you are looking for