Assign theme to one user in EP5

I need to change the theme for one user in EP5.
Setting it in the sql database seems a quick solution.
How do I relate the user_id from table p320_user_portal to the id of the user in the ldap ?

As of configurator 1.7.1 this still seems un-possible.  Contacted Apple enterprise phone support about this and they verified that at this time only one device can be assigned to a user.  A suggested workaround was to label the user with a device specific tag (IE "$USERNAME [iPad]" "$USERNAME [iPhone]") but obviously this leads to some other complications.  I asked the phone representative to please submit feedback concerning use cases where users need to have more than one device assigned.  Hopefully this can be addressed.  If other people have this question I would suggest submitting feedback at apple.com/feedback (no there isn't an option for configurator but I submitted my feedback under OS X).
The squeaky wheel gets the grease.  Hopefully we will be heard.

Similar Messages

  • Assign theme to the user through code

    Hi,
       I need to create the personalize component through which we can assign theme to the user(changing theme). can anyone give solution for assigning theme to the user through code.
    Regards,
    Shanthakumar.

    Hi Shanthakumar,
    Here's a document for creating portal desktop and display rule
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e549a890-0201-0010-3f8b-d3b852457ebd
    You can create a display rule for a portal desktop depending upon the group. Through code you can add the required users to this group.
    Hope this helps resolve your issue.
    Regards,
    Seema Rane.

  • How do I install a program and assign it to one user?

    I would like to avoid that all installations, for example a VPN client, is visible for all users.

    mende1 wrote:
    Apple used to put a "special" Applications folder inside every user's folder…, but note that you can run them in every user's folder (even if you put the app in the Downloads folder).
    If I understand your statement says that another user could run those apps from another user's Applications folder, that would be because when you create the Applications folder, it has default permissions giving the staff group and everyone read access. Get Info on the user's Applications folder and delete the staff group from the permissions list and set everyone to no access. To do so,
    Click the padlock at the bottom of the window and authenticate.
    Select the staff group line and click the delete ( – ) button.
    Select no access from the popup menu next to everyone.
    Having done that, no other users will be able to see into the user's Applications folder to run the apps.
    For anyone else stumbling across this thread, this applies to the User Applications folder in the user's Home directory, NOT the main Applications folder where all other apps are located. If you change those permissions, you will not have access to any of the apps.

  • I keep getting the emails downloaded again after I delete them from one user

    When I delete the email messages from one of my neighbors the messages keep coming back as new mail in the in box. Mail from other sources is fine. This happens to both my wife's and my emails.

    For IMAP mail only
    Delete message permanently
    Settings>Mail......>tap the little arrow on right of mail account>Archive Messages>OFF
    You can't set it to less than 50 Recent Messages.

  • How to assign theme for a particular user

    Hi All,
    I am new to portal development. I have make one theme Kuldeep_theme. I have already assign the rules and pages. But still its not working for the user given.
    Kindly give the instruction to apply the theme to a user.
    Thanks in advance
    Regards,
    Kuldeep Verma

    Hi,
    If you want to assign a standard theme to user means
    goto Personalize -> Portal Theme -> Select the theme
    to get the personlize option in your portal page (Top right side) assign eu_role to the user.
    If you want to modify the theme and assign theme to particular user.
    Themes:
    System Administration
                  -->
             Portal Display
                            -->
                        Theme Editor 
                                  -->
                              Choose a Theme
                                          -->
                                          Make Changes
                                            If Any
                                                     --> Save It
                                                                -->
                                                                Desktop and
                                                                 Display Rules
                                                                          -->
                                                                          Portal Content                                                                               
    --->
                                                                          Portal Users
                                                                          <--
                                                                 Standard Portal
                                                                       Users
                                                                 <--
                                                            Copy [Default Frame
                                                             Work Page & Desktop]
                                                        <--
                                              Paste it In a New Folder
                                            Rename the Desktop
                                           <--
                                             1).Open The Renamed Desktop
                                             2). Open Folder Themes (sys) and R.C
                                             3).Add theme to DESKTOP.
                                             4) Save it.
                                             <--
                                     Open ->portal Admin -> SuperADmin
                                  <--
                          Open -> Master Role Collection
                          <--
                    Select a Role/user/group from Master Role Collection
                 <--
              R.c on Renamed Desktop and “add Portal Desktop To Expression".
            <--
       Open Renamed Dektop,Select the theme,
        <--
      Hit the Button "Set Default" (save)
       <--
    Logoff and Logon the Portal Page.
    Regards,
    Ramganesan K

  • Creation of auto approval process for assigning role for a user in oim11g

    currently i'm doing a scenario like a user must be automatically assigned to a role by using approval policy where the user is already there in oim and then we use csv file in that we take 2 columns like userlogin and role name so by running this scheduled task user must be automatically approved to that role.But i have to use the default auto approve policy in oim without creating any bpel process for that so can any one suggest me how to proceed with this scenario.
    Thanks in Advance for quick response.

    If I understand correctly, You have users and their respective roles in csv file. Users are present in OIM. You want to assign those roles in csv file to respective users?
    If this is the scenario, you need to write a custom code for schedule task which will read data from your csv file, create roles and assign them to respective users.
    to create custom schedule task in OIM 11g, you may refer to:
    http://docs.oracle.com/cd/E21764_01/doc.1111/e14308/scheduler.htm
    regards,
    GP

  • How to assign Action to multiple Users dynamically in GP

    Hello Experts,
    I have the following scenario in GP
    I have created a Web Dynro GP Callable Object and from my Web Dynpro i need to a pass a list of Users to which a particular Action needs to be assigned.
    I am able to return a single value from web dynpro to gp.
    Can some one help me how to return a list of users to gp.
    I have done the following: In the getDescription method I have added an attribute of multiplicity 1_N:
    IGPStructureInfo outputStruct = technicalDescription.getOutputStructureInfo();
    IGPAttributeInfo list1 = outputStruct.addAttribute("List1", IGPAttributeInfo.BASE_STRING);
    list1.setMultiplicity(IGPAttributeInfo.MULITIPLICITY_1_N);
    then in the complete method I am trying to set an Arraylist to this variable:
    IGPStructure output = execContext.getOutputStructure();
    output.setAttributeValue("List1", userList);
    Here userList is an Arraylist which contains the list of User Id's..
    However I get the following exception:
    com.sap.caf.eu.gp.exception.api.GPInvocationException: Multiplicity of attribute with name List1 and namespace null does not allow single values to be set/received
    at com.sap.caf.eu.gp.structure.impl.GPStructure.setAttributeValue(GPStructure.java:114)
    Can someone help me in knowing how I can return a list as an output parameter to GP from Web Dynpro...
    Regards
    Sundeep

    Hi Srinivasan,
    Of course the Role is Runtime defined...
    I would brief you again the mapping that I have performed in the Design time at the processlevel.
    From Web Dynpro I return a List of type String and Multiplicity 1..N.
    I map this List with the leaf item User Identifier contained in the User List Input parameter of the Assign User to Process Role callable object.
    However since the User Identifier parameter is of cardinality 0..1 only the first value in the returned list is getting assigned to it. Thus the task is getting assigned to only one user.
    Now it is not possible in Design time to Group or consolidate parameters of different types. Thus the List which is of type String cannot be mapped to User List or the User_Item contained within it which are both of type Structure and multiple cardinality.
    I even created a Structure in Web Dynpro of cardinality 1..N and withing it i included a List of type String and cardinality 1..N. Now I returned this Structure from Web Dynpro and tried to map it to the User Item Structure of the Assign User to Process Role Callable object, but doint this the task did not get assigned to any user..
    One question:
    Don't you think that in order for the task assignment to happen using the Assign User to Process Role Callable Object the leaf item User Identifier parameter contained in the User_List input parameter of this callable object needs to be populated with the required User Id's.
    But if the cardinality of this parameter is always 0..1 , is it possible to achive the assignment of an Action to multiple Users at runtime using this Callable Object?
    Can you please explain the parameter mapping you followed in order to achive this...
    Regards
    Sundeep
    I want to ensure that you remain in the top 3 contributors in this forum 
    I will continue to reward points for your answers
    Edited by: Sundeep Sethi on Sep 4, 2008 1:47 PM

  • More then one user role

    Am I just completly missing something here or is it
    impossible to assign more then one user role to a user?
    If it is, I would appreciate if people could share any work
    arounds they have come up with.
    Thanks,
    Paul

    > Am I just completly missing something here or is it
    impossible to
    > assign more then one user role to a user?
    >
    > If it is, I would appreciate if people could share any
    work arounds
    > they have come up with.
    >
    > Thanks,
    >
    > Paul
    >
    Hi,
    Are you using CPS/Ldap ?
    If not, you can assign different roles to a same user
    provided his email
    address is different !
    Hope this helps !
    Avinash

  • Assigning two UIDs to one user?

    I created a home folder on another computer, and I transfered it to my current computer. The old home has a different short name and UID than the user account on the new computer. Can I assign my user account both UIDs (501 and 502) so that my one account can use files and directories in both the old and new home folder?

    Assuming you have admin rights, and unless there is some purpose behind having 2 accounts, why not temporarily put the data files in a common location (like the shared folder), change ownership, then move them to your users home folder?
    Then you can delete the second account.

  • TS3981 After migration files are now shared between two user accounts. How can I combine them into one account?

    After migration, from PC, files are now shared between two user accounts.I have to switch users to access files. How can I combine them into one account?

    See Pondini's  Transferring files from one User Account to another, for starters

  • My wife and I have separate user accounts but want to share our Photos libraries or merge them as one.  How do I do this?

    My wife and I just bought an MBP (mid-2014 version) with Retina display and have separate user accounts with Admin. privileges.
    We want to share our Photos libraries or merge them as one.  How do we do this?  IS it better to just have one account instead?

    iTunes- How to share music between different user accounts on a single computer
    You cannot merge two separate libraries across user accounts. Photos does not have the function of merging different Photos.library files. If you have Aperture then you can merge the two before migrating over to Photos.

  • I have just used migration assistant to import photos (using an ethernet cable) from my PC. It has worked but they have gone into a new user on my MacPro. How can I merge them into the one user account.

    I have just used migration assistant to import photos (using an ethernet cable) from my PC. It has worked but they have gone into a new user on my MacPro. How can I merge them into the one user account.

    How many pictures (or how many bytes) are we talking?  Now that the pictures are imported one way to cross users is to use a removable drive (although large volumes of files preclude this).
    The other is to login as the user where the pictures are, then copy them into the public drop box of the user where you want the picture.
    The arrow is showing (in ths example) copy files from the Pictures folder for my user to the guest user accounts public dropbox.  When you do this you may have to authenticate and you won't be able to see the results of the copy until you log in as the other user.
    All users are in the folder "/Users/"

  • Purchased CC for business and can only assign one user. How can I assign more users to have it on all 4 computers in the office?

    Purchased CC for business and can only assign one user. How can I assign more users to have it on all 4 computers in the office?

    Hi there
    You would need to purchase a seat for each user.
    What you currently have is 1 seat = 1 user.
    Kind regards
    Bev

  • Create users and assigning them security on the Entity dimension

    Hi All,
    I’m working with Hyperion ESSBASE 11.1.1.3 and Hyperion Planning 11.1.1.3 and I have a problem related to create new users (without admin permissions) and assigning them security on the Entity dimension.
    When I access with these users to a Dataform in Planning appears these message:
    “Security and/or filtering has resulted in a required dimension not being represented on this data form”
    I have followed these steps:
    - I have created new users (Native Directory) and provision them against essbase and the planning application in Shared Services.
    - I have expanded the essbase server > security > refresh security from shared services > all users.
    - I have assigned security roles in all members of Entity dimension in Planning.
    - I have refreshed database and security filters in Planning.
    Please help
    Thanks a lot in advance

    Hi,
    You will have to apply security to all the standard dimensions and not just entity, so that will be account, entity, scenario and version.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • When sharing photos between two users, if one user uploads new photos, only he can view them. Any help on this issue?

    My iPhoto library is in Shared Folders so both users can access and edit the pictures. However, if one users uploads new photos, for some reason these become only available to him and the other user cannot even view them.
    All permissions have been set so that both users have them on the shared folders. For some reason, when creating a folder, the permissions are not kept....
    Please help.

    The same thing has started happening to us since upgrading to iPhoto 11 and Lion. If I import photos from my camera, then my partner can see thumbnails of those photo, but cannot click them to see them sull size. Similarly if my partner imports photos.
    We have used a shared iPhoto library stored in Users/Shared/Photos for several years and everything has been fine until now.
    I am backing up now and will then check and repair the library permissions. I'll post back the results.

Maybe you are looking for