New Portal Group

Hi all,
How to create a new Portal Group using WebDynpro java?
Regards,
   Vinod V

Hi Vinod,
got through:
[https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d0eb5a9d-4256-2b10-79b9-bb0b797ccf73]
Regards,
Khushboo

Similar Messages

  • How do i assign new portal desktop to the specific user or group?

    Hi all
    I created new portal desktop, and i want to assign it to the specific user or group.
    Can anybody help me regarding this.
    Help appreciated
    Thx
    PRadeep

    Hi Pradeep.,
    1. add a new 'IF' rule.
    2. Edit it in the edit section (above the 'IF's part) to 'user' (in the dropdownlistbox) = <userid> (free text).
    3. Press 'Apply'.
    4. Edit the 'Then' section of the new IF to show the new portal desktop. You can add the full desktop's id by right clicking on it in the 'browse content' section if the screen (where you opened the Display Rule from) and choosing 'add portal desktop to expression'.
    5. Press 'Apply'.
    6. Move your 'IF' up. Display rules are evaluated from top to bottom until the first one that applies.
    Hope that helps,
    Yoav.

  • How do you create a new resource group from the new portal?

    There's no option for new resource group when you click the "+" button. Am I missing something?

    Hi mticb,
    As far as I know, we couldn't create an empty resource group in azure preview portal, please vote this similar feedback at:
    http://feedback.azure.com/forums/223579-azure-preview-portal/suggestions/6182477-create-resource-groups, sorry for any inconvenience.
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Is there a way to export settings for a resource group in new portal?

    The old portal allowed you to export the XML for the settings for a VNET. I don't see the equivalent feature in the new portal. I'd like to be able to download a copy of the settings for an entire resource group to use as a template file for creation of
    a new resource group deployment using the New-AzureResourceGroupDeployment PowerShell script.

    Hi,
    Thanks for posting here.
    We have the syntax for saving the settings for a resourcegroup on new portal but that saves it on JSON file.
    Parameter Set: Default
    Save-AzureResourceGroupGalleryTemplate [-Identity] <String> [[-Path] <String> ] [-Force] [ <CommonParameters>]
    Ref: https://msdn.microsoft.com/en-us/library/dn654590.aspx
    Hope this helps you.
    Girish Prajwal

  • New Portal Theme not showing up in list

    Hello fellow experts,
    I'm using EP 7 sp10...I've created a new portal theme, it shows up on the Portal Display page, under my Themes, however it does not show up in the drop down list (Content admin/Portal Content/portal users/standard portal users/every user core role) as an option for a portal theme...
    Please advise!
    Sincerely,

    Hi Scott,
    Please very these steps,
    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.

  • Portal Groups Creation

    Hi
    We are preparing to import a Portal into our UAT environment for testing. As part of the creation of the Portal we have created a number of Portal Groups which we intend migrating. As part of this we will also like to create a ldif file to assign the various users to the relevant Portal Groups.
    Therefore I have 2 questions
    1) Is is possible to export the Portal as well as the Portal Groups ?
    2) Is there a way to assign users to Portal Groups using, for example, LDIF. We will have 10,000 users to assign so need to find a way of doing this automatically.
    Any help will be much appreciated?
    Kevin

    #!/bin/sh
    # This script is used to export users/groups and portal groups from a
    # source OID to a target OID. The import into the target OID is done by
    # the import_oid.sh script.
    # The script:
    # 1) unsets NLS_LANG, sets ORACLE_HOME
    # 2) ldapsearch (output to ldif file) all users
    # 3) ldapsearch (output to ldif file) all portal groups
    # 4) Remove 'authPassword' fields from the ldif for users
    # 5) Change the Portal ID in the portal groups ldif file
    echo "************************ BEGIN ************************************"
    echo - This script will export users and groups from OID to ldif files.
    echo - This script will modify the portal ID, remove authPassword fields.
    echo Use import_oid.sh to import users and groups to target OID.
    echo "************************ BEGIN ************************************"
    #variables
    oh=/oracle/10.2/infra10
    source_hostname=""
    port=""
    target_dir="/oracle/10.2/oid_mig/"
    log_file_users=export_users.log
    log_file_groups=export_groups.log
    old_portal_id=""
    new_portal_id=""
    orcladmin=""
    orcl_pwd=""
    group=""
    echo "Please provide the source LDAP hostname: "
    read source_hostname
    if [ "$source_hostname" = "MyOIDServer" ]
    then
         port=389
         orcl_pwd="OrclAdminPassword"
         base_dn="dc=MyCompany,dc=com"
    fi
    echo "Please provide the group you want to export (*=all groups, group1*, group2*,...)"
    read group
    #echo "Please provide the LDAP port: "
    #read port
    #echo "Please provide the orcladmin password: "
    #read orcl_pwd
    # You can find the portal ID through OID Admin console. Go to
    # cn=groups,dc=oracle,dc=com you will find the ID there.
    echo "Please provide the old Portal ID: "
    read old_portal_id
    echo "Please provide the new Portal ID: "
    read new_portal_id
    ORACLE_HOME=/oracle/10.2/infra10
    export ORACLE_HOME
    cd $ORACLE_HOME/bin
    echo ORACLE_HOME = $ORACLE_HOME
    PATH=$ORACLE_HOME/bin:$PATH
    export PATH
    #NLS_LANG=american_america.UTF8
    #export NLS_LANG
    unset NLS_LANG
    #exporting users
    echo ----- exporting users "cn=users,dc=MyCompany,dc=com" -------
    ./ldapsearch -h $source_hostname -p $port -D "cn=orcladmin" -w $orcl_pwd -L -s one -b "cn=users,"$base_dn "(objectclass=orcluserv2)" "*" > /oracle/10.2/oid_mig/users.ldif
    #exporting groups
    echo ----- exporting groups "cn=groups,dc=MyCompany,dc=com" -------
    ./ldapsearch -h $source_hostname -p $port -D "cn=orcladmin" -w $orcl_pwd -L -s one -b "cn=groups,"$base_dn "(objectclass=*)" "*" > /oracle/10.2/oid_mig/groups.ldif
    #exporting groups portal
    echo ----- exporting portal groups "cn=portal."$old_portal_id",cn=groups,dc=MyCompany,dc=com" -------
    ./ldapsearch -h $source_hostname -p $port -X -D "cn=orcladmin" -w $orcl_pwd -s sub -b "cn=portal."$old_portal_id",cn=groups,"$base_dn "cn="$group > /oracle/10.2/oid_mig/groups_portal.xml
    #removing authpassword fields from users
    echo ----- removing authpassword fields from users -----
    cat /oracle/10.2/oid_mig/users.ldif | grep -v authpassword > /oracle/10.2/oid_mig/auth_removed_users.ldif
    # changing the PORTAL ID from $old_portal_id TO $new_portal_id
    echo ----- changing the portal ID -----
    cat /oracle/10.2/oid_mig/groups_portal.xml | sed -e "s/$old_portal_id/$new_portal_id/" > /oracle/10.2/oid_mig/groups_mod.xml
    echo "***************************************** END *********************************************"
    echo Users have been exported to /oracle/10.2/oid_mig/users.ldif
    echo Groups have been exported to /oracle/10.2/oid_mig/groups.ldif
    echo Portal Groups have been exported to /oracle/10.2/oid_mig/groups_portal.ldif
    echo Users have authPassword removed in /oracle/10.2/oid_mig/auth_removed_users.ldif
    echo Portal groups have their ID changed by this script and new groups are in /oracle/10.2/oid_mig/groups_mod.ldif
    echo "***************************************** END *********************************************"

  • Reconfigure default portal group

    By default portal group name is constructed with cn=portal.$timestamp. I'm trying to re-configure it so it will simply use cn=portal,cn=xxx....
    Anyone has the procedures on how to do it ?
    I have updated OID/SSO tab in portal, created a new entry in orclapplicationcommonname=,cn=Portal,cn=Products,cn=OracleContext and a new entry in portal group container (cn=Groups, dc=...). However it still appears that OID is looking up the default group.

    Hernando,
    We are actually doing an parallel build and would like to migrate the OID entries from 9026 to 1012 repository. In previous version we only have dn=portal and we would like to keep it the same.
    It is not an important task but just wondering if anyone has done it.

  • Data Portal Group Collapsing

    Hello! I would like to know if there is a way to programatically collapse each group in the Data Portal. I am creating many new groups programatically and also have many groups in the portal. After each is complete, I must either manually collapse each group or scroll down. This isn't a big problem, but it would be great if my script could collapse the groups before finishing.
    Thank you!
    Julia

    Hi Beri,
    As of DIAdem 11.0 and later there is a new "Portal" object with which you can remote-control what is shown in the Data Portal.  The following command will close all the the Channel Groups:
    Call Portal.Structure.Collapse(Data.Root) 
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • Bea Portal Group and Group selection / um:getPorperty

    Hi,
    I would like to know if it is possible to set the default group
    in which <um:getProperty> looks into when the user does not have
    the requested property set into his profile.
    I noticed that by default it looks into the current group portal.
    However I would like to make it look into a specific sub group
    of the group portal.
    In the same way there are checks to dertermine if a user belongs to
    several portal groups, I would like to extend these checks and include
    sub groups in the tests and selection.
    I saw that the webflow uses GroupFormProcessor and GroupProcessor but
    couldn't find the source code to see what needs to be initialized for
    <um:getProperty> to work correclty.
    I saw the successor attribute in <um:getProfile>, but I would like to
    know if there's a way to avoid specifying it each time... by setting a
    value in the session for instance ?
    Thanks for your help,
    Best Regards,
    Thierry

    Hello Thierry,
    You probably want to set the explicit successor in the session. A
    successor is a group from which a user inherits properties. An explicit
    successor is one that is specified in the getProperty() call underlying the
    <um:getProperty> tag. Just for your information, this is as opposed to an
    implicit successor, which is persisted for the user and is associated with a
    property set. You can use the methods of ProfileWrapper to persist an
    implicit successor for a user for a specific property set.
    The portal framework sets the ProfileWrapper in the session using the
    com.bea.p13n.usermgmt.SessionHelper.putProfileInSession() method. It sets
    the explict successor for this profile to be equal to the group that was
    selected by the user to apply for this portal session when they logged on
    (if they are only a member of 1 group, then they were not prompted for which
    group...the group was simpley set as the explicit successor). The call to
    SessionHelper.putProfileInSession() is done in the PostLoginProcessor in the
    portal security webflow (see the webflow in your EBCC).
    You can override this by using SessionHelper.putProfileInSession()
    yourself or by putting <um:getProfile> into your portal.jsp page.
    <um:getProfile> does the same thing (uses
    SessionHelper.putProfileInSession() to put the ProfileWrapper into the
    session).
    If I were you, I'd put <um:getProfile> with session scope at the top of
    portal.jsp and use the group that you are interested in as the explicit
    successor.
    See the <um:getProfile> docs at
    http://edocs.bea.com/wlp/docs70/jsp/p13njsp.htm#1001358
    "Thierry Bensoussan" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    I would like to know if it is possible to set the default group
    in which <um:getProperty> looks into when the user does not have
    the requested property set into his profile.
    I noticed that by default it looks into the current group portal.
    However I would like to make it look into a specific sub group
    of the group portal.
    In the same way there are checks to dertermine if a user belongs to
    several portal groups, I would like to extend these checks and include
    sub groups in the tests and selection.
    I saw that the webflow uses GroupFormProcessor and GroupProcessor but
    couldn't find the source code to see what needs to be initialized for
    <um:getProperty> to work correclty.
    I saw the successor attribute in <um:getProfile>, but I would like to
    know if there's a way to avoid specifying it each time... by setting a
    value in the session for instance ?
    Thanks for your help,
    Best Regards,
    Thierry

  • UWL - Subsitution rules: create new tasks group

    Hi all,
    When creating new substitution rules in UWL, we can choose between three task groups (All, Disciplinary, Professional).
    Is it possible to create new task grouping, and so, group task by task type/ID ? How can I define new grouping?
    Thanks a lot in advance,
    Cheers,
    Olivier
    Solved.
    Edited by: Olivier Gaspard on Aug 26, 2009 12:35 PM

    This can be achieved by maintaining task classes and assigning substitution profiles to task classes as per your needs.
    Then you can assign the required tasks to the task classes.
    There is a very well explained document on this scenario.
    Check this document to achieve what you are looking for:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/109d2ea2-035c-2c10-06be-f6165ba7af11?QuickLink=index&overridelayout=true
    Hope it helps !!
    Thanks,
    Shanti

  • Portal 4 / When Portal Groups collide

    So if a user if defined to more than one group
    Say Admin and group 2
    and both groups have a portal group how does it decide what should be shown

    Michael,
    The user will be prompted for choosing a group at login time.
    During the login phase, the portal webflow performs a check to
    see if the user belongs to more than one group for which a group
    portal has been defined. If so, the portal webflow will forwards
    to the need_group.jsp page.
    Michel.
    "Michael C Ford " <[email protected]> wrote in message news:[email protected]..
    >
    So if a user if defined to more than one group
    Say Admin and group 2
    and both groups have a portal group how does it decide what should be shown

  • How to open NEW PORTAL PAGE from current portal page ?

    I'm very confuse with my problem.
    I have 2 portal page.
    portal page I has 2 portlet : portlet A & portlet C.
    portal page II has 2 portlet : portlet B & portlet C.
    Now my customer want : start with portal page I, when i submit portlet A, program will open portal page II.
    I don't know the way to call new portal page from current portal page. Help me, please.
    Thanks.
    Edited by: young_hero on Oct 30, 2008 1:12 AM

    Could you please help me how to call a .html page
    from a Pl/Sql procedure or trigger ?
    Thanks & Regards
    Kalyani KothaKalyani,
    Could you explain a little more exactly what you're trying to acheive? I'm not quite sure what it is you're asking for. Are you asking: "how would you/can you open a browser and direct it to a URL with PL/SQL?"
    Earl

  • How do I set up a new sub group email on the macbook ?

    I will begin by freely admitting that I am not computer literate...I switch on and use. The present email has been in existence for so long I can't remember how it was set up, think the laptop did it by itself.
    The problem...
    I want to set up a sub group email address for the small club that I am treasurer for and then use this so members can pay subscriptions via paypal.
    I followed the yahoo instructions to set a new email address and this was OK, the address is shown at the foot of the my account page on yahoo as the only sub group. ISP is BTinternet.com so that uses yahoo.
    Easy so far.
    Remember opening sentence !
    How do I set up my existing email page to show when a message has been received on the new sub group email. I use macmail on a macbook , not PC outlookexpress. In other words, how do I open/access/show this new email on the macbook ? I don't want to compromise the existing email set-up, just have a 'secondary' or 'sub group' account.
    Thanks
    Brian

    Yes, you just setup another account in Mail, on the Second page where it has Description you need another Name in there than the Other one has.
    http://email.about.com/od/macosxmailtips/qt/access_aol.htm
    Message was edited by: BDAqua

  • Creating a new portal in a new domain - no baseportal template

    Using Weblogic Platform 7.0 on Solaris 8, I'm trying to work through the
    procedure at http://edocs.bea.com/wlp/docs70/dev/newdom.htm "Creating a
    new portal in a new domain."
    Step 1 "Creating the new domain" goes fine. I can start the portal
    server using WL/user_projects/domainname/startPortal.sh and connect to
    its console at http://server:7501/console.
    In Step 2 "Create the new portal", I start up ebcc.sh, open the project,
    and run the Portal Wizard. I get as far as "Portal Templates". The
    portal templates comes up empty; there is no baseportal icon, and I
    can't go any further.
    What's wrong?!?!
    Larry Mulcahy [email protected] [email protected]
    http://www.nyx.net/~lmulcahy/ http://www.frii.net/~lmulcahy/
    PGP key at http://wwwkeys.pgp.net:11371/pks/lookup?op=get&search=0xE6F89645
    "I like Linux, but I don't have any part of my body pierced." Roland Latour

    Michael -
    See this document. It should help you out.
    http://edocs.bea.com/platform/docs81/confgwiz/startcw.html#1049231
    Regards,
    Kunal
    "Michael Meyer" <[email protected]> wrote:
    hi,
    I am running BEA Weblogic Portal 8.1 on a linux machine without any grafical
    user interface. On Windows I was using the 'Configuration Wizard' to
    create
    a new domain. Can someone please tell me, how I can create a new domain
    without an grafical user interface? Are there any command line tools?
    Michael

  • Error while adding new security group in content server

    Hi,
    When i am trying to add new security group in UCM using User Admin applet i am getting following error:
    Event generated by user 'weblogic' at host 'vpunvfpctnsz-07.ad.infosys.com:16200'. Unable to execute service ADD_GROUP and function insertGroupRow.
    Unable to execute query 'IroleDefinition(INSERT INTO RoleDefinition (dGroupName, dRoleName, dPrivilege, dRoleDisplayName)
    values ('Test_111', 'admin', 0, ''))'. ORA-00001: unique constraint (DEV_OCS.PK_ROLEDEFINITION) violated
    java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_OCS.PK_ROLEDEFINITION) violated. [ Details ]
    An error has occurred. The stack trace below shows more information.
    !csUserEventMessage,weblogic,vpunvfpctnsz-07.ad.infosys.com:16200!$!csServiceDataException,ADD_GROUP,insertGroupRow!$!csDbUnableToExecuteQuery,IroleDefinition(INSERT INTO RoleDefinition (dGroupName\, dRoleName\, dPrivilege\, dRoleDisplayName)<br>          values ('Test_111'\, 'admin'\, 0\, ''))!$ORA-00001: unique constraint (DEV_OCS.PK_ROLEDEFINITION) violated<br>!syJavaExceptionWrapper,java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_OCS.PK_ROLEDEFINITION) violated<br>
    intradoc.common.ServiceException: !csServiceDataException,ADD_GROUP,insertGroupRow!$
    at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2071)
    at intradoc.server.Service.buildServiceException(Service.java:2207)
    at intradoc.server.Service.createServiceExceptionEx(Service.java:2201)
    at intradoc.server.Service.createServiceException(Service.java:2196)
    at intradoc.server.ServiceRequestImplementor.handleActionException(ServiceRequestImplementor.java:1736)
    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1691)
    at intradoc.server.Service.doAction(Service.java:476)
    at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1439)
    at intradoc.server.Service.doActions(Service.java:471)
    at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1371)
    at intradoc.server.Service.executeActions(Service.java:457)
    at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:723)
    at intradoc.server.Service.doRequest(Service.java:1865)
    at intradoc.server.ServiceManager.processCommand(ServiceManager.java:435)
    at intradoc.server.IdcServerThread.processRequest(IdcServerThread.java:265)
    at intradoc.idcwls.IdcServletRequestUtils.doRequest(IdcServletRequestUtils.java:1332)
    at intradoc.idcwls.IdcServletRequestUtils.processFilterEvent(IdcServletRequestUtils.java:1678)
    at intradoc.idcwls.IdcIntegrateWrapper.processFilterEvent(IdcIntegrateWrapper.java:221)
    at sun.reflect.GeneratedMethodAccessor120.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)
    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
    at idcservlet.ServletUtils.executeContentServerIntegrateMethodOnConfig(ServletUtils.java:1592)
    at idcservlet.IdcFilter.doFilter(IdcFilter.java:330)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: intradoc.data.DataException: !csDbUnableToExecuteQuery,IroleDefinition(INSERT INTO RoleDefinition (dGroupName\, dRoleName\, dPrivilege\, dRoleDisplayName)
    *          values ('Test_111'\, 'admin'\, 0\, ''))!$ORA-00001: unique constraint (DEV_OCS.PK_ROLEDEFINITION) violated* at intradoc.jdbc.JdbcWorkspace.handleSQLException(JdbcWorkspace.java:2441)
    at intradoc.jdbc.JdbcWorkspace.execute(JdbcWorkspace.java:584)
    at intradoc.server.UserService.insertGroupRow(UserService.java:1201)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
    at intradoc.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:310)
    at intradoc.common.ClassHelperUtils.executeMethod(ClassHelperUtils.java:295)
    at intradoc.server.Service.doCodeEx(Service.java:549)
    at intradoc.server.Service.doCode(Service.java:504)
    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1622)
    ... 39 more
    Caused by: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_OCS.PK_ROLEDEFINITION) violated
    at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:89)
    at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:135)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:210)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:473)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:423)
    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1095)
    at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:193)
    at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:1028)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1379)
    at oracle.jdbc.driver.OracleStatement.doScrollExecuteCommon(OracleStatement.java:5846)
    at oracle.jdbc.driver.OracleStatement.doScrollStmtExecuteQuery(OracleStatement.java:5989)
    at oracle.jdbc.driver.OracleStatement.executeUpdateInternal(OracleStatement.java:2012)
    at oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:1958)
    at oracle.jdbc.driver.OracleStatementWrapper.executeUpdate(OracleStatementWrapper.java:301)
    at weblogic.jdbc.wrapper.Statement.executeUpdate(Statement.java:503)
    at intradoc.jdbc.JdbcWorkspace.execute(JdbcWorkspace.java:564)
    ... 50 more
    I checked in database , the security group Test_111 is not present in ROLEDEFINITION table.
    What could be the issue?
    Regards,
    Minal

    1) Try importing CMU bundle with 'Overwrite Duplicates' option unchecked .
    2) In the CMU bundle, open file roles_guest.hda and see if 'guest' role has access to any group that start with special character or group you haven't created in the system..
    Eg: guest
    #AppsGroup
    0
    Also open securitygroups folder in CMU bundle, and see if you can find any groups that starts with special character or group you haven't created in the system.
    3) Identify that group and execute below query in the UCM database.
    select * from roledefinition where dgroupname= '#AppsGroup';
    Replace '#AppsGroup' with the groupname you identified.
    4) Solution would be to delete all the rows with dgroupname= '#AppsGroup' from the 'roledefinition' table.
    delete from roledefinition where dgroupname= '#AppsGroup';
    Replace '#AppsGroup' with the groupname you identified.

Maybe you are looking for