ESSO - Full SSO end-user experience

Hi all,
I have been testing Windows authenticator and Windows V2 authenticator and I have been unable to set it up so that it does not request the password when a user first logs into the system. Is it possible to set it up so that it does not show this authentication dialog in the first login? Any hints would be appreciated.
Thanks in advance

hello,
to my knowledge, i think you won't be able to prevent (at least) your first authentication for the simple reason that when FTU is done, a key is generated to encrypt your credentials and this key is generated based on your authentication.
For subsequent use, i've found out that you can prevent recurring authentication (apart from the reauthentication timer setting) by adding a key to the registry HKLM/Passlogix/AUI/<your authentication here>/CheckForParentProcess the type of the entry being DWORD and the value being 0.
Of course it will still ask for authentication for "password reveal" feature (but still depending on the settings you specified).
hope it helps.
regards

Similar Messages

  • End User Experience Monitoring Querries

    Dear Experts,
    I have a doubt in End User Experience Monitoring (EEM), I created a SAP GUI Script
    that script  execute automatically every day. How to set automatically.
    Regards
    Balaji

    Dear Experts,
    I want to know the End user Experience Monitoring in the EEM Script how to assign the Region, Location,
    then how to call the script.
    Please give me provide solution.
    Regards
    Balaji

  • Recording NWBC scripts for End User Experience

    Hi Experts,
    I am recording NWBC scripts using the Netweaver Business Client GUI for loading and running it through Robots for End User Experience Monitoring. I don't see an option to "LogOff" in NWBC client while recording  the script. We only have option to "Close all session and LogOff" in NWBC client .
    When I am using this option, it closes all the sessions including the EEM Recorder also without saving the recording .
    I need to include "LogOff" as the last step so that it doesn't leave any active sessions for each run by different robots.
    I have a Solution Manager 7.1 SP10 and NWBC client 3.5 Patch 13.
    Please help me achieve this.
    Regards,
    Manish K

    Hi,
    for a browser the recommendation is to open a new, empty tab to keep the browser alive while closing the tab with the  session. All that with the hope that the backend will use the triggered event of collapsing tab to close session.
    Maybe a similar strategy works for NWBC.. but I don't know the UI in detail.

  • End User Experience Management(EEM)

    Does any one has insight information about SAP's End User Experience Management(EEM) in Solution manager vs CA's Customer Experience management?
    Please provide me relevant information.

    Please check this:
    Link: [http://www.sdn.sap.com/irj/scn/elearn?rid=/library/uuid/5093bee4-27f2-2c10-869e-e523d818f2e9&overridelayout=true]
    Regards,
    Gerald

  • End-User Experience error running agent on windows server 2008 R2

    Hi,
    I have installed implemented the end-Uer experience agent in a Windows 7 without issues but when we have installed the SDM 7.30 agent and the SAP GUI 730 in a Windows server 2008 R2 and we have configured the agent as End-User experience monitoring Robot in solution manager.
    We have distributed one script without issues but the executios are failing with the message:
    "SAPGUI Compontent" could not be instantiated (sapfewse):605
    We have reviewed the bellow notes but wothout success:
    1261706 - Kill bits set for SAP GUI Scripting
    1092631 - Remote vulnerabilities in SAP GUI for Windows
    We are able to run the scripts in the server directly in the SAPGUI and even with the EemEditor.
    SAP message is open since last week, but my be you can provide a faster response.
    Could you please help me.
    Kind Regards

    Have you followed installation procedure described in the following article: http://www.cisco.com/en/US/docs/security/ibf/setup_guide/ibf10_install.html ?
    You can find troubleshooting hints in the following article: http://www.cisco.com/en/US/docs/security/ibf/setup_guide/ibf10_troubleshooting.html
    I'd reccomend to install CDA instead of AD agent (nice GUI...) but you'll have to create new (virtual) server for that: http://www.cisco.com/en/US/docs/security/ibf/cda_10/Install_Config_guide/cda_install.html

  • Network traffic of an End-User Experience Monitoring (EEM) Robot

    Dear Experts,
    our company is currently using three EEM-Robots in different countries.
    After one month we noticed, that the network traffic of the robots is quite high (one robot used about 8 GB in one month).
    So I checked the configuration of the robots:
    Every Robot runs about five scripts, which are executed every ten minutes. Therefore every robot exectues 30 scripts in one hour.
    There are four SAPGUI Scripts and one http-script. Every Script (besides the http-Script) is collecting the system data (bold letters in the monitoring) and the trace level low (parameter trace.e2etracelevel = 0).
    So I start measuring the network traffic. I observed the connection with Wireshark:
    The robot uses in average 4000 Byte per second, which equates to 9,66 GByte for one month.
    After stopping every script and rebooting the robot, I measured the traffic again.
    The robot uses without executing a script in average 820 Byte per second, which equates to 2 GByte for one month.
    Are there some settings I overlooked, possibilities to decrease the network traffic? 
    Is that size of network traffic within the normal range?
    Regards
    Alex
    Edited by: Alexander Beck on Jan 11, 2012 10:57 AM

    Hi  Beck,      
    I am also working on End user experience monitoring.
    I want to in depth details in End User Experience Monitoring. If you have screen shots please share for me.
    Regards
    Balaji
    Edited by: Balaji Rao Bhoomraogari on Jan 18, 2012 12:19 PM

  • End-user experience during CREATE OR REPLACE TRIGGER

    Is CREATE OR REPLACE TRIGGER intended for you to be able to update a trigger in production while users are actively using a that table's data?
    Just wondering how it behaves. People currently in the middle of an event will use the old trigger, while new requests will use the new one?
    Thanks
    Chuck

    Actually, this one kind of surprised me. I tried:
    SESSION1 > DESC t
    Name                                      Null?    Type
    ID                                                 NUMBER
    DESCR                                              VARCHAR2(10)
    SESSION1 > CREATE TRIGGER t_bi
      2  BEFORE INSERT OR UPDATE ON t
      3  FOR EACH ROW
      4  BEGIN
      5     :new.descr := UPPER(:new.descr);
      6* END;
    Trigger created.Then, in anothe session I did:
    SESSION2 > INSERT INTO t VALUES (1, 'One');
    1 row created.Then in the first session:
    SESSION1 > CREATE OR REPLACE TRIGGER t_bi
      2  BEFORE INSERT OR UPDATE ON t
      3  FOR EACH ROW
      4  BEGIN
      5     :new.descr := LOWER(:new.descr);
      6* END;
    Trigger created.
    Just to prove no commit happened
    SESSION1 >SELECT * FROM t;
    no rows selectedI was expecting to see
    ORA-00054: resource busy and acquire with NOWAIT specified
    or something similar. So in session 2 I did:
    SESSION2 > COMMIT;
    Commit complete.
    SESSION2 > SELECT * FROM t;
            ID DESCR
             1 ONE
    SESSION2 > INSERT INTO t VALUES(2, 'Two');
    1 row created.
    SESSION2 > SELECT * FROM t;
            ID DESCR
             1 ONE
             2 twoSo, the new trigger is working. Now change it again:
    SESSION1 > CREATE OR REPLACE TRIGGER t_bi
      2  BEFORE INSERT OR UPDATE ON t
      3  FOR EACH ROW
      4  BEGIN
      5     :new.descr := UPPER(:new.descr);
      6  END;
      7  /
    Trigger created.and back to session 2
    SESSION2 > INSERT INTO t VALUES (3, 'Three');
    1 row created.
    SESSION2 > SELECT * FROM t;
            ID DESCR
             1 ONE
             2 two
             3 THREESo, it looks like whichever trigger is current at the time of the insertion or updation seems to control what gets in the database.
    John

  • Introducing the Microsoft Intune End User Enrollment Guide

    Help Your Users Get Their Devices Enrolled in Microsoft Intune with the End User Enrolment Guide
    Choosing how you manage mobile devices within your organization is just one of many steps involved in protecting your corporate data while enabling a great end user experience on the devices they choose.
    Now, you need to encourage your users to enroll their devices into Microsoft Intune to be managed. We’ve created the Microsoft Intune End User Enrollment Guide to help get you started. This two-page document helps explain to your users the importance of protecting corporate data, as well as their own, by letting your IT department manage their devices. It explains what may happen on their devices (installation of apps, security policies applied, etc.) and what will NOT happen on their devices (collecting personal information like phone and...
    This topic first appeared in the Spiceworks Community

    Depends which Guide you're looking at in 1.9.
    You can choose the Full Guide (in Standard or Classic) views, Channel Guide, Half Guide or Mini Guide.
    7xxx HD
    Full Guide Standard = 7 channels (hit Guide once)
    Full Guide Classic = 5 channels (available option in Television settings menu)
    Channel Guide = 7 channels horizontally (hit Guide twice)
    Mini Guide = really just one channel at a time (hit the down arrow on live TV)
    Half Guide = 6 channels (hit the up arrow on live TV)
    2500 / 6xxx / 7xxx SD
    Full Guide Standard = 6 channels (hit Guide once)
    Full Guide Classic = 4 channels (available option in Television settings menu)
    Channel Guide = 6 channels horizontally (hit Guide twice)
    Mini Guide = really just one channel at a time (hit the down arrow on live TV)
    Half Guide = 5 channels (hit the up arrow on live TV)

  • OIM approval -  End User Experiance

    Hello,
    In my configuration for OIM resource request :
    * 1st level of approval goes to manager -> user could login and check status of his request and could understands that it is pending on manager and verify his manager name in the request pending status. This is good. :)
    * 2nd level of approval goes the resource owner - (which is implemented as a group - the approval request goes to member of the group). What user sees is that the request is pending on the approval-group. He don't know whom to reach and eventually ends up talking to OIM admin to understand the current approver for the request.
    A valid use case is - in case resource approver changes then dynamically all the pending requests should move to the new approver. This works best in the current configuration (group member approval).
    How to enhance end user experience when the request is pending on 2nd approval step.
    thanks,

    But i don't think this will automatically re-assign the request to new approver in case of approver change.I didn't understand this line. What do you mean by Automatically Re-assign to new approver in case of approver change.
    How approver will get changed? Someone has to reassign the task to other person/group ?
    What is your Use Case ?

  • Help! ADF default behavior rejected by end users...

    Hi,
    We have built an ADF 11g application during the past months. Last week we had our first user acceptance test with a small group of users. The users were very satisfied about the nice looks of the screens. But they had quite a lot of issues with the default behavior of ADF. I'll provide a list of the most important issues below. I hope more people here at OTN have experienced these issues and perhaps have some workarounds. And perhaps Oracle can use lists like this to improve the next version of ADF...
    <ol><li>Multi record edit<br>We have a lot of multi record edit screens. These are all editable tables. Those tables have the following problems:
    <ol type="a"><li>Whenever a partial refresh occurs, the whole table gets reloaded. This takes some time, which is uncomfortable. But the main problem here is that the table does not preserve the scroll bar position. The situation can be improved a little bit by setting the <tt>displayRow</tt> attribute to <tt>"selected"</tt> on the table. This will cause the table to show the selected record at the top of the view port after a refresh. But this still confuses the end users. In their experience the records are randomly jumping around.</li>
    <li>Records are not always inserted at the bottom. (In fact, they are inserted above the selected record.) End users simply expect records to be inserted at the bottom of the table, no matter what. And I can't disagree with them. Isn't there a setting to achieve this in ADF?</li>
    <li>Whenever the user navigates to another record in the editable table, all validation rules on the record he navigates from are fired. That means he cannot leave a required field empty to fill it later. The end users say this is very annoying. We would like to delay all validation until the user presses the Commit button. But as far as I know this is not possible, is it?</li>
    <li>The selected record position is not preserved on a full refresh. Our Commit button forces a full refresh of the page. This sounds like a sensible choice to me. However, users tend to click on Commit quite often. But after a full refresh of the page, the currently selected record in a record set is always reset to the first record in the set. In a large data table, this annoys the users very much. Isn't it possible to preserve the selected record over a full refresh?</ol>
    <li>Annoying validation errors<br>Many end users are annoyed by the somewhat "persistent" validation error messages. In a larger form or an editable table, users sometimes want to ignore an error and first enter other data, before correcting the error. This is hardly possible, because ADF sets the input focus to fields with errors and keeps popping up windows with a list of fields that have errors. We would like to make the validation less "aggressive". It is okay to give a field a red border if it contains an error. But leave the input focus where it is. And don't show any popup until the user presses the Commit button. And even then show the popup window only once.</li>
    <li>ADF BC caching and business rules in the database<br>We have some business rules in our database that automatically fill some fields with default values. We have e.g. a master-details relation, where a value in the master record is calculated based on the values of the detail records. We have set the calculated field in the master record to "refresh after update" and "refresh after insert". Sometimes the value of the field gets refreshed, but sometimes not. Users know that the field should be calculated by "the system", and are asking if they did something wrong if it doesn't. I know we could do the calculation in ADF, but our policy is to have all business rules in the database and to not repeat ourselves (DRY). Is there another way to guarantee that the calculated value in the master record gets updated after an update or insert of one or more detail records?</li>
    <li>Partial refresh loses data<br>If a field causes a partial submit to occur, fields in the same record that were not (partial) submitted before lose their data. This forces us to enable partial submit on all fields. But that causes a delay after moving the focus to the next field and validations to be fired too early.</li>
    </ol>
    I've numbered the items above, please use these number as a reference if you're posting an answer to a specific question.
    Please let me know any solution, even if it is only a partial solution. We've a nasty situation now. Our application is (nearly) finished, but it is blocked for production by the users because of the behavior of the ADF framework, on which we have very little influence. We can't blame the users for that, most of their criticism is fully justified. So we have to come up with a good solution for these issues before we can go to production. So any help would be highly appreciated!
    Best regards,
    Bart Kummel
    PS.
    We're using JDeveloper/ADF 11.1.1.1.0, we deploy to a WebLogic 10.3.1 server and we have an Oracle 10g database. We're using the full ADF stack: ADF Business Components, ADF Bindings and ADF Faces.

    Hi Bart,
    I can answer for few of your questions.
    Bart Kummel wrote:
    Hi,
    We have built an ADF 11g application during the past months. Last week we had our first user acceptance test with a small group of users. The users were very satisfied about the nice looks of the screens. But they had quite a lot of issues with the default behavior of ADF. I'll provide a list of the most important issues below. I hope more people here at OTN have experienced these issues and perhaps have some workarounds. And perhaps Oracle can use lists like this to improve the next version of ADF...
    <ol><li>Multi record edit<br>We have a lot of multi record edit screens. These are all editable tables. Those tables have the following problems:
    <ol type="a"><li>Whenever a partial refresh occurs, the whole table gets reloaded. This takes some time, which is uncomfortable. But the main problem here is that the table does not preserve the scroll bar position. The situation can be improved a little bit by setting the <tt>displayRow</tt> attribute to <tt>"selected"</tt> on the table. This will cause the table to show the selected record at the top of the view port after a refresh. But this still confuses the end users. In their experience the records are randomly jumping around.</li>You can set the fetchSize in the iterator to a minimum value (Say if you are displaying 20 records in the table at a time, you can set the fetchSize to 20, so that, it will fetch only 20 records at a time, and the remaining records on demand basis, i.e they will be fetched when you scroll in the table).
    <li>Records are not always inserted at the bottom. (In fact, they are inserted above the selected record.) End users simply expect records to be inserted at the bottom of the table, no matter what. And I can't disagree with them. Isn't there a setting to achieve this in ADF?</li>I suppose you are using the default createInsert operation. You can write your own method instead of the default createInsert, which would have something like
    public void customCreateInsert(){
    vo.last();
    vo.createInsert();
    }You can expose this method as method action and use it in place of default CreateInsert.
    <li>Whenever the user navigates to another record in the editable table, all validation rules on the record he navigates from are fired. That means he cannot leave a required field empty to fill it later. The end users say this is very annoying. We would like to delay all validation until the user presses the Commit button. But as far as I know this is not possible, is it?</li>You can set the immediate property to true for the column for which you want to skip the validation. However, the validation will fire when you submit / commit the changes (which is expected).
    <li>The selected record position is not preserved on a full refresh. Our Commit button forces a full refresh of the page. This sounds like a sensible choice to me. However, users tend to click on Commit quite often. But after a full refresh of the page, the currently selected record in a record set is always reset to the first record in the set. In a large data table, this annoys the users very much. Isn't it possible to preserve the selected record over a full refresh?</ol>Again, you can have a custom method, which would get the current row, commit the transaction and do a setCurrentRowWithKey to point to the last selected record after commit.
    <li>Annoying validation errors<br>Many end users are annoyed by the somewhat "persistent" validation error messages. In a larger form or an editable table, users sometimes want to ignore an error and first enter other data, before correcting the error. This is hardly possible, because ADF sets the input focus to fields with errors and keeps popping up windows with a list of fields that have errors. We would like to make the validation less "aggressive". It is okay to give a field a red border if it contains an error. But leave the input focus where it is. And don't show any popup until the user presses the Commit button. And even then show the popup window only once.</li>You can add a af:messages tag in the top and set globalOnly to true. Also, set the immediate property for the items to skip the validation when they tab out.
    <li>ADF BC caching and business rules in the database<br>We have some business rules in our database that automatically fill some fields with default values. We have e.g. a master-details relation, where a value in the master record is calculated based on the values of the detail records. We have set the calculated field in the master record to "refresh after update" and "refresh after insert". Sometimes the value of the field gets refreshed, but sometimes not. Users know that the field should be calculated by "the system", and are asking if they did something wrong if it doesn't. I know we could do the calculation in ADF, but our policy is to have all business rules in the database and to not repeat ourselves (DRY). Is there another way to guarantee that the calculated value in the master record gets updated after an update or insert of one or more detail records?</li>We need some more information. Do you see any "pattern" on which this things occur?
    -Arun

  • Another Ovi Share first-glance user experience

    Excited from the Nokia World presentations I decided to give Ovi Share a try. Previously I've been using Picasa and some local photo sharing services such as kuvaboxi.fi - that is to say that I had some baseline to judge Ovi share against.
    First challenge was getting into ovi.com. Due to some cookie issue in Firefox I just got some java.lang.NullPointerException when trying to log in. Of course the error message was total gibberish and, interestingly, I noticed that there is no way to report such bug from the Ovi frontpage. Yes, you have the FAQ, but no info what-so-ever how and who to connect in case of login errors. Persistent as I was wanting to experience Ovi share I did login with IE, was able to send bug report and finally get the thing fixed - pheww...
    At first look, Ovi Share looked ok. If only it had functioned ok... Creating an album in the web is easy, and so is adding photos - great! Made few albums and that's when the drawbacks (showstoppers one might say) started occuring to me...
    1. There's no way to create sub-folders! Are you real?!! So I can't make album 2009 and then sub-album Event XX? Uh, this front page will become ugly and confusing to use in a short while if I continue uploading my precious photos to these folders.
    2. I can't edit photos in groups. So there I am uploading 50 photos from my laptop and I can't even tag them collectively or move them between folders without going through the photos one by one. wt*? please excuse me my French... I really got frustrated after like 3 photos. And I couldn't even delete them in groups to re-start from the beginning and upload the photos directly to correct albums. argh!
    3. Tags, oh this one's great! As in bullet above, I can't tag the photos in groups - already a real pain in the bottom. It's done quite handy when uploading from my mobile device, though. But then in Ovi Share, why on earth can I not filter / search the photos based on tags? To use the tag search, I have to browse my way through to a photo which as been tagged with the particular tag and only there I can click the tag to search photos with similar tags. And what d oI get when doing this? --> No items found. Again wt*? I just clicked a photo with that tag!!
    4. Uploading photos from my device. Overall, this works great in my phone. That is if I'm uploading to an album that already exists. No way to create a new album while doing it directly from photo browser application. Well, what the heck, let's just dump them to the default "root" album and sort them to right album in Ovi Share. ok, done. all items show nice in All Media. I create new album, start moving pictures one-by-one (well, I'd do it in groups but that's not available!). Doesn't take too long to notice that in All Media you can't see actually see where the images are stored. So there I am sorting 50 pictures taken & uploaded, and the only way to know which images I've already moved is to move between All Media and my album and make a manual verification. another wt*?!! I would spend two hours or so sorting 50 pictures and still end up with pics missing from albums.
    5. Viewing the images. How come I can only watch these in full-screen by starting a slide show or downloading the pics back to my hard drive?  And what if I wan't to zoom in on some detail? To tell you the truth the experience of viewing photos is so bad that I wouldn't use Ovi Share to, for example, share images related to ebay auctions. Any potential buyer would probably just walk off immediately.
    I haven't even dared to try the Ovi Suite on laptop if that makes things any easier. Ovi Share, as it is now is totally unusable. How bad can a first glance user experience be? Well, Ovi Share just set new standards for me

    I completely concur.  I've just spent the last two days tryng to force both Ovi for PC and Ovi Share to do what could be fantastic.... but it's not, it's **bleep**.  I've gone back to PC Suite on the PC and am just about to give up on Ovi Share.
    Here's my main gripes with Ovi Share
    Ovi Share has the potential to be a great site but....
    Uploading via the "World" share online symbol within photos is fast but....
    You can't even choose an existing album - it always select the first one
    Tags aren't created
    The date of the photo doesn't go through - it uses the date uploaded as the date created
    The description doesn't get uploaded
    You can't move or delete multiple files when they are uploaded
    There's more as you said in your post but it's really disappointing.  By the way, if I've got any of these wrong and there's a fix please let me know.

  • What should end-users initially do in BPC system?

    Hi: I am seeking some guidance here. My client wants to provide a small set of end-users access to the BPC sandbox system. These users are absolutely new to BPC, haven't had any training but use Excel regularly for their analytical & planning needs. The idea is to have them gain some familiarity with the look-and-feel of BPC for financial reporting purposes and assess how well it could serve as the financial report writing tool. It is a tall order for folks who have no experience with BPC but that's the approach. Can you please advice on what activities these users should and can realistically carry out that will not only give them a good overview but also help provide meaningful feedback on the product? (Data will be loaded in the sandbox and formal training will be provided soon but this question relates to the period prior to training).
    Full points will be awarded to all the helpful answers.
    Thank you very much,
    Jon

    Hello,
    I have exactly same situation.  One of my prospective customers is going to start small project to evaltuate BPC for their planning tool, and requires small sandbox machine.
    All replies above are useful information, also I think it is also important to consider your customer's requirement and expectation for better consulting service.
    I would like to add 2 things about this topic.
    1: current Excel spreadsheets
    If your customer uses tons of Excel sheets for planning process, it might be great to show the customer utilizing current Excel spread sheet by importing those to BPC and put some BPC functions like EvSND.  Then the cusomter would understand BPC is great application that enable to utilize existing Excel sheets easily.  I had some presales activities, and that seems to impress sereral prospective customers.
    2: how to build sandbox machine
    We're planning to build sandbox with virtual environment called "VMware".  The customer prepares just one stand alone note PC.  Then consultants make VMware files with VMware Workstation.  With VM, it is possible to make one set of files that includes OS, SQL Server, MS-Office, and BPC.  Everything is put into one file, and do not set up client server system.  I think you have to purchase VMware Workstation, but VMware Server might be free and has same functions.  The bad thing is that VM file is super heavy, I say 15GB in my teams' machine as average.  Also the note PC should be high-spec one.
    I do not have much information to answer your question.  I hope that comment would help you.  If you have further question, please feel free to ask me.
    Atsushi

  • Jabber for Mac - End User unable to Cut & Paste Images in IM

    Full discloure: I am an END USER, not an IT admin or anything like that. Not sure if this is the proper forum to ask this question but figured it was worth a shot...
    Running OSX 10.9.1 and Jabber 9.2.1.
    I am unable to copy-and-paste images into IM conversations with co-workers.
    My "cachedPresenceConfigStore.xml" file shows:
    "<im_cutandpaste_enabled>TRUE</im_cutandpaste_enabled>"
    and
    "<screen_capture_enabled>TRUE</screen_capture_enabled>"
    ...yet these functions seem to be missing from the IM client. As far as I know our organization's service-side policy allows for sending images over IM (confirmed this using the jabber client on a windows machine).
    Am I just "doing it wrong" somehow? Is there some special method I need to use to be able to paste images into an IM conversation?
    Any help or direction is appreciated.
    Thank you,
    Jason

    It appears they disabled it server-side as the button (a paperclip) normaly appears to the right of the emoticon button. While the jabber-config.xml file can block specific file extensions, it cannot disable the feature entirely. This is done within the Service Parameters of the server, which only an admin can see.
    ProcedureStep 1 Choose Cisco Unified CM IM and Presence Administration > System > Service Parameters.Step 2 From the Server menu, choose an IM and Presence node .Step 3 In the Service Parameter Configuration window, choose Cisco XCP Router as the service.Step 4 From the Enable file transfer drop-down list, click On or Off.Step 5 Click Save.Step 6 Restart the Cisco XCP Router Service on every node in the cluster. For more information, see Restart CiscoXCP Router service, on page 43.
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/im_presence/deployment/9_1_1/CUP0_BK_D5B4C107_00_deployment-guide-for-imp-91.html
    Please remember to rate helpful responses and identify helpful or correct answers.

  • SSO and User Mapping at same time

    Hi,
    Can we use SSO and User mapping at same time between Portal and SAP Backend system?
    For some of the users the user id is different in both end.
    After implementing the SSO... Will it affect the existing user mapping? and the system alias created for that?
    If not, Can we use both SSO and user Mapping same time?
    Thanks,
    VB

    Hi VB,
    In this case I suggest you create 2 systems one you might have created for users who are having common user ids in portal & at the backend system.
    For the users whose ids are defeering you can create reference system and in user managemant property of that system
    Authentication Ticket Type - Select -SAP Logon TicketSAP Assertion Ticket
    Logon Method -  UWPW
    User Mapping Fields -  {100,200,300}Client;Language
    where 100,200,300 are the clients of the backend system.
    Assign this system in the ivews.
    Thanks,
    Vishal

  • Is there a way for end users to give their manager access to change their Out of Office, without an admin involved?

    Our end users need to be able to give their managers access to enable their out of office. 
    question 1.  Can this be done without giving them full access?
    question 2.  If they need full access, can the end user themselves give this access? (I've tried giving another user "owner" rights, but the user still can't seem to open my calendar from OWA to adjust my out of office)
    question 3.  Can this be done without an Sys Admin being involved?

    You can create a RBAC role for each manager scoped to each of their employees that lets them run the Set-MailboxAutoReplyConfiguration cmdlet on the exchange server. Otherwise they will need full access to the users mailbox which an admin would have
    to grant, the end user can not grant this permission. Then they can open the other users mailbox in OWA and set the OOF
    DJ Grijalva | MCITP: EMA 2007/2010 SPA 2010 | www.persistentcerebro.com

Maybe you are looking for