OSA: ESS not visualize all appraisals

Hello All,
One of my clients requirements is that appraisees must be able to visualize/modify some of the appraisal templates received but not all.
I have linked the BSP HAP_DOCUMENT to the ESS and stated the start page as: document_received_open2 - Unconcluded Appraisals
document_received - Concluded Appraisals.
Is there any way to limit which templates are shown through the BSP?
I also thought of adding a custom made implementation that would allow me to limit template visualization.
Are there any other options??
Thank you in advance.
Alex

Thank you Maurice,
Your answer was helpful but did not solve my problem entirely.
If I create two authorization roles: A: can visualize template X (for managers), B: Can not visualize template X. That would imply that managers would be able to visualize the appraisals received using template X (which I don't want).
I don't have much experience with authorizations but for me the solution would be to show all appraisals of template X except where one is the appraisee and I can't seem to find the means to create an identification profile that would allow me to do this.
For example: User uses appsearch to search for all appraisals of template X. He would see those he created but not the ones he received.

Similar Messages

  • Account Dimension not showing all members in the cube in Analysis Services

    Hi,        
             In SAP - BPC 5.1 after processing account dimension all the members are created under account dimension in analysis services but the same cannot be found in the data cube. Hence the reports generated through SAP - BPC is not showing all the members.
             The issue looks very strange as we can see the members getting created but the same is not getting populated in the cubes. I am not able to visualize what exacly the issue is? Is it with the application or with the analysis services?
    Thanks
    Sharath

    Your sixth sense is correct, there is definitely support in MSAS and BPC 5.1 for multiple hierarchies in the account dimension.
    I'm also referring to parentH1 and parentH2, but perhaps we're still speaking of different things.
    In the past, I faced a very similar problem as you, and the root cause was because I had one member, let's call it FancyParent, which, in H1, had children Child1 and Child2.
    But in H2 it had children Child1, Child2 and Child3. I forget now if that was how I wanted the setup to be, or if it was a mistake on my part, but either way, MSAS doesn't allow this. The admin consol didn't complain when processing the dimension -- this was in Outlooksoft 5.0; perhaps validation has improved now.
    But the cube was completely unworkable. Certain things were calculating correctly, but everything in the account dimension in the area around FancyParent (above and below it, in both hierarchies) was quite unpredictable.
    By disabling first one, and then the other, of the two hierarchies, and disabling blocks of accounts, I was eventually able to pinpoint the problem. But it took days to figure out what was the problem. (The account dimension had 2500 members and 4 hierarchies, and it was not a pretty sight.)
    A parent must have the same definition of children in all hierarchies. It can't, as another example, have children in H1, and be a base member in H2. Each member can have different parents in the two hierarchies, but must always have the same children in both.
    To work around this problem, I had to create two separate accounts NetIncomeH1 and NetIncomeH2 (and PretaxIncomeH1, PretaxIncomH2, etc. all the way down to the point where they branched off), to get the two separate aggregations of the P&L in the two hierarchies. Once I did that, it made sense to me why, but I also swore off on frivolous extra hierarchies ever again.

  • Who's Who : does not at all show of "Placeholder" of Photo

    Dear Experts
    We have SAP_ESS with 600 SP16    on   SAP NW 7.00 SP20  Java System (inlcudes Application Server Java + Enterprise Portal + Enterprise Portal Core Components)
    When we browse thry SAP Standard " Who's Who" - It just display the employee information ina single Line as XL sheet line item and it does not at all show atleast " placeholder" for photo.
    We configured and uploaded all our photoes in the backend ABAP System as per the below link.
    https://wiki.sdn.sap.com/wiki/display/ERPHCM/EmployeePhotoUpload
    We understand -  SAP Standard "ESS"  in application  -   Who's Who - should bring the Employee photo & information from Backend ABAP System.
    Can any one help us to know - why placeholder for photo is missing in "who's who" of ESS applicaiton.
    Thanks U
    Rgds
    PR

    DEEPAK....THANK U VERYMUCH..
    THE BACKEND ABAP SYSTEMS WAS A SYSTEM COPY OF PRODUCTION
    AND THE SYSTEMS WAS CONTAINING OLD URLS in TABLE .
    Changed URL in Table ""   HTTPURLLOC ""     directly thru SE16
    and issue got fixed .
    OSS REPLIED WITH ABOVE SOLUTION & WITH SOME NOTES
    0001033071   URL generation using HTTPURLLOC entries
    0000685521   Logon data for /sap/bc/contentserver service
    0000712330   Accessing server content with HTTPS
    0001289938   HTTPS Url does not take into account the port in HTTPURLLOC
    THANKS  TO  ALL FOR GETTING THE SOLUTION OUT & EXTREEME INTERACTIVE MESSAGE
    THANK YOU ALL
    RGDS
    PR

  • HT201272 Is there an easy to visualize all the content I have downloaded on my Apple ID?

    I need to to change the country of my Apple ID. The problem is that if I do so all the content that I have downloaded won't show up anymore on the "purchased tab", which is very annoying, so I was wondering if there is a quick way to visualize all the content that I have already payed for and saved it on a file, so every time I want to download a paid app I can go and check in this list if I have already payed for it.
    I understand that on iTunes I can see all the apps I've downloaded but it would be just impossible to get all this data from there manually(possible but it would take a LOT of time).
    By the way... why the purchased tab clears out if we change the country linked to the AppStore? I understand that for most people this is not an issue since most people will not move countries. But I don't see any technical difficulties for allowing such a thing.

    Hi igitlo,
    The article below will show you how to review your account:
    iTunes Store & Mac App Store: Seeing your purchase history and order numbers
    http://support.apple.com/kb/ht2727
    Cheers,
    Judy

  • EhP5 WDA ESS: Not able to marke fields as mandatory

    Hello Community,
    currently I am customizing WDA ESS Scenarios on EhP5. I added some new fields in the method IF_FPM_GUIBB_FORM~GET_DEFINITION of the feeder class for the scenario.
    The method has also an EXPORTING Parameter for the field descriptions (ET_FIELD_DESCRIPTION).
    The table line is structure of FPMGB_T_FORMFIELD_DESCR and I did the following to mark some fields as 'mandatory':
    READ TABLE et_field_description WITH KEY name = 'STRAS' ASSIGNING <fs_wa_mand_field>.
      <fs_wa_mand_field>-MANDATORY = abap_true.
      READ TABLE et_field_description WITH KEY name = 'PSTLZ' ASSIGNING <fs_wa_mand_field>.
      <fs_wa_mand_field>-MANDATORY = abap_true.
      READ TABLE et_field_description WITH KEY name = 'ORT01' ASSIGNING <fs_wa_mand_field>.
      <fs_wa_mand_field>-MANDATORY = abap_true.
      READ TABLE et_field_description WITH KEY name = 'ZZ_CITY_CODE' ASSIGNING <fs_wa_mand_field>.
      <fs_wa_mand_field>-MANDATORY = abap_true.
      READ TABLE et_field_description WITH KEY name = 'MELDEZETTEL' ASSIGNING <fs_wa_mand_field>.
      <fs_wa_mand_field>-MANDATORY = abap_true.
    Now I expect, that the fields on the ESS scenario would have a red asterisk. But I am also able to save the data with not entering all neccessary data.
    What I have to do, to mark the fields as mandatory?
    Thank you and best regards, Christian

    Hello community,
    I've found the problem.
    So in method IF_FPM_GUIBB_FORM~GET_DATA the table CT_FIELD_USAGE was overwritten. At the top of the method this table had the information about all mandatory field. But during the processing the table was overwritten and the information which fields are mandatory, as well.
    So if you define the mandatoy fields at the bottom of the method you will get the red asterisk.
    Here the code snippet:
    FIELD-SYMBOLS <fs_wa_mand_field> TYPE FPMGB_S_FIELDUSAGE.
    *** Define maddatory fields
      READ TABLE CT_FIELD_USAGE WITH KEY name = 'STRAS' ASSIGNING <fs_wa_mand_field>.
      <fs_wa_mand_field>-MANDATORY = abap_true.
      READ TABLE CT_FIELD_USAGE WITH KEY name = 'PSTLZ' ASSIGNING <fs_wa_mand_field>.
      <fs_wa_mand_field>-MANDATORY = abap_true.
      READ TABLE CT_FIELD_USAGE WITH KEY name = 'ORT01' ASSIGNING <fs_wa_mand_field>.
      <fs_wa_mand_field>-MANDATORY = abap_true.
      READ TABLE CT_FIELD_USAGE WITH KEY name = 'ZZ_CITY_CODE' ASSIGNING <fs_wa_mand_field>.
      <fs_wa_mand_field>-MANDATORY = abap_true.
      READ TABLE CT_FIELD_USAGE WITH KEY name = 'MELDEZETTEL' ASSIGNING <fs_wa_mand_field>.
      <fs_wa_mand_field>-MANDATORY = abap_true.
    Thank you and best regards, Christian

  • I have gmail and hotmail account on my macbook. In gmail I can visualize all the mailboxes but in hotmail i only can see the inbox ¿how can I visualize the rest of the mailboxes? thanks

    I have gmail and hotmail account on my macbook.
    In gmail I can visualize all the mailboxes but in hotmail i only can see the inbox ¿how can I visualize the rest of the mailboxes?
    I have the same problem with my ipad; the solution would be the same?
    thanks

    Hello Sophie59
    You should be able to see two different tabs when setting up the email if you go to Other > Add Mail Account. Once you enter in the email address and password, you should be at the next screen to provide more details about the email as far as incoming and outgoing servers and at the top there will be a blue section to add it in as a POP or IMAP email account. Check out the article below for further troubleshooting and emails setup options.
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/ts3899
    iOS: Adding an email account
    http://support.apple.com/kb/ht4810
    Regards,
    -Norm G.

  • How can I change the background of a running webpage on my own. Example Facebook I want to change its backround color from white to black just in my view not for all

    How can I change the background of a running webpage on my own. Example Facebook I want to change its background color from white to black just in my view, not for all. Cause I really hate some site with white background because as I read for an hour it aches my eyes but not on those with darker background color.

    You can use the NoSquint extension to set font sizes (text/page zoom) and text colors on web pages.
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

  • Can not see all the clips in large Icon view in my bin

    I arranged my clips in a bin in large Icon view but i can not see all the clips in the bin while in that mode. I see the clips when in list mode or when i drag them out of the bin into the main bin. As soon I drag them back in large icon view bin they do not show up, when going back in list view they are there.
    Any idea
    Also my daughter accidently pulled the electrical plug, which turned my external hard drive off. So the media was off line. I hit reconnect the clip but the clip does not show as connected in the bin it keeps the Media offline icon but putting the clip in the viewer or time line it plays it. So the clip is reconnected
    hope anybody can help with those two issues thanks

    Nick
    thanks for your message it helped to show the clips. Here how I solved it. I put the clips i could not see in large Icon view, to the Project folder. Even in the project folder I was only seeing the clips with Thumbnail in list view. When i hit large Icon view the clips disappeared, and they could not have been lower down as i only have about 5 folders in the project. I then clicked arrange the clip by name and they showed up again. Like that i dragged the clip back in to its bin and it showed up. The reason for going back and forth I arranged the clips manually in the bin before and when hitting arrange by name it spread them to far apart and put the clips not in a sequence I liked.
    for the second part I followed Neil's suggestion it worked.

  • Can not view all the thumbnails in version 9 adobe standard

    Hello,
    I recently installed adobe standard 9 running parallel with adobe standard 5.
    My end user is claiming of the view setting for patient data. She can not scroll all the way to the bottom
    as she could in adobe 5. She can see all the thumbnails minus the last row. I have changed the prefereces to show the same
    as adobe 5. However I can not get the correct settting to make it right for her.
    Any adivse or trouble shoot steps would be appreciated. Adobe said to update the product, I have done that last night.

    How do I do that?
    Date: Tue, 14 Dec 2010 10:10:01 -0700
    From: [email protected]
    To: [email address deleted by host]
    Subject: Acrobat Windows Can not view all the thumbnails in version 9 adobe standard
    Change the size of the thumbnails, change the size of the thumbnails window, or upgrade Acrobat X.
    >

  • Can not use all the tools in my drawing markups any ideas on getting them to work?

    Can not use all the tools in my drawing markups any ideas on getting them to work?

    Hi tonys60181,
    Could you please let me know what version of Adobe Acrobat are you using.
    What all drawing tools are you unable to access?
    Is this issue specific to one PDF file or all?
    What exactly happens when you try to use any drawing markup?
    Please let me know.
    Regards,
    Anubha

  • Using tab groups but Firefox 28.0 crashes and even can not save all tabs in archive recently

    Hi. I installed tab groups addon on my firefox 28.0 (firefox portable version) and each group has its tabs. of course. Problem is that Firefox crashes when i work on a group with the tabs and even can not save all tabs in archive as MAFF recently too. When i try to save all tabs in archive as... i choose the name and hit save and wait but after some time this crashes too. Last time i saved all my tabs and groups as MAFF or other file was end of april and since then i can not save them anymore because of the crashing.
    I read on the help site to delete Firefox then reinstall ect. to fix problems but I DO NOT want to erase my groups with their tabs as i chose this solution working with group tabs as it would be to hard on my cpu when i use for each group a different browser for example.
    Please help me fix this problem with the crashes but without loosing my groups and its tabs as they are all important and do not wish to erase them as i use them all.
    Thanks and hope for a soon reply :)

    Can you give me your crash reports?
    #Enter ''about:crashes'' in the Firefox address bar and press Enter. A Submitted Crash Reports list will appear, similar to the one shown below.
    #Copy the '''5''' most recent Report IDs that start with '''bp-''' and paste them into your response here.

  • I can not see all "Divisions" in BP Rel.--Partner Function Assignment

    Hi,
    When I edit "Partner Function Assignment" in BP reliationship such like BUR011("Employee Responsible"),
    I can not see all "Divisions" in list which I can see in configuration via SPRO-->Customer Relationship Management->Master Data->Orgnizational Management->Division Setting->Define Divisions.
    E.g., in configuration, I can see 7 records of divisions from "001" to "007", but in "Partner Function Assignment" of BP relationship, I can only see "002" to "004".
    Do you know why? Thanks a lot!
    Best regards,
    Long

    hi
    that should not be happening,if they are visible in one client then should be there in another too
    do one things try run  this
    hrbc1_atributes_buffer_update
    it will refresh the buffers of your org structure and then you may be able to add this
    also check the check box where it is mentioned that"object determination should be permitted"
    remember it will run only for once after you run this the check box will be unchecked again
    i guess it may solve your probs
    also try to structure your org structure index
    use t code
    crmd_index_om
    and withtin the object type give O
    and execute
    best regards
    ashish

  • Why the 2LIS_08TRTK extractor can not get  all data

    Hello, BW Gurus.
    Why the 2LIS_08TRTK and 2LIS_08TRTLP extractors can not get all data. I had used the RSA3 and get 10 registers, when a check at the VTTK table I had 20 registers, I didnt use filters at RSA3, could you help to know what happen o correct it.

    Is it because
    <i>
    Shipment documents and their dependent objects (shipment stages as well as shipment items [deliveries in the shipment]) are only extracted into BW when the Shipment completion status has been set.
    This is necessary because the numeric values that result from the delivery documents are only established at the time. If the data were already stored earlier in BW, the shipment data would not be updated if the delivery notes were changed in BW.
    </i>
    - from oss note 573470.

  • 2lis_11_VAITM not inserting all data in ODS

    Hello Gurus.
    I'm using extractor 2lis_11_VAITM, when I test the extractor in RSA3, it is bringing me all registers of table VBAP, but when I load this extractor into an ODS in BW, It is not inserting all registers into the cube, some "return orders" are missing, how can i solved this problem ????   I'm using in ODS key Doc number and position.
    THANKS IN ADVANCED.

    Hi Sudheer, ther is no selections during data load, and also ther isn't any routine(either in transfer or update rules).  It's supposed that all registers have to be loaded to the ODS no ?? because i'm using key Doc number and positions, so I want all documents with all positions to be loaded, but this is not happening, there are missing the "'return orders'".
    Any other idea of why this is happening ??

  • FDM export to HFM - 2nd export did not clear all data from 1st export?

    Has anyone experienced exporting a replacement FDM file to HFM where the 2nd file did not contain an account that was present in the original file and that account/value in the 1st file then remained in the HFM trial balance and caused it to be out of balance? Does the replace export option not clear all the prior file data? The only unusual part of it might be that the problem account was derived using logic group script? Thanks.

    Thanks Hensen - Sure, it was easy enough to fix once I deduced what the problem was - although my solution was just to use the data clear function and reload. The real question is how to prevent it from happening again and it sounds like I can't do much about it - other than trying to train the users to watch out for do-over files that have fewer accounts than the original load?? Am I wrong to think that HFM should try to fully clear all previous data from a load file if there is a replacement or at least try to validate whether or not all prior accounts have been repopulated?? There's plenty of good validation in the validation step of FDM. Why not during the export step? If this makes sense, I'll put in another "enhancement request" to support.

Maybe you are looking for