How can I get to which group belongs users

Can I write sql which get to which groups belongs users in Oracle Portal 3.0.9.

Hi,
select group_id from wwsec_flat$
where person_id in (select id from wwsec_person$
where user_name = '<user name>')
Thanks,
Sharmila

Similar Messages

  • How can I get the second group and report totals in Matrix report?

    Hi,
    I have created a matrix report with 2 break Groups.
    Iam getting columns totals for the first group, but not for the second group and the report totals.
    How can I get the second group and report totals for each month?
    Thanks.
    Ram.

    Hi Ram,
    If you want a total at any group-level, go to the particular group in the data model, insert a summary column in the group, and select
    Reset At > appropriate Group Name
    For report level summaries, you must create the summary column outside of all groups.
    Navneet.

  • How can I get the attributes details like user name, mail , from sAMAccount csv or notepad file through powershell or any other command in AD?

    How can I get the attributes details like user name, mail , from sAMAccount csv or notepad file through powershell or any other command in AD?

    Ok what about If i need to get all important attributes by comparing Email addresses from excel file and get all required answers
    currently I am trying to verify how many users Lines are missing , Emp numbers , Phones  from AD with HR list available to me.
    I am trying to Scan all the AD matching HR Excel sheet and want to search quickly how many accounts are active , Line Managers names , Phone numbers , locations , title , AD ID .
    these are fields I am interested to get in output file after scanning Excel file and geting reply from AD in another Excel or CSV file
    Name’tAccountName’tDescri ption’tEma I IAddress’tLastLogonoate’tManager’tTitle’tDepartmenttComp
    any’twhenCreatedtAcctEnabled’tGroups
    Name,SamAccountName,Description,EmailAddress,LastLogonDate,Manager,Title,Department,Company,whenCreated,Enabled,MemberOf | Sort-Object -Property Name
    Can you modify this script to help me out :)
    Hi,
    Depending on what attributes you want.
    Import-Module ActiveDirectory
    #From a txt file
    $USERS = Get-Content C:\Temp\USER-LIST.txt
    $USERS|Foreach{Get-ADUser $_ -Properties * |Select SAMAccountName, mail, XXXXX}|Export-CSV -Path C:\Temp\USERS-ATTRIBUTES.csv
    #or from a csv file
    $USERS = Import-CSV C:\Temp\USER-LIST.csv
    $USERS|Foreach{Get-ADUser $_.SAMAccountName -Properties * |Select SAMAccountName, mail, XXXXX}|Export-CSV -Path C:\Temp\USERS-ATTRIBUTES.csv
    Regards,
    Dear
    Gautam Ji<abbr class="affil"></abbr>
    Thanks for replying I tried both but it did not work for me instead this command which i extended generated nice results
    Get-ADUser -Filter * -Property * | Select-Object Name,Created,createTimeStamp,DistinguishedName,DisplayName,
    EmployeeID,EmployeeNumber,Enabled,HomeDirectory,LastBadPasswordAttempt,LastLogonDate,LogonWorkstations,City,Manager,MemberOf,MobilePhone,PasswordLastSet,BadLogonCount,pwdLastSet,SamAccountName,UserPrincipalName,whenCreated,whenChanged
    | Export-CSV Allusers.csv -NoTypeInformation -Encoding UTF8
    only one problem is that Manager column is generating this outcome rather showing exact name of the line Manager .
    CN=Mr XYZ ,OU=Users,OU=IT,OU=Departments,OU=Company ,DC=organization,DC=com,DC=tk

  • How can I get Spotlight to search my Users/Shared folder?

    How can I get Spotlight to search my Users/Shared folder?  It searches the folders in the other users, but not Shared.  When I CMD-I the Shared folder, my group has read-write privileges (all groups have at least read-only privileges).  When I do the search in the Finder window (with the Shared folder highlighted), It gives me the options of This Mac and "Shared".  When I click on "Shared," it does not give me any results.  I keep documents, photos, iTunes data, etc, in this Shared folder, and would like to be able to use Spotlight on it.

    I appreciate the 108 "views," but there weren't any replies, so I took another shot at figuring it out.  I did a CMD-I on the Shared folder, and made the "everyone" group have read-write access, and it worked!  I'm not sure if its because now all groups have read-write access, or just because the "everyone" group does, but I don't care at this point.    I'll have to restrict a few folders within in there, but at least it searches the main Shared folder itself now.

  • How can I get the language of the user logged on using only DI API?

    Hello,
    how can I get the language of the user logged on using only DI API,
    without invoking the UI?
    Can I read the value from some table using sql?
    I could write to file the first user's connection to the language code in SAP and then use it from external program, but I do not like this solution ...
    I know only this possibility:
            '_SboCy ==> SAPbobsCOM.Company
            '_SboCys ==> SAPbobsCOM.CompanyService
            '_SboApp ==> SAPbouiCOM.Application
            CodLng Dim As String = ""
            Dim lng As SAPbobsCOM.UserLanguages _SboCy.GetBusinessObject = (BoObjectTypes.oUserLanguages)
            If lng.GetByKey (_SboApp.Language) Then
                codLng = lng.LanguageShortName
                'Etc. ..
            End If
            lng = Nothing
    Thanks

    Hi Enrico,
    The language settings are held on the user's Windows profile and not in the database. In SBO 2007A onwards there is an XML file that is created by the SBO client (previous versions stored the information in the registry). The file is called b1-current-user.xml and you'll find it in the temporary application data under the user's profile (by default this will be C:\Documents and Settings\<profile>\Local Settings\Application Data\SAP\SAP Business One for Windows XP). This XML file contains a node that looks like the following:
    <leaf kind="single" name="Language" type="String">
         <value>8</value>
    </leaf>
    where the value is the language id that should correspond to the same setting in the DI API. If your application will always run on a workstation where the SBO client is installed then you could read this XML file. Of course, this file may not exist for a particular Windows user if they have never opened the SBO client so you'd need to have a default setting.
    If you application will be installed on a workstation which doesn't have an SBO client installed on it then there is no way to tell what default language to use and you'll need to build this logic in to your own application (eg have a screen where the user can choose their preferred langauge and then store this as a config file in a similar way to how the SBO client works).
    Kind Regards,
    Owen

  • How can i get the list of all users present in the LDAP

    Hi Experts,
    How can i get the list of all users present in the LDAP ?
    Is there any API or function Code to get all user list??
    Please help me out!!!
    Help will be rewarded

    Well it will depend on exactly where your UME configuration points to in the LDAP tree but yes, it is possible to get all users.  Something like the following should do it:
    import com.sap.security.api.*;
    import com.sapportals.portal.prt.component.*;
    IUserFactory iuf;
    ISearchResult isr;
    IUser user
    String userid;
    iuf = UMFactory.getUserFactory();
    isr = iuf.getUniqueIDs();
    you will need to iterate the ISearchResult object but you can get IUser objects by
    userid = (String)isr.next();
    user = iuf.getUser(userid);
    then you can imanipulate / identify / or whatever you need with the user object
    Haydn

  • How can i get the list of all users present in the UME ?

    Hi Experts,
    How can i get the list of all users present in the UME ?
    Is there any API or function Code to get all user list??
    Please help me out!!!
    Help will be rewarded
    -pankaj chouhan

    Hi Pankaj,
    find the official NetWeaver security javadocs (including access to UME) <a href="http://help.sap.com/javadocs/NW04S/current/se/index.html">here</a>. Look for classs UMFactory and proceed from there.
    Best regards,
    Martin

  • How can I see in which Group the workspace has been created ?

    Hi,
    The BeehiveOnline Tutorial on slide 7 shows that Workspaces are created within a Group.
    Also the Group Administration screen suggests this as I can indicate that user ABC gets the role 'Workspace Creator' in one Group but same user ABC does not get the role 'Workspace Creator' in another Group. (what else is the purpose of this role within Group Administration)
    But when I created my workspace, the system did not ask in which Group I wanted it to be created, neither can I see in the Settings of the new Workspace to which Group it belongs.
    Can you please help ?
    Thanks,
    Peter

    Peter,
    Workspaces and groups can be confusing - apologies that it was not clear.
    Perhaps some background as to why I described it that way may help.
    BeehiveOnline relies on groups to be self-sufficient - if you are in one group your world of available participants is that group and that group alone. So if you want to create a new workspace and add users they can only be drawn from that group. - hence the workspaces within a group setup. However, if you are in multiple groups then the linkage gets broken as you could add members to a workspace from different groups - if you needed many group to share a repository of read-only info for instance. This is in wide use on BeehiveOnline. Read and Write access is more of a problem as if anyone updates a document or creates one their id will be attached to it and if they are in a group you as a workspace member cannot see it will cause confusion.
    So workspaces are only group restricted if there is only one group. If you have multiple groups you have more scope but have to exercise more care.
    Hope that explains it.
    Phil

  • I just updated my MacBook pro early 2011 model to OSX 10.9 and was forced to create a new user(administrator) and ended up with a different configuration. If I login with my original user name everything is back. How can I get rid of the other user name?

    I have two user names with Administrator privelages and my MacBook keeps booting up to the wrong one and I have the wrong configuration since I updated to OSX 10.9. I would like to get back to my original User name which I used to boot up to. When I go to the User Groups and Preferences it doesn't allow me to delete the un-wanted user.
    Does anybody have any suggestions how I can fix this? I can't seem to recover Time Capsule back-ups prior to the OSX upgrade even though I have been faithfully backing up to a Time Machine.
    Help please.

    First of all, open System Preferences > Users &amp; Groups > Login Options, and set your old user account in "Automatic login". By doing this, your computer will always log in with your old account.
    Then, log in your old account, where you will be able to delete the new user that OS X Mavericks forced you to create. Other users have reported the same problem

  • How can I get a list of active users on an AS Java platform on a cluster?

    Hello Experts,
    I have an AS Java NetWeaver CE v7.1 EhP1 SP3 system and it's running in a cluster.  Do you know how I can get a list of all users that are currently logged in or whom have active sessions on each application server instance?
    Thanks,
    Sam

    > I don't know how to get classes used by VA for this tab.
    I wouldn't make any development investments based on classes for the VA anymore...
    Considering that not only Salvatore himself, but also the JControl might decide for itself that the system needs a hard shutdown and restart.. a possibly better solution would be to use a redirect. If the message server does does not respond or does not find any DIs or not the one which your previous session state was for, then redirect to a page with a meaningfulll message (and apology on it.
    Just a thought,
    Cheers,
    Julius

  • How can I get the information on the Users history in Enterprise 6.3.1

    Need help on the following. Since I'm an HFM guy and havent touch Enterprise for a while, I need help on the following:
    We want to have a report that indicates the Users history re: date and time users sign in and out of each Hyperion 6.3.1 application.
    Where can I get that information? Was thinking to look in <application>.use file but not able to see it properly using a text editor.

    Enterprise does not have any logs that track login/logout information. You can potentially check the error log for the first activity a user executes for example:
    data refresh or data load, which contain date and time of execution, but it will require some data filtering.

  • How can i get the amount of online user??

    when a user sign in or sign out,the amount of online user should change��
    and i now use a class that implements HttpSessionAttributeListener to implements this function,has three method:
    public void attributeAdded(HttpSessionBindingEvent se)
    public void attributeReplaced(HttpSessionBindingEvent se)
    public void attributeRemoved(HttpSessionBindingEvent se)
    and by attributeAdded i can count the amount of online user correctly when a user sign in.
    but when sign out,there are some troubles:
    user can leave through three method 1.signout button(it is related to session.removeattribute("user")),and use attributeRemoved can count the amount of online user correctly when a user sign out.
    2.close the browser directly
    3.not close the browser directly but use this browser navigator to another webpage(by enter url in address toolbar)
    the problem is: when user sign out through method 2 and method 3,i can't listen it
    and attributeRemoved not invoked.
    help!!!!!!!!!!!!!!!!!,how can solve it,thanks a lot!!!

    Sooner or later server will kill session so the only way is to look at HttpSessionListener interface
    Paul

  • How can i get the MAC of the users from my router?

    Hi I need to get the MAC of the users from my router, but without go its web page. I have to make a program to get that list since a computer desktop wich will be periodically sensing my router. I appreciate your help thanks.

    Have you tried psexec? it's a command prompt utility that executes program on the remote computer.
    For example: PC1 (192.168.1.2) to PC2 (192.168.1.3)
    In the command prompt window on PC1, type psexec \\192.168.1.3 ipconfig /all
    Then get the MAC address

  • How can I get that which one is currently activated window

    I created a frame. The user may be minimize that frame and he may use some other window like internet explorer or Notepad or something else. Then I want to know that which window is the currently activated window. Is it possible. Please help me.

    you can use Javascript functions/varibles.
    In any page you can insert a special form like this:
    <form name="myNameWindow">
    <input type="hidden" name="myName" value="Ivan_pag01">
    </form>
    and in the other reading that value.
    Obviusly you have to save a reference in a variable of the other window.
    This is possible only if:
    1) other page is in the same browser window but in an other frame
    2) you have generated the other page via an "window.open" function (or your page is generated from it via that function)
    -- Ivan

  • How can I see with which groups a contact is associated?

    In Snow Leopard I could hold down the option key when a contact was selected, and the groups with which it was associated would be highlighted in yellow.
    Is there a way to do this in Lion?

    Yep, that works, but since the Edit Distribution List feature no longer works with iCloud, the use of groups has been seriously devalued.

Maybe you are looking for

  • Normal text messages to and from my iPad (through my iPhone 4S)!?

    Since iOS 8, I used to be able to send and receive normal texts, to and from people with non iPhone phones, on my iPad mini retina through me iPhone 4S, but since I changed my password of my Apple ID, this is NOT working anymore! iMessage texts, show

  • Why is Lion and VMWare 3 so slow?

    Hi, I run VMWare Fusion 3 (Windows 7) on my MacBook Pro (2.4 GHz Core 2 Duo CPU, 4GB RAM) with Snow Leopard and it runs fine (speed acceptable with a lag now-and-then). I loaded VMWare Fusion 3 (Windows 7) on my faster iMac (3.1 GHz Core i5, 4 GB RAM

  • How to define SQL that contains "in" where clause in VO?

    I don't want to define "in" caluse in a programatical way in VO like below. I want to use a declariable way to define in clause using varaible bindings. Can it be implemented?     private String getInClauseWithParamNames(List termCodes) {           

  • Integrated Planning - Aggregation levels & Filters

    Hi Marc, Could you explain the advantage of using Aggregation levels & filters in the NW2004s Integrated Planning. Thanks!

  • Restrictions messes up folder organization

    This isn't so much a question as a warning. I don't know if this is a problem with iOS6 but here's the deal. I was checking out Restrictions on my iPhone last night in order to see if it would provide the sort of security I want for my daughter to us