Can I have a role inheriting another role in weblogic 9?

I have two global roles: AppUser and AppAdmin. An AppAdmin is an AppUser. Is it possible to configure this fact in weblogic 9?
Here is what I tried. I added AppUser and AppAdmin as global roles using the wl9 console. Then I tried to add a condition of type Role for AppUser and set the Role Argument Name to AppAdmin (to tell weblogic that any user that has the AppAdmin role also has the AppUser role), however, when I save the changes I get the following error message: Role tokens are not permitted in role expressions.
The help pages for the screens don't explain in detail each type of conditions.

That would be great as tested further with a few files as not only have external drive backup I also use Backblaze remote service and just requested a few test files to be returned for uploading, which both worked fine.
It's seems to be the hard drive it's not recognising PS and LR CC
Will keep in touch if have any further thoughts
Barrie
Sent from my iPad
http://500px.com/bazhome97
http://www.flickr.com/people/bazhome97/
Https://twitter.com/BazHome97

Similar Messages

  • How to move workbooks from one role to another role

    Hi experts,
    I need few inputs from your side. I have a few workbooks in different roles, i need to move all workbooks into singel role.
    Let say role 1 has 3 workbooks and role 2 has 4 workbooks. Now i need to move the 7 workbooks in new role3. I have a role3.
    after moving the workbooks into role3, i need to delete the workbooks in role 1 &2.
    Can you please anybody give me the inputs. how to move the workbooks.
    another thing is i dont have authorization for PFCG. It is only for developmetn system.
    Thanks in adance.
    surendra

    Hi Surendra,
    The "Save as" option is the best solution (I guess the only solution) for your requirements. Once you have moved the workbooks new role you can delete the old ones.
    Bye
    Dinesh

  • Can I have a form inside another form?

    Hi!
    Is it possible to have a form inside another form?
    Regards,
    Filipa

    I think I'm messing up everything and i'm confused with how jsf works.
    I've noticed now that my problem doen't have todo with if i'm usin one form or nested forms :(
    The problem is (as i understood) that if the backing bean that I'm using for the chart part is a request chart, every time i submit the form a new instance of the bean is created and so the initialization of the selected checkboxes is redone.
    How can I avoid this? I would like to have only the choosen checkboxes selected.
    Here is the jsp code I'm using:
    <h:form>
    <h:panelGrid id="selectMenus" columns="2" style="margin-bottom:10px">
         <h:panelGroup style="margin-right:5px">
              <h:selectOneMenu id="projectSelectBox"
                   value="#{chartTypesBean.selectedProject}" onchange="submit()">
                   <f:selectItems value="#{chartTypesBean.projects}" />
              </h:selectOneMenu>
         </h:panelGroup>
         <h:panelGroup>
              <h:selectOneMenu id="chartSelectBox"
                   value="#{chartTypesBean.selectedProjectChart}" onchange="submit()">
                   <f:selectItems value="#{chartTypesBean.projectCharts}" />
              </h:selectOneMenu>
         </h:panelGroup>
    </h:panelGrid>
    <h:panelGrid id="calcByDay_grid" columns="2"
         rendered="#{chartTypesBean.lineRendered}">
         <h:panelGroup>
              <jd:barChart3d dataset="#{lineChartBean.lineDataset}" width="400"
                   height="400" fileExt="png" chartTitle="Calc by Day"
                   includeLegend="true" formatter="#{lineChartBean.formatter}"
                   type="Line" plotColor="#D8D8D8" binding="#{lineChartBean.lineChart}" />
         </h:panelGroup>
         <h:panelGroup>
              <h:selectManyCheckbox id="lineSeries" layout="pageDirection"
                   immediate="true" value="#{lineChartBean.lineSelectedSeries}">
                   <f:selectItems value="#{lineChartBean.lineSeries}" />
              </h:selectManyCheckbox>
              <h:commandButton id="lineSubmit" value="Submit"
                   action="submit()" />
         </h:panelGroup>
    </h:panelGrid>
    ... (other charts) ...
    </h:form>
    here is the line chart backing bean code:
    public class LineChartBean {
         private Logger logger = Logger.getLogger(LineChartBean.class
                   .getSimpleName());
         private boolean firstTime = true;
         private final String[] lineCategories = { "27/07/05", "28/07/05",
                   "29/07/05", "30/07/05", "31/07/05", "01/08/05", "02/08/05",
                   "03/08/05", "04/08/05", "05/08/05", "06/08/05", "07/08/05",
                   "08/08/05", "09/08/05", "10/08/05", "11/08/05", "12/08/05",
                   "13/08/05", "14/08/05", "15/08/05", "16/08/05", "17/08/05",
                   "18/08/05", "19/08/05", "20/08/05", "21/08/05", "22/08/05",
                   "23/08/05", "24/08/05", "25/08/05", "26/08/05" };
         private final SelectItem[] lineSeries = { new SelectItem("Open", "Open"),
                   new SelectItem("P1(Open)", "P1(Open)"),
                   new SelectItem("P2(Open)", "P2(Open)"),
                   new SelectItem("Active", "Active"), new SelectItem("Test", "Test"),
                   new SelectItem("Evol", "Evol") };
         private final double[][] lineValues = { { 8, 1, 4, 6, 7, 11.60483871 },
                   { 11, 1, 4, 7, 5, 11.62903226 }, { 11, 1, 4, 7, 5, 11.65322581 },
                   { 11, 1, 4, 7, 5, 11.67741935 }, { 11, 1, 4, 7, 5, 11.7016129 },
                   { 13, 2, 5, 7, 5, 11.72580645 }, { 14, 2, 5, 7, 5, 11.75 },
                   { 12, 3, 4, 9, 5, 11.77419355 }, { 12, 3, 4, 9, 5, 11.7983871 },
                   { 12, 3, 4, 9, 5, 11.82258065 }, { 12, 3, 4, 9, 5, 11.84677419 },
                   { 12, 3, 4, 9, 5, 11.87096774 }, { 14, 3, 5, 10, 4, 11.89516129 },
                   { 13, 2, 6, 12, 4, 11.91935484 }, { 13, 2, 6, 12, 4, 11.94354839 },
                   { 13, 2, 6, 12, 4, 11.96774194 }, { 12, 2, 5, 4, 13, 11.99193548 },
                   { 12, 2, 5, 4, 13, 12.01612903 }, { 12, 2, 5, 4, 13, 12.04032258 },
                   { 12, 2, 5, 4, 13, 12.06451613 }, { 12, 2, 4, 4, 11, 12.08870968 },
                   { 12, 2, 4, 3, 9, 12.11290323 }, { 14, 3, 5, 2, 4, 12.13709677 },
                   { 11, 0, 5, 3, 5, 12.16129032 }, { 11, 0, 5, 3, 5, 12.18548387 },
                   { 11, 0, 5, 3, 5, 12.20967742 }, { 12, 0, 6, 2, 5, 12.23387097 },
                   { 12, 0, 6, 2, 4, 12.25806452 }, { 12, 0, 6, 2, 4, 12.28225806 },
                   { 12, 0, 6, 2, 4, 12.30645161 }, { 12, 0, 6, 2, 4, 12.33064516 } };
         private DefaultCategoryDataset lineDataset;
         private String[] lineSelectedSeries;
         private NumberFormat formatter = new DecimalFormat("#,###.##");
         public CategoryDataset getLineDataset() {
              if(firstTime) {
                   lineSelectedSeries = new String[lineSeries.length];
                   for (int i = 0; i < lineSeries.length; i++) {
                        lineSelectedSeries[i] = (String) lineSeries.getValue();
                   firstTime = false;
              lineDataset = new DefaultCategoryDataset();
              for (int serie = 0; serie < lineSeries.length; serie++) {
                   String serieName = (String) lineSeries[serie].getValue();
                   boolean isSelected = false;
                   for (String selectedSerie : lineSelectedSeries) {
                        if (lineSeries[serie].getValue().equals(selectedSerie)) {
                             isSelected = true;
                             break;
                   if (!isSelected) {
                        continue;
                   } else {
                        for (int category = 0; category < lineCategories.length; category++) {
                             double y = lineValues[category][serie];
                             lineDataset
                                       .addValue(y, serieName, lineCategories[category]);
              return lineDataset;
         public NumberFormat getFormatter() {
              return formatter;
         * @return Returns the lineSelectedSeries.
         public String[] getLineSelectedSeries() {
              return lineSelectedSeries;
         * @return Returns the lineSeries.
         public SelectItem[] getLineSeries() {
              return lineSeries;
         * @param lineSelectedSeries
         * The lineSelectedSeries to set.
         public void setLineSelectedSeries(String[] lineSelectedSeries) {
              this.lineSelectedSeries = lineSelectedSeries;

  • Can I have a JSP  inside another JSP??

    if so,
    say, I have a JSP inside another JSP then,
    how many servlets r generated by the JSP engine??

    Yes U can have JSP inside another JSP, ofcourse using jsp:include and in that case two servlets will be generated. Thats what i feel that happens.

  • Can I have my profile on another drive (other than C:) - Fx 4 beta 10, Win XP SP3

    Is it possible to install or set up Firefox so that my profile is on the '''E: drive''' (for example) instead of C:\Documents and Settings\UserName\Application Data\Mozilla\Firefox\Profiles\abcd3du4.default. I have installed Firefox on the E: drive.
    (I know I can use a portable version to solve the problem but I want to know if it's possible with the regular Firefox.)

    * http://kb.mozillazine.org/Moving_your_profile_folder
    * http://kb.mozillazine.org/Profile_Manager
    * https://developer.mozilla.org/en/Command_Line_Options

  • Can you have a song that another person bought on iTunes

    My sister has bought some songs on iTunes that I want to have.  Is there a way she can share it to me on the same computer without me having to pay for it?

    If the music folder is moved (fully moved: as in, change the iTunes preferences too, under ALL accounts on the computer) to the Shared Music folder, then anyone on the system can access it.

  • Role grants to roles being deprecated

    I have just read with concern in the release notes for Oracle Database 10.1 (paragraph 7.1) that the ability to grant "application role to another role will not be allowed in future Oracle database releases". Why will we be unable to nest roles in the way we have been doing for years? I can see many problems with this loss of functionality, or is there a cleverer way of organising security being introduced to replace roles?

    I cannot find it online either. It is in the README that comes with the download of 10G from OTN. The document part number is B12304-01 and it is the README for Oracle Database 10G Release 10.1 dated January 2004. It is in the section on Database Security, paragraph 7.1. The exact text of the bullet point is, "Grants of password protection or application role to another role will not be allowed in future Oracle Database releases".

  • Creation of role inside a role

    hi,
    is it possible to create a role under another role in cProjects.  I mean, with parent child relations ship.. so, i can see the subrole(s) staffing getting roled up on to the parent role and check the status of supply agianst the demand on the parent role
    (which i got from the item through Transfer Demand).
    Pls suggest.

    Hi sujata,
    No, it is not possible to build up a role hierarchy.
    Though internally the resource assignments of a role are builed up using a parent-child relations, but it has other meaning as you expected.
    Either you need to develop your own program bot fulfill the requirements. Wr you may use the task-role assignement to build you scenario, that means task is used as the 'parent-role'.  In this case you get the assigned roles information be rolled up.
    Kind regards,
    Zhenbo

  • Reg: How to add role to a role programitically.

    Hi All,
    How to add a role to another role programmatically ?
    My requirement is...
    I have a super role S1 which has two sub roles R1 and R2.
    I have two schedulers running. When scheduler-1 runs, I want role R1 to be added to super role S1 and the role R2 to be removed. When scheduler-2 runs, I want the role R2 to be added and role R1 to be removed from role S1.
    Now my question is...how to add the sub roles programmatically to super role?
    Thanks,
    Shilpa.

    Hi Shilpa,
    sounds like you want to provide users with different content at different times. Have you ever heard about PCD Filtering? PCD Filtering allows you to hide or show parts of the content using arbitrary filter expressions. I guess you could also implement a PCD filter which filters content depending on the current time.
    Check the article <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3367e690-0201-0010-d285-c69bd884c9f3">Filtering Role and Workset Content</a>, Shantanu's blog <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/6370">Filtering Role Content by User Attributes</a> and the presentation <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/17968de1-0a01-0010-1f9f-c090fbc7001a">FilteringRoleand WorksetContentforDevelopers</a> for more information about PCD Filters.
    Best regards,
    Martin

  • Why to add Role to a Role

    Hi
    Could any one explain why we need to add a Role to another Role.
    I just wanted to understand the basic Concept  why SAP has givren this functionallity.
    Thank you
    Regards
    Krishna kanth

    Hello Siddi,
    This could be a way to merge roles
    Please check this post:
    Delta Link - Add Role to Role
    Warm Regards,
    Ritu

  • Inheriting Project Roles from another project

    Hello all,
    I wants to inherit all the project roles from one project to another without actually creating the new roles, and then close the parent project.
    Because i have one business requirement that we need to create a new project with same resources as the parent project and it is too time consuming to create roles, consider the case there are 10-15 resources assigned.
    Is there is any way to do it ?

    Hi Rahul,
    You can create generic  project template in which you can create the WBS and create the roles as well as you can assign business partner to roles .
    use the template while creating the project all the role from the template will be inherited.
    Regards
    shiv

  • How does role inheritance work in GRC

    Hi All,
    We are implementing GRC PC 10.0 where we have activated Role inheritance for organization in Maintain Authorization Customization Node in SPRO.
    What i understood is by activating the role inheritance for organizations, you can specify that authorizations are to be passed on to lower levels of the organization. However I need to know if inheritance also helps in picking up the recipients while doing planning activity, I have two queries in this regard:
    For eg :
    1) if we have a Control Tester role maintained at subprocess and control level both and if a User is assigned to subprocess for Control tester role then in that case User will be also be mapped to all the control beneath the subprocess for Control tester role due to inheritance concept ..correct? and while planning for that particular control, does user maintained at subprocess level will be picked as a recipient ?
    2) A Control tester gets mapped at the subprocess level. This means that all controls under that subprocess would show this tester as inherited from the subprocess. However, if we do not want the inherited tester to perform the test, and instead map a tester at the control level, the inherited tester still appears. IN this case, will only the tester mapped at the control level receive the work inbox item for the control test (as this overrides the inherited tester), or will the inherited tester also receive it?
    Regards,
    Shikha

    The interface only needs loaded if one of its members
    is accessed (although this is probably implemented
    differently on different JVMs).No.
    The interface is loaded.
    It is not initialized. There is a difference. See section 12 of the JLS.
    Assuming the above is true, it appears the following
    is happening
    1. C is loaded because w is accessed from DD�s main .
    This loading causes �w� to be echoed and then �x� to
    be echoed since loading the interface initializes the
    members which in turn call the echo method (I am
    assuming that this only happends when the members are
    not �constants�).
    2. The main method then echoes the w variable (which
    is �w�).
    Having said this, I would think this code would behave
    differently on different JVMs so I am not sure how it
    could even be a �good� theoretical question (unless
    this is documented in the JLS).It is in the JLS.
    Also, loading the the interface may not really be what
    is happening; the initialization code may be in-lined
    in the class (this could be tested by printing w twice
    in main � really strange behaviour).No. It can't inline the initilization of one class in another class.

  • UWL: Jump another role when clicking in a WI (Task)

    HI Experts!
    I tell them that I've have a problem when working with the UWL for SAP Enterprise Portal modules and SRM7.0 7.13.
    The stage on which I locate the problem is this, we have created many custom roles portal with many features (standard and own client) and much of this role have the workset that brings SRM7.0 Portal installation to the UWL to display tasks that contains the user for management.
    In this work, we find WI order approval standards, for example, which the user uses it daily and that when run, will open a document approver display mode (managed by the FPM and some dynamic parameters in the call). Inside the application for approval of orders, we have included a LINK to an custom application which we call clicking through on relative navigation (Path IVIEW), including the folder navigation role, the IVIEW Luncher for custom application.
    Now comes the problem, the situation is that when you click the LINK application does not run giving an error in JAVASCRIPT. After analysis, we found that, at the time of the click, the WI (on tasks in UWL) the IVIEW on approval so that it runs is not relevant to the role from which you accessed the UWL, but has made a jump to a standard role. I mean, being in the role A (which is a custom role), for example, when you click on the task in the UWL, the system searches the IVIEW to execute that task in another role (role B - Standard Role) . Then the problem is that the navigation then run on the PCD_LOCATION corresponds to the standard role where not, the folder navigation, the IVIEW custom application and enforcement of this fails it.
    We have reviewed all, SRM configurations for execution of tasks, XML configuration, configuration Roles, etc, but were unable to determine where and why you are running this jump in the role system.
    What has happened to anyone?, Will created the wrong of the UWL IVIEW associated with the custom role?, Do these calls can be parameterized anywhere? This is happening to us in all systems and do not know why that is.
    we really appreciate all the help we can provide
    SP levels of the portal are the following;
    Portal Version: 7.30 SP10
    VM Java Version: 1.6.0_33
    VM Runtime Version: 6.1.043 21.1-b02
    Kernel Version: 7.30.3301.348013.20130703150204
    At your disposal,
    Best Regards,

    Hi all
    I am also facing a similar problem while implementing a dialog which needs to be shared by two pages. I am also implementing it the way described in the case that does not work. i.e. dialog is in the jsff of child taskflow. I am encountering the issues described here. Is there some solution to this problem?
    Is there any other way also to implement a shared UI dialog?
    Thanks
    Arun

  • Hiding contents in one Role based on another Role.

    Hi,
    Please help me in the following....
    Say there are 2 roles. Role A and Role B.
           Role A
               Content 1
                       sub contents...
               Content 2
                       sub Contents..
    if the User has Role A alone, then Content 1 alone should be displayed and content 2 should be invisible. If the user has Both Role A and Role B(only if role B is also present), then Content 2 should also be displayed. i.e Both Content 1 and Content 2. The contents 1 and 2 can be another role or a workset, but we want to control the visibility of content 2 based on presence of Role B for the user.
    I wanted this functionality by directly configuring in EP rather than Using UME API's and coding it. Please guide me on ways to configure the same in EP as to get this functionality.

    hi Mohamed,
    Go through this links ,
    <a href="http://help.sap.com/saphelp_nw70/helpdata/en/95/92b2f7d2f14a6da7a8b5d66808d1f6/content.htm">Portal Display Rules</a>
    <a href="http://help.sap.com/saphelp_nw70/helpdata/en/4b/29cf122f414721964269e1b675d62c/content.htm">Rulecollection</a>
    Regards,
    Malini.V

  • How i can associate my app user with database role

    In my application (oracle forms application developed in-house - We are using Oracle Forms 11gR2 with WebLogic 10.3.5 ), i want to use "application user" instead of database user.
    I have an application users table, actually, i have database users,and of course, menu application works with database roles (It was developed with oracle forms menu module), my question is, How i can associate my application user with database role, for reusing oracle forms menu funcionality?. It's possible?
    Thanks,
    Edward

    user8929172 wrote:
    In my application (oracle forms application developed in-house - We are using Oracle Forms 11gR2 with WebLogic 10.3.5 ), i want to use "application user" instead of database user.
    I have an application users table, actually, i have database users,and of course, menu application works with database roles (It was developed with oracle forms menu module), my question is, How i can associate my application user with database role, for reusing oracle forms menu funcionality?. It's possible?
    Hi Edward
    You can do this by assigning the role functionality to the application user. For example
    create the table to enter user name.
    create table to enter group name.
    create table to assign user to group.
    assign role to group.
    assign functionality for the user by coding.
    hope this helps

Maybe you are looking for

  • Deleted iPhoto library and folders containing photos but hard drive still show 32GB of photos?

    I have a new MacBook Pro Retina.  Was having all sorts of problems setting up with Time Machine/Time Capsule back-ups.  To cut a long story short I moved to trash a whole lot of photos I had imported, including the iphoto library. Have emptied trash

  • Why can't i manually switch apps off?

    Work iPhone 4S on 7.0.2. It's laggy as ****. Why can't I manually switch off apps I don't use like maps, reminders & tomtom? On Android I can go into each app and switch them off when I don't want them in use. Why can't I do this on iOS? So far, I'm

  • RE: Attach Issue

    HI, I have similar problem that a detach object and some new object in place as below and Kodo 3.1.2 throws exception during attaching the detached object. Simple code: ======== Server side: A a = (A)pm.getObjectById(oid, true); da = (A)pm.detach(a);

  • Remove SAP Branding from Portal Logon 7.1

    Hi, does anybody know how to remove the SAP Branding image from the logon page in 7.1? Unfortunatly we are not able to export / import the logonpage from the portal (around 40 errors if we try to build the original(! just export and import) logonpage

  • How do I change an iMovie's project thumbnail?

    I have exported my iMovie 11 project several times now and have uploaded it successfully. But I am not at all happy with the thumbnail or still the file has settled on to use as its thumbnail. So now that I've exported a still frame from iMovie via M