API to get resources for a group

Hi All,
Can anyone please tell me whether there is any Weblogic API that returns me
a set of resources for a group that I pass as an argument to that method?
Would really appreciate a prompt reply

Jimmy,
Which class in the weblogic package structure are you interested in (security
realms/JMX MBeans, etc)?
Have you examined our javadocs for this method?
http://edocs.bea.com/wls/docs61/javadocs/index.html
Is this WLS 6.1 or 7.0?
Chuck Nelson
DRE
BEA Technical Support

Similar Messages

  • Azure API Management Usage Pattern for Enterprise - Grouping APIs

    Consider the following scenario:
    I have a 100 people in one org with 4 divisions
    I create on Azure API Management instance
    All 100 people are developing APIs and adding them to this single API management instance
    Can I achieve following? If yes, how?
    I want to group the APIs by those 4 division. Allow access of APIs only if it is added by people in their division. When I say allow access, basically I mean search the APIs and call the APIs.

    You can achieve this by using "Groups". First, you need to have a group per division. You can either manually create the groups and add users to them or if you use Azure Active Directory and enable developers to login with AAD to the portal, then
    their existing group membership will also be available to use.
    Once you have the group set up you need to have a product for each group. You can set the visibility settings of the product so that only members of a given group can see it. Then you can set which APIs the product contains and thus complete the mapping
    of groups to APIs.

  • Get Info for a Group of Folders

    When I select a group of folders, say 20, and press "option i" (get info) I get 20 individual info windows flying open.  Is there a way to get info about a group of 20, 50, 100 folders in order to determine the total size of the total group without info windows flying open? 

    Cmd-i will open the Info window.
    Cmd-Opt-i will open the Inspector, which is what you want.

  • How does schedule with RESTful API a Webi report for a group of users ("Schedule For" to "Schedule for specified users and user groups" with one or more users/groups)?

    SAB BO 4.1 SP1
    Does it have an RESTful API to schedule a Webi report with the parameter to specify a group of users ("Schedule For" to "Schedule for specified users and user groups" with one or more users/groups)?

    Hello Ricardo,
    have you try a call like this one ?
        <schedule>
          <name>"test"</name>"
          <format type=\"webi\"/>
          <destination>
            <inbox>
             <to>userId1,userId2,userId3,groupId1,groupId12</to>
            </inbox>
          </destination>
        </schedule>
    Regards
    Stephane

  • How to get pages list for a group space or create a page for a group space

    hi All,
    I am using wc11.1.1.3, I want to use java api to implementing the following functions in site template:
    1. Get pages list for a given group space
    2. Create a page for a given group space
    I researched the following codes from web site:
    PageDef newPage = mPageService.createPage(
    PERSONAL_USER_PAGE, pageNameFormat, pageTitle,
    "MyPageTemplate1.jspx",
    "/mytemplates/",
    null, null, null);
    What should be used instead of PERSONAL_USER_PAGE if a group space page is intended to be created? which parameter is for defining group space name that the page should be created for?
    By the way, PageService seems has method for getting list of pages, but how to use it to get page list which is in a specified gs?
    Best regards

    did you manage to get the page list using Page Service API?

  • OIM11g Code for getting resource object name

    Hi Experts,
    I want to fetch all the resource objects names assigned to a particular user. I am using following 10g code:
    tcUserOperationsIntf moUserUtility1 = (tcUserOperationsIntf) getUtility("Thor.API.Operations.tcUserOperationsIntf");
    Hashtable mhSearchCriteria = new Hashtable();
    mhSearchCriteria.put("Users.User ID", "*");
    mhSearchCriteria.put("Users.Status", "Active"); // Searching for all
    tcResultSet moResultSet = moUserUtility1.findUsers(mhSearchCriteria);
    Long usr_key = moResultSet.getLongValue("Users.Key");
    tcResultSet rs = moUserUtility1.getObjects(usr_key);
    String objName= rs.getStringValue("Objects.Name")Could you please help me getting the OIM11g API's and code for the above 10 code?? Any ref will be helpful..
    thanks.

    Check this link
    OIM 11g - retrieving all the provisioned accounts of an user

  • Would Like to Get Report of Daily Emails In and Out from Members to a DL Exchange version : 2007 I am the supervisor for the group and want to quantify this information. I do not need to see the content, just quantity is it possible ?

    Would Like to Get Report of Daily Emails In and Out from Members to a DL
    Exchange version : 2007
    I am the supervisor for the group and want to quantify this information. I do not need to see the content, just quantity
    is it possible ?

    Well, distribution groups don't really have a concept of "in" or "out". They only serve to distribute messages sent to them -- unless you're asking to know who was a member of the distribution group at the time a message was sent to the DL.
    Message tracking logs hold the information you want, though. You'd have to look for EXPAND events that reference the distribution group and take the sender's e-mail address from that event. If the DL is a simple one that's not a member of any other groups
    you could also look for RECEIVE events sent to the e-mail address of the group and get the sender's name from that event.
    You can use Powershell extract the rows of data from the logs, but you'll have to write the code to get the data out of those rows and into a format you want. Perhaps LogParser could be useful in place of Powershell?
    --- Rich Matheisen MCSE&I, Exchange MVP

  • Getting the first row for each group

    Hi Everyone,
    I have a query which returns a number of rows, all of which are valid. What I need to do is to get the first row for each group and work with those records.
    For example ...
    client flight startairport destairport stops
    A fl123 LGW BKK 2
    A fl124 LHR BKK 5
    B fl432 LGW XYZ 7
    B fl432 MAN ABC 8
    .... etc.
    I would need to return one row for Client A and one row for Client B (etc.) but find that I can't use the MIN function because it would return the MIN value for each column (i.e. mix up the rows). I also can use the rownum=1 because this would only return one row rather than one row per group (i.e. per client).
    I have been investigating and most postings seem to say that it needs a second query to look up the first row for each grouping. This is a solution which would not really be practical because my query is already quite complex and incorporating duplicate subqueries would just make the whole thing much to cumbersome.
    So what I really new is a "MIN by group" or a "TOP by group" or a "ROWNUM=1 by group" function.
    Can anyone help me with this? I'm sure that there must be a command to handle this.
    Regards and any thanks,
    Alan Searle
    Cologne, Germany

    Something like this:
    select *
    from (
       select table1.*
       row_number() over (partition by col1, col2 order by col3, col4) rn
       from table1
    where rn = 1In the "partition by" clause you place what you normally would "group by".
    In the "order by" clause you define which will have row_number = 1.
    Edit:
    PS. The [url http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/functions004.htm#i81407]docs have more examples on using analytical functions ;-)
    Edited by: Kim Berg Hansen on Sep 16, 2011 10:46 AM

  • Get Name for CO Cost Center Group and BGD Processing

    Hi,
    I use these function modules to get the cost center group nodes in the CO hierarchy.
    If I pass it a value that is in two controlling areas
    if prompts another screen to pick which controlling area we want to look in.  My problem is when I try to run this report in the background it gets hung up on this screen waiting for input. any ideas on how to get around this.
    here is the reference code.
    thanks
    Please note that the following logic is parts of SAP example report
    RGSEX001.
    Get the internal Set-ID from the external name of the set
    Selection of sets can be restricted to a specific set class or
    to sets matching a specific table field.
    See documentation of function module G_SET_GET_ID_FROM_NAME
    If the set class, subclass and setname is known, function module
    G_SET_ENCRYPT_SETID should be used alternatively (see RGSEX020)
        CALL FUNCTION 'G_SET_GET_ID_FROM_NAME'
             EXPORTING
                  shortname = w_set
                  old_setid = w_setid
             IMPORTING
                  new_setid = w_setid.
    Read the complete hierarchy (set and all subsets)
        CALL FUNCTION 'G_SET_TREE_IMPORT'
             EXPORTING
                  setid              = w_setid  "Set-ID, not the Setname!!!
                  no_table_buffering = ' '
             TABLES
                  set_hierarchy      = it_hierarchy
                  set_values         = it_values.

    Hi!
    For reading cost center hierarchy you can try K_HIERARCHY_TABLES_READ.
    It returns near the same info as one you've mentioned, works well for single controlling area and I hope in case of ambiguity it will raise one of exceptions provided. Give it try.
    Regards,
    Maxim.

  • "Could not get needed resources for application to be launched (id=-669)"

    I keep getting this message
    Setup Resourses Status
    Could not get needed resources for application [App name. edir path] to
    be launched (id=-669).
    Problem: Unable to connect to server [server name]
    I am able to browse to the server no problem as well as map a drive
    directly to it?
    I am not sure why I am getting this ?

    This is under the "Environment" portion of the "Run Tab"
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Support Forums Volunteer Sysop
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared either Novell or any rational human.
    <[email protected]> wrote in message
    news:[email protected]...
    > Craig where do I to determine that? I know it has to run as admin but I
    > am not sure if it is set like that...
    >
    >> Is the application configured to run "Normal", "Secure System User", or
    >> "Unsecure System User".
    >>
    >> Methods #2 and #3 require the workstation not the user to have rights
    > and
    >> require the use of UNC instead of a mapped drive.
    >>
    >> --
    >> Craig Wilson - MCNE, MCSE, CCNA
    >> Novell Support Forums Volunteer Sysop
    >>
    >> Novell does not officially monitor these forums.
    >>
    >> Suggestions/Opinions/Statements made by me are solely my own.
    >> These thoughts may not be shared either Novell or any rational human.
    >>
    >> <[email protected]> wrote in message
    >> news:[email protected]...
    >> > It is associated with the user and I can get access to the exe via
    > their
    >> > PC using their login
    >> >
    >> >> ,
    >> >> > Could not get needed resources for application [App name. edir
    > path]
    >> > to
    >> >> > be launched (id=-669).
    >> >> >
    >> >> > Problem: Unable to connect to server [server name]
    >> >> >
    >> >> > I am able to browse to the server no problem as well as map a drive
    >> >> > directly to it?
    >> >> >
    >> >> -669 is "wrong password" IIRC. Is this app associated to user or WS,
    > ie
    >> > is
    >> >> t trying to access that path wth the User's or Workstation's
    >> > credentials?
    >> >>
    >> >> - Anders Gustafsson, Engineer, CNE6, ASE
    >> >> NSC Volunteer Sysop
    >> >> Pedago, The Aaland Islands (N60 E20)
    >> >>
    >> >> Novell does not monitor these forums officially.
    >> >> Enhancement requests for all Novell products may be made at
    >> >> http://support.novell.com/enhancement
    >> >>
    >> >> Using VA 5.51 build 315 on Windows 2000 build 2600
    >> >>
    >> >
    >>
    >>
    >

  • SQL or Powershell query to get the SCOM management group id for SCOM 2007 R2 & 2012 / 2012 R2

    Hi All,
    Can any one provide me the SQL or Powershell query to get the SCOM management group id for SCOM 2007 R2 & 2012 / 2012 R2
    I had a SQL query which will query the data from data warehouse and give the management group id but i have lost it for all 3 above.
    Gautam.75801

    Hi Gautam,
    Hope it helps:
    http://blog.tyang.org/2013/03/13/data-aggregation-field-became-empty-in-opsmgr-2007-linked-performance-report/
    http://blog.tyang.org/2012/09/05/mp-authoring-targeting-rms-or-ms/
    Natalya
    ### If my post helped you, please take a moment to Vote as Helpful and\or Mark as an Answer

  • Getting msg 'Program names L... are reserved for function group includes'

    Hi all,
    When I try to create a SAP standard Include which start with L, I get the message which says <b>''Program names L... are reserved for function group includes".</b>
    I have already created two standard SAP FMs.
    Please let me know how should I go ahead and create the Include.
    Thanks and regards,
    Anishur

    Hi,
    When you create the Function group, then if you look at the Fucntion group in SE80, then tehre inlcudes will be created, for FORMS if it will create the includes, and for TOP it will create the include, for L also it will create the Incldue(L referefs coding of subroutines).
    So, goto SE80 and activate the Include directly, then you can write the code in that include
    Regards
    Sudheer

  • Foreach loop... get managedby for a list of distribution groups

    hello all. thanks for the time. this is probably a simple one. but for some reason i can't get this working.  I am trying to get the managedby property of a distribution list.  i can easily get that for one but i want to call a list of distros
    from a text file.
    for one group:
    Get-DistributionGroup groupname | select displayname -expandproperty managedby | select displayname,name
    for a list.. I am doing this but it is looping:
    get-content c:\output\lists.txt | foreach {get-distributiongroup | select displayname -expandproperty managedby | select displayname,name} | export-csv c:\output\managedby.csv
    what am i doing wrong? or is there an easier path... all help is appreciated.  thank you.

    thanks that did make a difference but i changed it up a bit. otherwise it puts in a format of where the user account is located in distinguishedname format... below is my change and result.  
    the result is now:
    [PS] C:\Windows\system32>Get-Content c:\output\test.txt |%{Get-DistributionGroup $_ |select displayname -expandproperty managedby|select displayname,name}
    DisplayName                                                 Name
    Tech-Engineering                               Smith, Joe
    Tech-Networking                                Smith, Jane
    Thank you!!

  • For a demand how to find/get resource utilization value ?

    Hi,
       How to get resource utilization value for a particular demand based upon demand total duration?

    Hi,
       when a demand is created in cProjects, a resource will be assigned in MRS. Hence, i want to get how much % the utilization of that resource done for that particular demand.

  • Resources for getting better at color correction

    Hi!
    Can anyone recommend some sources, books, instructional movies or similar for advanced color correcting and image coloring?
    I am fairly decent at it already, I know the technical tools for it, I mostly use scopes and the 3-way color corrector for correcting the
    basics like luminance and white balance, but I want to learn more about the coloring.
    I'm looking for some inspiring resources for "movie color theory creativity" I guess.
    Help much appreciated!

    Thanks for another book tip.
    Regarding the luminance levels, coming from a photoshop background it comes naturally for me to tune these with curves or a simple levels adjustment. However the basic "levels" effect itself I find pretty annoying because of that non-working win95 histogram that pops out, it's not a very big problem but it seems odd to me that it's not possible to get a simple working histogram in PPRO in addittion to the scopes. I do understand that histograms
    doesnt have such a historical place in video editing as in still image editing, and the more I use and learn scopes I definetly see the benefits of it. Still, does someone happen to know if there there is such thing as a *affordable* plugin available for PPRO that can display a proper histogram?
    And by the way, just out of curiosity: Im editing 1080/30 video from my 5D MKII and I am constantly amazed with the dynamic range and how much tinkering the video can take before image quality starts to suffer, even with the h264 compression. Do a professional HD camera 10 times the cost really deliver that much better raw footage quality (consider image quality alone of course) than this?
    Thanks again

Maybe you are looking for

  • I connect the MagSafe  to my Macbook but Macbook cann't detected the Magsaf

    I read about this problem in this web could be solved by reset power by remove battery but in my macbook model battery it can not remove by myself because it have warranty sticker. I want to know Do you have other way to reset power manager

  • Display size and formatting

    My father, who is completely computer illiterate, managed to change the display on all three of our family accounts on our iMac. Whereas webpages and programs were once crisp and formatted correctly (ie the New York Times online looked like the prope

  • Cannot download the Exchange Server 2013 SP1 ISO file from Microsoft Website.

    Hello Guys, I cannot download the Exchange 2013 or Exch 2013 SP1 ISO file from the Microsoft Website. Before downloading i have register on the Site. Purpose of downloading the ISO is to upgrade the Active Directory Schema before installing exch serv

  • Adobe Exchange is asking me to purchase a CC subscription when I have one.

    I'm using Photoshop CC. Adobe Exchange is giving me the message: Please purchase any Creative Cloud subscription to access this product. The creative cloud icon is grayed out on all the Adobe Exchange products that require a creative cloud subscripti

  • DIY Upgrades and Applecare/Waranty

    Hi Guys, I wonder if one of you can help me with a couple of questions before I take the plunge and order my Mac Pro. 1. I need next day on site service so I need Applecare, I have noted on the site that you have to be within a certain distance of a