Query to find all users under specific MO: Security Profile (per_security_profiles)

Hi Folks,
Could you please help me out to get list of users under the selected MO: Secuirty Profile.
Requirement:
I have a parameter in which i can select MO: Security profiles those are under responsibility level. So based upon this parameter i need to populate all organizations under selected MO Security Profile and in third parameter i need to fetch all users which are under selected MO: Security Profile.
So please help me to sort out this problem.

Pl do not post duplicates - How to Fetch organizations under specific MO: Security Profile
Pl continue the discussion in your original thread

Similar Messages

  • Query to find all tasks on latest published version of a project

    Hello
    Can anybody help me on the query to find all tasks under latest published version of a project?
    Thanks!!

    Do you mean  "All tasks under latest published workplan version"??

  • BO SDK Query to find all folders that a user has access to

    Hi Experts
    Please help me on BO SDK Query to "find all folders that a user has access in a single query".
    I am tried trial & error using PARENTS & CHILDREN. nothing worked
    Please advice
    Thanks!
    Prasath

    Hi Aasavari
    I am checking BO Web services samples and .NET samples. Please advice me the correct files to check the user/folder rights.
    Thank you so much
    Prasath
    http://wiki.sdn.sap.com/wiki/display/BOBJ/NETWebServicesSDKSamples

  • Query to find all Debug profile & trace values on PO module

    Hi
    we are using oracle11i(11.5.10.2 on windows 2000 server)
    i want to know all debug & trace values for PO & workflow moule using query.
    is any one having idea regarding query?
    Thanks
    With Regards
    A-Z

    Please see these docs/threads.
    Problem with 11.5.10.2
    Problem with 11.5.10.2
    Query To Get Enabled Trace/Log/Debug Profile Options [ID 559618.1]
    Also, see this docs for the queries you can run to list the value of the profile options at all levels.
    Note: 201945.1 - How to list E-Business Suite Profile Option values for all levels using SQLPlus
    Note: 282382.1 - How to Search all of the Profile Options for a Specific Value
    Note: 367926.1 - How To Find All Users With A Particular Profile Option Set?
    Thanks,
    Hussein

  • Adding all users under one subtree to a role

    Hi,
    We have a role call PaymentsGroup under  cn=Groups,dc=companyname,dc=com
    There are sub trees which contains many users which categorised by city, country.
    Example :
    cn=michael wood,ou=users,ou=cal,ou=us,ou=dept1,cn=users,dc=companyname,dc=com
    cn=harry wilson,ou=users,ou=lon,ou=uk,ou=dept1,cn=users,dc=companyname,dc=com
    Can we add the subtree (upper level) onto the group so all users under that subtree will get granted to the role?
    Example : ou=users,ou=ny,ou=us,ou=dept1,cn=users,dc=companyname,dc=com
    Thanks!

    Hi,
    To clarify, are you talking about the Role mechanism defined by DSEE as described at Managing Roles - Oracle Directory Server Enterprise Edition Administration Guide?
    -Sylvain
    When closing a thread as answered remember to mark the correct and helpful posts to make it easier for others to find them

  • Is there a query to find all software installed on a particular computer through the Add/Remove Programs?

    I am looking for a query to find all software on a specific computer. I have found several on a specific piece of software but I need multiple pieces of software. I have tried creating this query but it shows ALL the software on the computer. I'm looking
    for one that narrows it down to a few pieces of software i.e Office, Adobe, Snagit, IE and Chrome. Possibly using Add/Remove Software? 

    It's an asset intelligence report, do you have that enabled?
    http://technet.microsoft.com/en-us/library/gg699382.aspx
    Alternatively, take a look at the 'Products on a specific computer' report (Software - Companies and Products category) and see if that gets you what you need.
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • Send notification to all users of specific responsibility in 11i

    Hi All,
    Is there anyway to send notification to all users of specific responsibility in 11i ?
    I have a setup form for hierarchy level (e.g level 1 - 5) by which each level will be notified either by responsibility or user?
    If its setup by responsibility, notification will be sent to all users under that responsibility.
    Do i have to create role using WF_DIRECTORY.CreateAdHocRole and add all users for specific responsibility to the role?
    Also if the responsibility setup changed, how to maintain the existing notification with the old resp.
    eg. level 1 is set to resp X then later on set to resp Y.
    Regards,
    Fendy

    Use 'Expand Roles' to achieve this. Please check the WF Developers Guide to see how it works.
    Yes, you may use wf_directory.createadhocrole for this purpose too.
    What do you mean when you say the responsibility has changed? It it is end-dated no notification should be sent to any of its members. It depends on the assignments of the role/user. if the assignment is used then the user will get it. If the assignment is end-dated then the user will not get the notification.
    You can always use wf_local_synch.Propagate_user_role to change the assignment of a user/role. If you want to end-date it, you can use it. Or you can add another user to the role, etc.
    Hope this helps,
    Alejandro

  • Select all users of specific APEX Group

    Hello,
    do you know how I can find all users assigned to specific User Group?
    I know there is User Groups Assignments page in APEX Administration panel, but it's very weak. It shows only 500 records, and there is no search option. I also can't find APEX group view in APEX DB.
    I can check all groups of any user, I don't believe I can't check all users of any group.
    Regards,
    Przemek

    Hi Martin,
    thanks a lot! I needed sth similar, but I couldn't have found right views. Thanks to you now I can:
    Select GROUP_NAME, USER_NAME, FIRST_NAME, LAST_NAME from WWV_FLOW_USERS u, WWV_FLOW_GROUP_USERS g where g.USER_ID=u.USER_ID and UPPER(GROUP_NAME) like '%some_name%' order by USER_NAME
    Regards,
    Przemek

  • How to get all users under an organizations?

    Hello everyone.
    Just want to know if anyone knows how to get all users under a particular organization.
    From the Search User form, I found they may kind of user such attribute conditions:
    MemberObjectGroup
    is in
    XXXX(organization)
    But unfortunately, the "is in" is not a valid AttributeConditionOperator, so besides using "recursive" self-written function, anyone knows any possible buit-in trick?

    Here is my solution:
    <Rule'>
        <RuleArgument name='organization'/>
        <RuleArgument name='context'/>
        <block>
            <defvar name='orgs'>
                <new class='java.util.ArrayList'/>
            </defvar>
            <invoke name='getChildObjectGroupNames'>
                <invoke name='getObject' class='com.waveset.ui.FormUtil'>
                    <ref>context</ref>
                    <s>ObjectGroup</s>
                    <ref>organization</ref>
                </invoke>
                <ref>orgs</ref>
            </invoke>
            <append name='orgs'>
                <ref>organization</ref>
            </append>
            <invoke name='getUsers' class='com.waveset.ui.FormUtil'>
                <ref>context</ref>
                <map>
                    <s>conditions</s>
                    <list>
                        <new class='com.waveset.object.AttributeCondition'>
                            <s>MemberObjectGroups</s>
                            <s>in</s>
                            <ref>orgs</ref>
                        </new>
                    </list>
                </map>
            </invoke>
        </block>
        <MemberObjectGroups>
            <ObjectRef type='ObjectGroup' id='#ID#Top' name='Top'/>
        </MemberObjectGroups>
    </Rule>

  • Outlook 2010 not finding all users in the "To" line

    I have a user that has an issue with searching in the "To" line when sending an email.
    She has sent an email to this person before, and with most users, she can type first or last name and come up with the users. But there are a select few that she can only find by typing their last name. I understand that while she can still find the user
    under the last name, she is wanting to find the users by first name. I have removed cached mode, removed the cached email address and put it back in by sending a test email to the other person, but no luck, and I have gone in and found the user in the global
    address book (Which searches by last name) and nothing This user can only be found by last name. I have been told that she can only search by last name if it someone who is in our organization, and I verified that the person she is sending to is on our domain
    and is not an outside user.
    Is there something I am missing or can try so that I can fix this for the lady who wants it to be the same across the board, or is this something that she will unfortunately just have to deal with.
    Thanks,
    Carter

    Hi,
    After some research, I found that when we search for a recipient by the text we type in, auto-complete looks at the following fields:
    1.Display Name
    2.Primary SMTP E-mail address (i.e. [email protected])
    3.Exchange Alias (i.e. abc)
    4.legacyExchangeDN attribute in Active Directory
    Auto-complete does not search against any of the following criteria:
    1.First Name (if it is different from the display name, for example if the display name contained a nickname instead of the legal first name, which is listed in the recipients’ “first name” field in Active Directory)
    2.Last Name (unless one of the above four fields starts with the last name)
    3.Username (unless one of the above four fields starts with the username, or is set to match the username)
    Please add the recipient's name(especially first name as the sender need) to the display name of the local contact, this should work.
    Thanks,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • All plants Under specific company code

    Hi,
    What is the Tcode for All plants under Specific company Code.
    I Know about EC01 Navigation..
    But is there any other tcode available or not?
    Is there any table for all plants under company code?

    Go to SE11.. Give table name T001K..Execute... Give the company code in the field BURKS.. the result will give u all the plants under it....(WERKS is the field name for Plant)..
    Karthick

  • Sql query to find all contacts for an account

    I wonder if someone wrote an sql query to find all contacts for an account number in Oracle customer master. We are on EBS 11.5.10.
    I am also looking for sql query to find all ship to addresses for an account number.
    Thanks.

    Can you also post the query for people who read this post and are also looking for an answer?
    Regards,
    Johan Louwers.

  • Query to find all the view name and their size in GB

    Hi,
    What is the query to find all the view name and their size in GB.I am aware of joining all_views and user_segments but this is not serving the purpose.is there any table i need to join to get the desired result
    Thanks

    You could of course be thinking of views as they are stored in other RDBMS' as some of them actually create the view as a table on the database with a copy of the data in it and maintain that data as the base tables are updated.
    As already mentioned, Oracle just stores the SQL of the View and executes that SQL when the view is queried.
    Alternatively, Oracle also has "materialized views" which are created as snapshots of the data and will have a size. This data is updated (refreshed) based on the parameters used when creating the materialized view which means that it will either be, commonly, when a commit is issued or when a refresh is explicitly requested (refresh on demand).

  • Query to find all the suppliers who has their invoices on hold

    Hi All,
    Query to find all the suppliers who has their invoices on hold (at least 1) .
    Thanks,
    Vamshi

    Pls find the script to find the Hold invoies for those suppliers 
    select aps.VENDOR_NAME,aia.INVOICE_NUM,aia.INVOICE_AMOUNT
    from ap_suppliers aps,ap_invoices_all aia,ap_holds_all aha
    where aia.VENDOR_ID = aps.VENDOR_ID 
    and aia.INVOICE_ID = aha.INVOICE_ID 
    and aha.RELEASE_REASON is null
    Thanks
    Hari

  • Query to find all relationships between tables

    Please help me wit the following
    Query to find all relationships between tables
    SAMPLE OUTPUT:
    PRIMTAB PRIMCOL FOREIGNTAB FOREIGN KEY
    DEPT DEPTNO EMP DEPTNO
    Return all records in the database.
    PLEASE HELP

    SET LINESIZE 150
    COLUMN primcol FORMAT A30
    COLUMN foreigncol FORMAT A30
    SELECT uc1.table_name AS primtab,
    ucc1.column_name AS primcol,
    uc2.table_name AS foreigntab,
    ucc2.column_name AS foreigncol
    FROM user_constraints uc1,
    user_constraints uc2,
    user_cons_columns ucc1,
    user_cons_columns ucc2
    WHERE uc1.constraint_name = uc2.r_constraint_name
    AND uc1.constraint_name = ucc1.constraint_name
    AND uc2.constraint_name = ucc2.constraint_name
    AND ucc1.position = ucc2.position
    ORDER BY uc1.table_name,
    ucc1.position
    /

Maybe you are looking for

  • Opening an Online PDF

    Since our IT Department installed Acrobat Pro 9.0 on my computer, I have not been able to click on a PDF link on a web site and open it. When we click on the file, we get the following error message: "The Adobe Acrobat/Reader that is running can not

  • What's best: placing images in Photoshop or InDesign?

    Hi guys Since I hear different things about creating for example posters etc. is this my question: What do you think is best to do when designing a poster or flyer (or whatever) with a nice background, bursh effects, pictures and text? I do it like t

  • Xfce - thunar - gconf - dconf - usb mounting - why - how - bah

    Hello, I have disabled all automounting. I need to know what file I need to edit to change the options that xfce uses to mount.  Or whatever it uses to mount when you right click and hit mount. I am trying to mount a usb stick. I have tried looking i

  • Any warnings or tips for installing the FSCM 9.2.001 Upgrade Image on VMware rather than on Oracle VirtualBox?

    Our Network services group is pushing back the use Oracle VirtualBox since we have VMware as our standard.   We have decided to not fight it, and install our upgrade and Update images on VMware.  Did anyone experience any issues on VMware?  And, if s

  • Conversion from SQL Server 7.0 to Oracle 8 -- Urgent!!

    Hi! I've an urgent task of migrating data from SQL Server 7.0 to Oracle 8 for Oracle Financials Application. When is the Migration Workbench for SQL Server 7.0 is going to be released, please let me know? And the other question is -- Is there a possi