Reg:Howq to set Default role on SSO Authentication

We have a scenario where Default roles should be set to Contributor on SSO Authentication(not using LDAP). I have the below configuration
SSO_DefaultRoles=contributor
SSO_ModifyExtraParams=true
SSO_SetAuthInfo=true
SSO_IsSimpleAuth=false
in oraclessopluginfilter_environment.cfg. But on SSO login, I see that users are assigned only guest role because of which they don't have check in option. Can you please help me out with how to set up default roles on SSO authentication.
Thanks in advance for your time and effort
Praveen

Hi Jon,
For any code changes in bsp components we need it's z-instance and that we get after enhancing the respective entity for eg views, context nodes etc..
In case you are not familiar with the enhancement, please refer to some thread which explain about the component enhancement concept.
Coming to this requirement..
You need to enhance bp_roles component, then enhance rolelist view and roles context node.. redefine the GET_V_PARTNERROLE method.. copy the parent class code and do the necessary changes to manipulate the entries in gt_ddlb_add
Check the statement at line no 107..
gr_ddlb_roles->set_selection_table( it_selection_table = gt_ddlb_add ).
Just before above statment call, manipulate gt_ddlb_add to keep the required role value at index 1..
Another thing in my test system i can't see any role as "Account" under SPRO customizing "Business Partner Roles" instead "Business Partner (Gen.)" is available, don't know if you are able to see Account Role in the Roles DDLB..
i would suggest debug the get_v_partnerrole method once at line no 107 see the entries in gt table you will get an idea what you need to change.
Hope this helps..
Cheers,
Sumit Mittal

Similar Messages

  • Set default role for Account in SAP CRM 7.0

    We are using SAP CRM 7.0
    When an end user creates a new account there is a section called
    "Role" sub assignment block with entries like "Competitor", "Account", Contact Person, etc.
    I want by default when you create an account that the role Account is specified in there.
    I want it done automatically and do not want to rely on the end user to seelct this.
    I was able to do this with contacts by using an SAP note to set this for cotnact person.
    But does anyone know how to do it for an Account ?
    All I want to do is that when an account is created the system automatically sets the role as "Account".
    Thanks,
    Jon

    Hi Jon,
    For any code changes in bsp components we need it's z-instance and that we get after enhancing the respective entity for eg views, context nodes etc..
    In case you are not familiar with the enhancement, please refer to some thread which explain about the component enhancement concept.
    Coming to this requirement..
    You need to enhance bp_roles component, then enhance rolelist view and roles context node.. redefine the GET_V_PARTNERROLE method.. copy the parent class code and do the necessary changes to manipulate the entries in gt_ddlb_add
    Check the statement at line no 107..
    gr_ddlb_roles->set_selection_table( it_selection_table = gt_ddlb_add ).
    Just before above statment call, manipulate gt_ddlb_add to keep the required role value at index 1..
    Another thing in my test system i can't see any role as "Account" under SPRO customizing "Business Partner Roles" instead "Business Partner (Gen.)" is available, don't know if you are able to see Account Role in the Roles DDLB..
    i would suggest debug the get_v_partnerrole method once at line no 107 see the entries in gt table you will get an idea what you need to change.
    Hope this helps..
    Cheers,
    Sumit Mittal

  • Creation of BP with default role

    Hi ,
       I have a requiement where in I want a Business Partner to be created with a default role ,i.e CRM006. I can do this in GUI with the help of authorizations.
    But the same does not work in PCUI.
    My requirement is whenever a user creates a Business Partner, Role CRM006 automatically gets assigned to it.
    please sugest something.
    Help will be apreciated.
    Regards
    Sourabh Verma

    Hi PREMKUMAR LNS,
    you can easily implement BADI: BADI_CRM_BP_UIU_DEFAULTS
    IF_UIU_BP_DEFAULTS~GET_DEFAULT_VALUES
    and write something like this:
    assign cr_me->('TYPED_CONTEXT') to <typed_context>.
      if sy-subrc = 0.
        lr_typed_context ?= <typed_context>.
        if lr_typed_context is bound.
          assign lr_typed_context->('HEADER') to <context_node>.
          if sy-subrc = 0.
            try.
                lr_node            ?= <context_node>.
              catch cx_sy_move_cast_error.  "EC_NOHANDLER
            endtry.
            if lr_node is bound.
              lr_coll_wrapper ?= lr_node->collection_wrapper.
              if lr_coll_wrapper is bound.
                try.
                    lr_current ?= lr_coll_wrapper->get_current( ).
                    check lr_current is bound.
    controllo la tipologia di account
                    zbp_category = lr_current->get_property_as_string( 'BP_CATEGORY' ).
                   zbp_group    = lr_current->get_property_as_string( 'BP_GROUP' ).
                    if zbp_category = '1'.
                    elseif zbp_category = '2'.
                  Set default role at creation to "Relation"
                       break domino.
                        zobp_category = lr_current->get_property_as_string( 'BP_ROLE' ).
                        if  zobp_category is initial.
    Here you are setting the default role   
                      lr_current->set_property( iv_attr_name = 'BP_ROLE'
                                       iv_value = 'BUP002' ).
                        endif.
                    else.
                    endif.
                  catch cx_sy_move_cast_error.
                endtry.
              endif.
            endif.
          endif.
        endif.
      endif.

  • To set a default role according to the user.

    Hi,
    I would like to set different default roles according to users. For example, we have the following prerequisites:
    1) 3 roles: roleA | roleB | roleC (in this order).
    2) 3 differents users: user1, user2, user3.
    So, if I log-in with the user1, the default role should be the roleA; if I log-in with the user2, the default role should be the roleB; and so on.
    But I don't want to change the order of the roles using "sort priority" property.
    How can I do this?
    Thanks,
    Samantha.

    Hello Samantha,
    Does each of the users need to have each of the roles? If not you could just not assign the other roles except the one you want to display as default role (a assume you mean the role that is displayed first after logon).
    If each of your users need every role, I am afraid your requirement is not realizable unless you use the sort priority property. Why don't you want to use it in the first place?
    On possible yet circuitous way to meet your requirements would be the following:
    Create another role for each of your user(-group)s. Say in your case Role 1, Role 2 and Role 3 which are not defined as entry points.
    Assign roleA, roleB and roleC to Role 1 where roleA has the lowest sort priority; and assign user1 to role 1.
    Assign roleA, roleB, roleC to Role 2 where roleB has the lowest sort priority; and assign user 2 to Role 2
    and so on.
    Of course you need to use sort priority for that and I think thats hard to maintain. (probably not even what you are looking for)
    Maybe you can get a litle more concrete what you are trying to achieve.
    best regards
    Stefan

  • Automatically create a custom VPN connection and set default wallpaper in a deployment...

    Hey guys,
    I've been hard at work on creating a custom deployment for our company to allow us to start rolling out Windows 7 at the first of next month. I demonstrated it to the brass today and they were blown away. All they asked for was two changes and I admit I'm stumped. Hopefully someone here can help:
    1 - Set Default Wallpaper for *all* users: I've written a script to copy our company wallpaper to "C:\Windows\Web\Wallpaper" during a deployment. Is there any way I can modify that script to set that wallpaper as default for anyone who logs into that computer. Or if there's a non-script way to do this I'm all ears. I just need that wallpaper as default.
    2 - Create a VPN Connection for our company intranet: Right now this is being done manually in the Network and Sharing Center. All they are doing is choosing "Set up a new connection or network" >> "Connect to a workplace" >> "Use my Internet Connection (VPN)" and just entering our VPN server IP Address and giving the connection a name. Surely there has to be a way to automate this with a script or something? Can anyone help?
    3 - BONUS: This is just gravy, but if anyone can tell me how to "silently" or "automatically" disable the "Highlight newly installed programs" checkbox for all users using a script or something, that would be *wonderful*.
    Can anyone help me here?

    1. Go here http://blogs.technet.com/deploymentguys/archive/2008/06/06/useful-script-number-5-adjusting-the-default-user-registry-hive.aspx . There is a script that will set your default wallpaper for you.
    2. Does your company use a VPN client?
    3. This option is set in the Registry. You could create a startup script or add this to your Task Sequence. Create the Dword and set it to 0 to disable highlighting.
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Start_NotifyNewApps
    Rich
    http://deploywindows7.wordpress.com/
    Thanks for responding Rich,
    1. I actually came across that script when I was poking around the Deployment guys forums, but I noticed that it did a lot more than just set the Wallpaper. I was trying to "keep it simple" plus the registry editing sort of made me nervous. I guess I can give it a go and see if it can be made to work for me.
    2. Our company dos not use a VPN client. If you look back at my description of the process in bullet point #2 we are just using the Network and Sharing Center that is built into Windows 7 to create a simple VPN connection. That's why I'm so certain there has to be a way to automate this process. ll we are doing is entering an IP Address and giving the connection a name. Surely I can script that, or is there maybe some way to create the connection on one computer and save it as a file that I can then copy to each machine during my deployment?
    3. Thanks for answering my bonus one too. Please forgive my ignorance because I am new to a lot of this. I assume I can create a "file" with the proper registry settings that can be applied during deployment right? I've seen people crate files that do this and use the .reg extension. Do you know how to make one of these or can you link me to a tutorial that steps me through it?
    You could always edit the script to leave the other parts out.  Thanks for the clarification on the VPN Client, just wanted to make absolutely sure. Let me know how if the process you found works for you.
    For the reg key, you would want to create the key I described, add it to your scripts directory, and then add a Client Build Custom Task in StateRestore to set the key in the registry. You can do this by adding a RunLineCommand to the Task Sequence. Then the command would look like this
    cmd /c regedit /s %deployroot%\scripts\NameOfRegKey.reghttp://deploywindows7.wordpress.com/

  • GRC 10.0 - Auto Approve default roles

    Hello All,
    Could you please help out me in the below scenarios.
         1) We have maintained default roles in NBWC- Access Management - Default roles.
         Also set the parameter 2038 to Yes- Auto approve roles without approver.
    In MSMP we have maintained Escape path if approver is not found at the role level.
    As default roles have no approver maintained request is taking the Escape Path which should not happen.
    We just want to auto approve the defualt roles and other than defualt roles request should take escape path if no approver found.
         2) In other action its quite same as the above one.
         When we are using provisioning type REMOVE for role removal. Request also takes the Escape path as Defualt roles has no approver.
    Once the ,Manager at first stage is approved, request should close for the removal type access.
    Please advise. Thanks in advance.

    In your custom initiator, you need to have mapped out all the scenarios of which path each line item in your request goes to.
    The condition columns can be an array of attributes, i.e. Request Type, Role name, Role Connector (System the Role is in), Functional area etc.
    In your case, if you want "default roles" auto approved, easiest thing to so is create an empty path (i.e. No stages) and have the initiator set so that if the "Role Name" is "X" (i.e. your default role), go to the path with no stages.
    BRF plus Flate Rule - GRC Integration - Governance, Risk and Compliance - SCN Wiki

  • How to set default groupspace in webcenter.

    Hi All,
    I have 3 groupspaces configured for a user in webcenter .
    Groupspaces are A ,B and C .
    I want to set default groupspace A for every user whoever logged in this webcenter spaces .
    In groupspace A there are 3 pages A!,A2 and A3.
    I want to make A1 as a default landing for for this groupspace.
    Please provide some input .
    Thanks ,
    Arun.

    As far as i know there isn't an option "make default space", however i can think of a way to achieve what you want.
    Maybe there is an easier way but i haven't played alot with spaces...
    This how i would do this.
    1) Create your A space
    2) Add the authenticated user role to the A space so every logged in user has access to that space
    4) Create your pages
    3) Create a custom login page and redirect to your default page upon succesfull login.
    You need to write your own login because (as far as i know) there isn't a way to set a default landing page. By default the user always sees the last page he was on. When the user does his first login, he will be redirected to his personal space so you can overwrite this by creating a custom login and do the redirecting yourself.
    I don't know if there is a better option for this...
    It would be nice to investigate this... i'll make a todo for this :)

  • DEFAULT ROLE FOR USER

    I swich to Oracle11g express and create user
    CREATE USER LEO
    IDENTIFIED BY xy
    DEFAULT TABLESPACE USERS
    TEMPORARY TABLESPACE TEMP
    PROFILE DEFAULT
    ACCOUNT UNLOCK;
    -- 3 Roles for LEO
    GRANT AUTHENTICATEDUSER TO LEO;
    GRANT CONNECT TO LEO;
    GRANT FER_ADMIN TO LEO WITH ADMIN OPTION;
    ALTER USER LEO DEFAULT ROLE FER_ADMIN;
    -- 1 System Privilege for LEO
    GRANT CREATE SESSION TO LEO;
    -- 1 Tablespace Quota for LEO
    ALTER USER LEO QUOTA UNLIMITED ON USERS;
    and after login i check
    select * from SESSION_ROLES
    and i have none role
    if I set role all works fine.
    Why I doesn't have DEFAULT ROLE after login.
    Pleas for help .

    here is the solution
    default roles and grants
    Edited by: Leo Lakota on 4.10.2012 5:52

  • RE: Default role config in CUP

    Dear Experts,
    I got a problem with default role configuration. Please help me in resolving the issue.
    I want to configure defaults for all request types like new account and change account as well. Also I what the option "Create if user does not exist" to YES.
    This means when ever change account workflow is executed for the existing users, default roles are getting assigned redundantly. is there any way to fix this problem.
    My solution is to schedule "PRGN_COMPRESS_TIMES" job so that system will delete all redundant roles. Please advise if there  is any other alternative. Client is insisting to have the option "Create if user does not exist"in Auto provisioning enabled.
    I appreciate your help.
    Thanks,
    Raj

    Hi
    Set the below parameters it never assign the role for change request.
    it is working in our system.
    CUP---->Configuration->Roles>Default Roles-->Request type = New Hire

  • CRMD_ORDER: how to set default values for Requester and Change Manager

    Hello Folks,
    how do I set default values in TA crmd_order?
    I drew my organizational hierarchy using TAs bp and ppoma_crm.
    When a new Change Request (e. g. SDHF) is created, I want the four roles (Requester, Change Manager, IT Operator and Developer) to be set automatically, not manually.
    Both Requester (= Key User) and Change Manager are derivable. I did not find anything in SPRO neither in the OSS neither here.
    Points will be rewarded as a matter of course!
    Thanx in advance!

    Hi Dirk,
    look for Define Access Sequence & Define Partner Determination Procedure in SPRO and read the IMG Activity Documentation. You can find it in the Service Desk config, but it works for the other transaction types too.
    Basically, you create Access Sequences where you tell the Partner Determination Procedure where to look for the values for the Partner Function fields.
    The Access Sequence can use lots of sources for the information, including your org structure.
    regards,
    Jason

  • Set up Roles in ebs for Users?

    Hi
    I am creating a conversion for employee security. I was wondering if anyone has set up roles in ebs. I am attempting to get minimal employee data...just names and emp numbers. With that I will set up users. Now that's fine, but what I want is to set up roles for those users. Say a Buyer or Vendor. I want to classify them as such. And then have different responsibilities show up in the app.
    Can this be accomplished? Any insight would help.

    If I have understood this correctly, you could use RBAC (Role Based Access). This is more commonly known as User Management (product code UMX).
    The ony user with this role is initially SYSADMIN. However, you can use SYSADMIN to grant this role to other users.
    Once you have access to User Management, you can define a ROLE. ROLES can be hierarchical, so one ROLE can incorporate other roles.
    To achieve what I think you're trying to do, create a ROLE called ABC. Then make RESPONSIBILITIES X, Y and Z subordinate to that role. Respopnsibilities are specific type of roles anyway.
    Then ROLE ABC will contain responsibilities X, Y and Z.
    Still using the User Management responsibility, ASSIGN ROLE ABC to a user. Then go into 'standard' System Administrator. Navigate to SECURITY > USER >DEFINE and query this user. You will NOT see the responsibilites X, Y, Z because the form defaults to the DIRECT RESPONSIBILITIES tab. These are the responsibilities assigned via System Administrator. BUT - use the tab called INDIRECT RESPONSIBILITIES and you will see X, Y and Z.
    Apply this process to multiple users and you have a solution!
    Regards
    Tim

  • GP: Process default Roles Cleared when transported

    Hi,
         I have created an impersonalized form that triggers a process in guided procedures.
    I have set the default roles for process as impersonalized form needs all the roles to be defaulted.
    Its working fine in the test system. When I transport this to Production, the default roles get cleared. I get an error message when the form is submitted - ERROR_NO_DEFAULT_USER_FOR_ROLE .
    Version: Adobe Livecycle designer 7.1
    NW2004s SP15
    Thank you,
    Vasu
    Edited by: Subramanya Srinivas Mullapudi on Feb 6, 2009 6:41 PM

    But as I'm using an Impersonalized form, even when I assign the default roles, the impersonalized form still pointing to the process with no default roles. Its not recognizing the default roles assigned in administration.
    I cannot change the process to add default roles (in production). So whenever I submit the form I get the error "ERROR_NO_DEFAULT_USER_FOR_ROLE"
    Complete error:
    SAP Guided Procedures - Error Page
       What happened?
       An internal error occurred while processing your request
       What can you do?
       Try again later. If the problem persists, contact your system
       administrator.
      Additional Error Information
       FormPostprocessor.ERROR_NO_DEFAULT_USER_FOR_ROLE
       com.sap.caf.eu.gp.base.exception.EngineException:
       FormPostprocessor.ERROR_NO_DEFAULT_USER_FOR_ROLE at
       com.sap.caf.eu.gp.model.iforms.postproc.FormPostprocessor.createProcessRoleInstance(FormPostprocessor.java:176)
    at
       com.sap.caf.eu.gp.model.iforms.postproc.FormPostprocessor.prepareProcessRoles(FormPostprocessor.java:157)
    at
       com.sap.caf.eu.gp.model.iforms.postproc.FormPostprocessor.initiateProcess(FormPostprocessor.java:289)
    at
       com.sap.caf.eu.gp.model.iforms.postproc.FormPostprocessor.processData(FormPostprocessor.java:564)
    at
       com.sap.caf.eu.gp.model.iforms.FormPostProcessor.doPost(FormPostProcessor.java:182)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at
       javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at
       com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
    at
       com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at
       com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
    at
       com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at
       com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
    at
       com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
       at
       com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at
       com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at
       com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
       at
       java.security.AccessController.doPrivileged(AccessController.java:207)
       at
       com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
    at
       com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
       Sorry for any inconvenence

  • Default role with membership login

    I am creating a new instance of our portal. Right now, I have the login set to membership. If I create a new user, I get a serious desktop error. (error below)
    I noticed when I go into the admin this new user has no role assigned. How do I set it up so the user would get the look from default?
    09/17/2003 09:06:51:387 AM EDT: Thread[Thread-185,5,main]
    ERROR: JspRequestDispatcher:
    javax.servlet.ServletException: Problem processing JSP: /header.jsp
    at com.sun.portal.providers.jsp.JspRequestDispatcher.getJspResource(JspRequestDispatcher.ja
    a:164)
    at com.sun.portal.providers.jsp.JspRequestDispatcher.include(JspRequestDispatcher.java:97)
    at org.apache.jasper.runtime.PageContextImpl.include(PageContextImpl.java:408)
    at jsps.etc._opt._SUNWps._desktop._iConnect._default_en_US._JSPTabContainer._html._tab_js
    ._jspService(_tab_jsp.java:85)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sun.portal.providers.jsp.JspServletWrapper.service(JspServletWrapper.java:182)
    at com.sun.portal.providers.jsp.JSPProvider.processJspFile(JSPProvider.java:692)
    at com.sun.portal.providers.jsp.JSPProvider.processJspFile(JSPProvider.java:672)
    at com.sun.portal.providers.jsp.JSPProvider.getContent(JSPProvider.java:471)
    at com.sun.portal.providers.containers.jsp.tab.JSPTabContainerProvider.getContent(JSPTabCon
    ainerProvider.java:535)
    at com.sun.portal.desktop.context.PSContainerProviderContext.getContent(PSContainerProvider
    ontext.java:367)
    at com.sun.portal.desktop.context.PSDesktopContext.getContent(PSDesktopContext.java:957)
    at com.sun.portal.desktop.DesktopServlet.doGetPost(DesktopServlet.java:493)
    at com.sun.portal.desktop.DesktopServlet.service(DesktopServlet.java:303)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.iplanet.server.http.servlet.NSServletRunner.invokeServletService(NSServletRunner.jav
    :897)
    at com.iplanet.server.http.servlet.WebApplication.service(WebApplication.java:1065)
    at com.iplanet.server.http.servlet.NSServletRunner.ServiceWebApp(NSServletRunner.java:959)
    09/17/2003 09:06:51:402 AM EDT: Thread[Thread-185,5,main]
    ERROR: DesktopServlet.handleException()
    com.sun.portal.providers.ProviderException: JSPProvider.processJSPFile(): jsp=tab.jsp, java.lang.In
    exOutOfBoundsException: Index: 0, Size: 0
    at com.sun.portal.providers.jsp.JSPProvider.processJspFile(JSPProvider.java:709)
    at com.sun.portal.providers.jsp.JSPProvider.processJspFile(JSPProvider.java:672)
    at com.sun.portal.providers.jsp.JSPProvider.getContent(JSPProvider.java:471)
    at com.sun.portal.providers.containers.jsp.tab.JSPTabContainerProvider.getContent(JSPTabCon
    ainerProvider.java:535)
    at com.sun.portal.desktop.context.PSContainerProviderContext.getContent(PSContainerProvider
    ontext.java:367)
    at com.sun.portal.desktop.context.PSDesktopContext.getContent(PSDesktopContext.java:957)
    at com.sun.portal.desktop.DesktopServlet.doGetPost(DesktopServlet.java:493)
    at com.sun.portal.desktop.DesktopServlet.service(DesktopServlet.java:303)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.iplanet.server.http.servlet.NSServletRunner.invokeServletService(NSServletRunner.jav
    :897)
    at com.iplanet.server.http.servlet.WebApplication.service(WebApplication.java:1065)
    at com.iplanet.server.http.servlet.NSServletRunner.ServiceWebApp(NSServletRunner.java:959)
    java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
    at java.util.ArrayList.RangeCheck(ArrayList.java:486)
    at java.util.ArrayList.get(ArrayList.java:302)
    at com.sun.portal.desktop.util.SmartList.get(SmartList.java:132)
    at com.sun.portal.providers.containers.jsp.tab.util.TabData.getSelectedTabName(TabData.java
    157)
    at com.sun.portal.providers.containers.jsp.tab.JSPTabContainerProvider.getSelectedTabName(J
    PTabContainerProvider.java:344)
    at com.sun.portal.desktop.taglib.container.tab.GetSelectedTabNameTag.doStartTag(GetSelected
    abNameTag.java:21)
    at jsps.etc._opt._SUNWps._desktop._iConnect._default_en_US._JSPTabContainer._html._tab_js
    ._jspService(_tab_jsp.java:130)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sun.portal.providers.jsp.JspServletWrapper.service(JspServletWrapper.java:182)
    at com.sun.portal.providers.jsp.JSPProvider.processJspFile(JSPProvider.java:692)
    at com.sun.portal.providers.jsp.JSPProvider.processJspFile(JSPProvider.java:672)
    at com.sun.portal.providers.jsp.JSPProvider.getContent(JSPProvider.java:471)
    at com.sun.portal.providers.containers.jsp.tab.JSPTabContainerProvider.getContent(JSPTabCon
    ainerProvider.java:535)
    at com.sun.portal.desktop.context.PSContainerProviderContext.getContent(PSContainerProvider
    ontext.java:367)
    at com.sun.portal.desktop.context.PSDesktopContext.getContent(PSDesktopContext.java:957)
    at com.sun.portal.desktop.DesktopServlet.doGetPost(DesktopServlet.java:493)
    at com.sun.portal.desktop.DesktopServlet.service(DesktopServlet.java:303)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.iplanet.server.http.servlet.NSServletRunner.invokeServletService(NSServletRunner.jav
    :897)
    at com.iplanet.server.http.servlet.WebApplication.service(WebApplication.java:1065)
    at com.iplanet.server.http.servlet.NSServletRunner.ServiceWebApp(NSServletRunner.java:959)

    It seems like "serious desktop error" is actually
    caused by header.jsp and has nothing to do
    with the fact that user has no roles assigned
    (which is the "default" role for new portal user)
    Cheers,
    Alex :-)

  • How to set default language for Portal?

    Hi All,
    We use EP6.
    Default language is not defined and therefore is being set by the browser's language.
    Where do I set default language for all users?
    (I don't want that the users will be able to change it by themselves by browser/EU role).
    I tried to set the "request.mandatorylanguage" and
    "request.mandatorycountry" in prtDefault.properties but it didn't help.
    Thanks,
    Omri

    Hi Omri,
    are those to parameters
    request.defaultlanguage=...
    request.defaultcountry=...
    set in the prtDefault.properties, and the J2EE Server restarted after the change?
    Check out this thread and the link given there for more info: HOW to define the default language in the portal
    Hope this helps,
    Robert

  • Default roles... by default

    Is there a way to have a role be default by default. In other words rather than
    1. grant a role to a user
    and then
    2. make that role default for each user granted the role (i.e. ALTER USER user_name DEFAULT ROLE role_name;)
    is there a way to have #2 above happen automatically when granting a role to a user? So that by default, roles granted are enabled as a default role for the user?
    Thanks.

    when granting a role to a user? So that by default,
    roles granted are enabled as a default role for the user?The user attribute of sys.user$.defrole seem to play a part in whether subsequent grant <role> to <theuser> commands will put roles on the "default roles" list or not. But as far as I know this is not (widely) documented.
    What you could do is to once issue
    alter user <theuser> default role all | all except <list of roles> This will set defrole to 1 and 3, respectively, and subsequent grants will make roles default roles for the user. Using the grant command with none | <list of roles> implies that subsequent role grants will not be enabled by default.
    (So, somebody issued another alter user user default role command with none or role_name, before you granted another role to the user.
    Also, I've mentioned this in another post just recently:
    Re: user can not do select,insert,update,delete on view when user has the role

Maybe you are looking for

  • Checking free space in tables across all the tables in database

    Hello , I have the below script which Gives the Free Blocks , Unused Blocks for the Tables of the Current User ( In which schema the script is run). How can this be modified so that it loops through all the schema tables in the database. ( Got this s

  • Read record from parent table

    Hello, I have a table which is linked (using FK) with a number of other tables which are linked with other tables, etc. (like a tree). Using ADO.NET EF provider within ODAC 11.2.0.3 Release 5 I am trying to get a record from the root table. I coded a

  • Help menu "Search" box missing in Dreamweaver 5.5 for Mac

    I've just upgraded from CS3 to CS5.5 on Mac OS 10.6.8 and am still finding my way around the new menus.  The easiest way to find a menu command is usually to use the spotlight type "search" box that appears at the top of the help menu, which flags up

  • IPhone 4 videos stutter

    When I share the iP 4 videos to iTunes (960 x 540 setting) they stutter slightly. As if there is some problem with the frame rate. It is most notable in panning. There is no such stutter when I view the original clip. IP 4 videos are 30 fps. I live i

  • Playlist Missing

    With all software up to date on Macbook Pro, iPad Air and I phone, synched and backed up...when I go to MUSIC on iPhone or iPad Air I have no PLAYLISTS.  The same applies to both IPAD AIR and IPHONE, for my question I will use IPAD AIR. I can only ac