Extracting List of Users from BO Server

Hi All,
As an administration requirement we have to extract list of users within our BO server. I looked upon the forum and found that we can use query builder for the purpose.
I used query builder and ran query " Select SI_NAME from CI_SYSTEMOBJECTS where SI_NAMEDUSER=1 AND SI_KIND='User' " to list down the users. No issues till this point, the query ran fine and gave list of users in the server but I couldn't find a way to take export of this list. Then I thought of creating a webi report on top of CMS database pulling column "dbo.CMS_Aliases6.Alias" into report but that shows some ids for all enterprise users.
Please let me know if there is any other method that I can implement to take export of user list from server. I know this can be achieved using SDK but I want to try it at last.
Thanks,
Chandra

Hi
After clicking the Export .
1.Go folders>administration tools folder
2.Right click on Administrator tools >Security query export >
3.Click on History
4 In the History tab ,you will see the program Object schedule(See screen shot2)
5.Now clicking on the Instance Time link will open a .txt file and shows you the rights
6. while saveing this file save as in CSV format.
If you want to see only users after saveing the csv , Just apply the filter on Rights collections check only system . It will dis play only the users.
Useing Query Builder also We can do
After Genrated the Report go to file and save as html in your local .
Select the HTML Page and Right click Open with Excel . The report will open in excel .

Similar Messages

  • How to extract external directory users from a shared services group from shared services RDBMS repository

    Hi,
    I have a security group in shared services, which has external directory users. I want to extract the list of users from shared services RDBMS repository using a SQL query. Please let me know if this is possible and from which table(s) I can query such list.
    Thanks...

    You need to use CSS_Groups, CSS_GROUP_MEMBERS and CSS_USERS tables in your Foundation DB. Something like below will give you these details:
    select b.Name  ,a.Name  from HYPFOUND.CSS_GROUPS b ,
    HYPFOUND.CSS_USERS a ,
    HYPFOUND.CSS_GROUP_MEMBERS c
    WHERE c.MEMBER_IDENTITY = a.IDENTITY_ID and
    c.GROUP_IDENTITY = b.IDENTITY_ID
    GROUP BY (b.Name,a.name)

  • List of Databases from SQL Server

    Write now my connection string is like so:
    con.ConnectionString = @"Server=servername;Database=DatabaseName;Trusted_Connection=True;";
    I am trying to make my program a bit more "interactive" so the user can choose which database within the server to view in the datagridview (along with the list of tables).
    Am I supposed to remove the Database=DatabaseName portion of my connection string, and then the query "select * from master.dbo.sysdatabases" to get the list of Databases available? Would "select * from master.dbo.systables" give me a
    list of tables within any specific database?
    Thanks in advance.
    -Nothing to see. Move along.

    Thanks for the answer. With your help I successfuly integrated comboboxes to select the database and the related tables for each. Here is the code:
    private void Form1_Load(object sender, EventArgs e)
    { loadConstructor(); }
    //user selects an item in the Database combobox
    private void cbx_Databases_SelectedIndexChanged(object sender, EventArgs e)
    { cbxDatabaseChange(); }
    private void loadConstructor()
    setPermissions();
    con.ConnectionString = @"Server=serverName; Trusted_Connection=True;";
    getDatabaseList();
    private void setPermissions()
    //DGV is read only!
    dataGridView1.AllowUserToAddRows = false;
    dataGridView1.AllowUserToDeleteRows = false;
    dataGridView1.EditMode = DataGridViewEditMode.EditProgrammatically;
    private void getDatabaseList()
    //Get the list of databases from the server
    cmd.Connection = con; cmd.CommandText = "select * from master.sys.sysdatabases;";
    try
    con.Open();
    dataReader = cmd.ExecuteReader();
    dataReader.Read();
    if (dataReader.HasRows)
    while (dataReader.Read())
    { cbx_Databases.Items.Add(dataReader.GetString(0)); }
    else
    { MessageBox.Show("No databases found in the following connection string: '" + con + "'"); }
    con.Close();
    catch (Exception ex)
    { MessageBox.Show("Someone set us up the bomb! " + ex.ToString()); }
    if (cbx_Databases.Items.Count > 0)
    { cbx_Databases.SelectedIndex = 0; }
    private void cbxDatabaseChange()
    //Now that we know the name of the database (user selected in combobox)
    //Change the connection string accordingly
    setConString(cbx_Databases.SelectedItem.ToString());
    //get the tables using the new connection string
    getTableNames();
    //change the connection string to include the database name (string db)
    private void setConString(string db)
    { con.ConnectionString = @"Server=serverName; Database=" + db + "; Trusted_Connection=True;"; }
    private void getTableNames()
    cbx_Tables.Items.Clear();
    cmd.Connection = con; cmd.CommandText = "select * from " + cbx_Databases.Text + ".sys.tables;";
    try
    con.Open();
    dataReader = cmd.ExecuteReader();
    dataReader.Read();
    if (dataReader.HasRows)
    while (dataReader.Read())
    { cbx_Tables.Items.Add(dataReader.GetString(0)); }
    con.Close();
    if (cbx_Tables.Items.Count > 0)
    cbx_Tables.Enabled = true;
    cbx_Tables.SelectedIndex = 0;
    catch (Exception ex)
    { MessageBox.Show("Someone set us up the bomb! " + ex.ToString()); }
    if (cbx_Tables.Items.Count > 0)
    { cbx_Tables.SelectedIndex = 0; }

  • How can i get all the users from weblogic server?

    how can i get all the users from weblogic server?
    i have configurated a LDAP server using iPlanet and
    in weblogic server console i see those users from LDAP
    server. but how can i get all the users in my program
    from weblogic server instead of LDAP server?
    BTW,how to configure a RDBMSAuthenticator and what should i do
    in Oracle? which tables should i create? and how are their architectures?
    Thanks
    Daniel

    BTW, i use weblogic platform 8.1
    "Daniel" <[email protected]> дÈëÓʼþ
    news:[email protected]..
    how can i get all the users from weblogic server?
    i have configurated a LDAP server using iPlanet and
    in weblogic server console i see those users from LDAP
    server. but how can i get all the users in my program
    from weblogic server instead of LDAP server?
    BTW,how to configure a RDBMSAuthenticator and what should i do
    in Oracle? which tables should i create? and how are their architectures?
    Thanks
    Daniel

  • Error adding new users from local server

    Hello, BPC Gurus,
    We use BPC 7.0 MS SP4, MS SQL 2008 (Server name - BPCP01)
    In Administration Console we're trying to add user from local server (server with SQL Database), and warning window is appeared with message "The Server Is Not Operational [BPBCP01]"
    I checked Logging folder and found message:
    ==============[System Error Tracing]==============
    [System  Name] : OSoftAdminSecurity
    [Job Name]     : frmManageUser::GetAllObjectsFromDomainServer
    [DateTime]     : 2010-12-06 16:58:43
    [Exception]
        DetailMsg  : {System.Exception: The server is not operational [BPCP01]
       at Microsoft.VisualBasic.CompilerServices.LateBinding.LateGet(Object o, Type objType, String name, Object[] args, String[] paramnames, Boolean[] CopyBack)
       at OSoft.Consumers.Admin.Security50.ManageDataSet.GetAllObjectsFromDomainServer(String pDomainName, String pLDAPFullPath, Int32 pDomainObjectType, String pObjectValue, String pDomainType)
       at OSoft.Consumers.Admin.Security50.frmManageUser.GetAllObjectsFromDomainServer(String pDomainName, FILTER_TYPE pOptionType, String pOptionValue, String pDomainType)}
    ===========[System Error Tracing  End ]===========
    Any ideas?

    The installation was done with a local user or with a domain user?
    You know that BPC server can not be in the same time also domain controler.
    Are you using Windows authentication or CMS authentication.
    If you are using CMS authentication then again you can not add local users.
    If you are using Windows authentication then you have to go into server Manager
    Options - Define System User Groups
    Domain Type - Local Windows
    System User Group Name - Local Users.
    If you are using Windows 2008 make sure you addrole to have compatibility with IIS 6.because using this module bpc is adding new users.
    Regards
    Sorin Radulescu

  • Hi am having issues with getting the list of users from the Active Director

    Hi am having issues with getting the list of users from the Active Directory, can anyone help me with this!

    Hi Jason,
    Try this:
    1.  In Ultiboard select Tools>>Netlist Editor>>Pins, press the Delete button
    2.  Select all nets in the Select the Net to Delete dialog and then press the Delete button.  This will clear all nets in the layout, don't worry all traces, parts are still on the design.
    3.  Go to Multisim and select Transfer>>Forward annotate to Ultiboard.    This will add all nets that you removed back and it should fix the pin problem
    Tien P.
    National Instruments

  • How do you import a list of users from a file? (BPC 7.5NW)

    In adding users from a network domain, the related personnel filter provides three choices.  One of the choices allows a BPC administrator to import a list of users from file.  For some reason, the radio button alongside that option is grey and the choice is inoperable.  Does anyone know what steps-configuration or later-must be taken to make this choice operable and to be able to import the list of users from a file?
    Edited by: Greg Tyrl on Jul 11, 2011 8:17 PM

    make a new addressbook and in that import Outlook's

  • Unable to send email to the users from Project Server Workflow

    Hello all,
    I am facing issues in sending emails to the users from the workflow in SharePoint Designer 2013.
    I am trying to send emails to valid users in a Project server 2013 Workflow by Email action.
    I have set up the SMTP server successfully, I have configured SMTP server successfully in IIS manager 6.0
    I have configured the outgoing e-mail settings in Central Administration successfully,
    I have configured the SMTP email settings for my web app in IIS manager as well.
    I have configured and synced the User Profile App with the eMail addresses from Active Directory as well.
    I have configured the Alerts and Reminders in Operational Policies of PWA settings as well.
    I can send the emails to the users successfully through Powershell.
    But when I am trying to Start a Task Process with a user in the workflow, the task process starts but it never sent an email notification. So I tested by using the Action Email, that also the user is unable to receive any email. But the Workflow is not giving
    any error also. The email sending is successful, but the user is unable to receive it. The workflow succeeds to next phase without any errors.
    So to cross verify I tried 'Alert Me' option on a list, but that also is not sending(or might be sending but the user is not receiving) the mail.
    What else should I do to solve this issue.
    Please help me.
    Thanks,
    Shanky

    Hello Paul,
    I tried editing the PWA instance as you said, but that also didn't help :(
    I even restarted the Project Server Service, but nothing is changed. 
    I tried creating a new workflow for a List and used send email there, but that also is not sending the mail :(
    How do I check where the issue is from ? I mean, whether the workflow is sending the mail and the mail server is not receiving? or whether the workflow is not sending the mail itself? how do I check this? Is there any way to log these details?
    Please help me regarding this issue, I am totally clueless how to proceed.
    Thanks,
    shanky

  • Extract list of users in OBIEE 11g

    Can someone please tell me what is the way to extract the list of users using OBIEE 11g with their roles and permissions.
    Thanks in advance.

    Check this script
    '1: Make an UDML export of the RPD using nqgenudml.exe
    '2: Change the filename/location in this script
    '3: Run the script from the command line cscript Read_Usergroups.VBS > users.txt
    '4: Put the export in a XLS Pivot table
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    'point this to your UDML EXPORT
    Set objFile = objFSO.OpenTextFile("E:\usergroup.txt", ForReading)
    Const ForReading = 1
    Dim arrFileLines()
    dim strRLine
    dim strTemp1
    dim strTemp2
    dim strTemp3
    dim intRoles
    intRoles = 0
    i = 0
    WScript.Echo "USER_NAME;FULL_NAME;ROLE;COUNT"
    Do Until objFile.AtEndOfStream
    strRline = objFile.ReadLine
    if left(strRline,12) = "DECLARE USER" then Redim Preserve arrFileLines(i)
    strTemp1 = MID(strRLine ,15 , 50)
    strTemp1 = MID(strTemp1 ,1 , instr(strTemp1, """")-1)
    IF instr(strRline,"}" ) >0 THEN
    strTemp2 = MID(strRLine , instr(strRline,"{")+ 1, (instr(strRline,"}") - (instr(strRline,"{")+ 1)))
    ELSE
    strTemp2 = ""
    END IF
    arrFileLines(i) = strTemp1 &";" & strtemp2
    intRoles = 1
    i = i + 1
    end if
    if intRoles >= 1 then
    if instr(strRline,"HAS ROLES (" ) >0 then
    intRoles =2
    end if
    if intRoles =2 and instr(strRline,"HAS ROLES (" ) =0 then
    strTemp3 = MID(strRline,instr(strRline, """")+1,50)
    strTemp3 = MID(strTemp3,1,instr(strTemp3, """")-1)
    WScript.Echo arrFileLines(i-1) &";" & strTemp3 &";1"
    end if
    if intRoles =2 and instr(strRline,")" ) >0 then intRoles = 0
    end if
    end ifLoop
    objFile.Close
    Source : Srinivasan Software Solutions Pvt.Ltd.: [OBIEE 11g] OBIEE Get All Users And Roles From RPD

  • How to get all users from the server....?

    Hi all,
    in my application i want to get all possible users present in the PORTAL-EP Server
    and set them into the drop down.
    is there need to login in the portal as a admin or other user to get the all users present in the Server.
    Regards,
    Deepak

    Hi! Deepak,
       you can use UME API to get all the users of EP in WebDynpro appl.
    Herewith i am giving you the UME API link --
    <a href="http://help.sap.com/javadocs/NW04/current/um/index.html">http://help.sap.com/javadocs/NW04/current/um/index.html</a>
    i am giving the code also to get all the users from LDAP.
       IPublic<ComponentName>.IUserIDElement userIDNodeElement = null;
    IUserAccountFactory accountFact = UMFactory.getUserAccountFactory();
    MessageManager msgMgr = (MessageManager)wdThis.wdGetAPI().getComponent().getMessageManager();
    try {     
    IUserAccountSearchFilter accountSearchFilter  =  accountFact.getUserAccountSearchFilter();
    accountSearchFilter.setLogonUid("*",ISearchAttribute.LIKE_OPERATOR,false);
    ISearchResult srchRslt = accountFact.search(accountSearchFilter);
       while(srchRslt.hasNext()) {                    
                    userIDNodeElement = wdContext.createUserIDElement();          String uniqueID = (String)srchRslt.next();
         IUserAccount userAccount = accountFact.getUserAccount(uniqueID);
         String LogonUid = userAccount.getLogonUid();
         userIDNodeElement.setCtx_UserID(LogonUid);
         wdContext.nodeUserID().addElement(userIDNodeElement);
        } catch(Exception exc) {
                  msgMgr.reportWarning(umException.toString());
    regards,
    Mithilehwar

  • Fresh Install of Mountain Lion how do I export users from Lion Server

    I've been having some issues with Lion Server, mainly Kerberos related and Profile Manager. So I want to start fresh with Mountain Lion.
    I've installed ML and Server, and profile manager is working now for the first time (yay!)
    Now I want to Import all my existing Open Directory users from Lion, I don't want to Import the entire OD though because I think some of my kerberos issues will just get carried over to ML.
    I would like to just export the Users to a file then use ML server to import users from file, but I can't see an option to export in Lion Server, I have tried doing it from WGM on Lion but the 'users' file is not recognised by ML server

    Great thanks for the reply, I'll try it tonight when everyone has logged off.
    Yeah I was very pleased initially with kerberos on Lion, it worked great to start with, now I'm just getting expired tickets for a default realm when some users log in, yet other users continue to work fine.
    I was planning to slowly install Mountain Lion Server and test is thouroghly but I've had a bit of a disaster that if forcing me to go live with ML server quicker than I wanted to!
    Basically because on Lion Server I have all the Service Data on a separate drive, and I upgraded to ML server on a backup copy of Lion Server just to see what it was like, though now I've rebooted the original Lion drive but half of the services are now screwwed up because the ML Server must have changed them, so things like Wiki Server and Profile Manager are now broken from the Lion Server boot, they just show "Error Reading Settings"
    I realise now I should have moved the Service data back to the local drive before doing a test upgrade so I wouldn't have messed it up! but now it seems like my best way forward is a fresh install of ML Server

  • How to extract original file contents from content server

    Hi,
    1)How can we extract original file contents from the content server (which in our case is SAP database itself)...
    2)What exactly is PHIO_ID and LOIO_ID?
    Thanks and regards,
    Santhosh Kumar U.P

    Hi,
    concerning your first question - please decribe, what you are trying to do.
    Question 2:
    LOIO_ID is the ID of the Logical Information Object. A LOIO is not a real document, but kind of a virtual document, a containerfor all "real" versions of a document. A PHIO (physical info object) is a real document.
    you can read more at http://sercie.sap.com/Kpro
    Kind regards,
    Carl

  • Moving Users from one server to another

    Is it possible to move my network users from one Xserve to another? I know this used to be possible to do with NetInfo, but I haven't heard of anything like this using Ldap.

    I used Open Directory Archive/Restore in Server Admin to carry over my ldap users through a reinstall. Their UIDs, groups, passwords, etc. all came across. The home directories were on a different volume and everything basically worked after the reinstall.

  • Moving users from one server to another using Shared Services

    How do you migrate users and groups from one server to another from Hyperion Shared Services in version 9.3.1?
    When users were provisioned from EAS on version 7.x we could use Migration Utility but now since users are provisioned using Shared Services, what is the approach to be followed?

    Someone will probably give you a real-world example of how to do it, but to get you started you may want to review the Hyperion Security Administration guide, section "Migrating Native Directory" which discusses that you need to first install the Import/Export Utility on your Shared Services server, then create an export file, then go to your target Shared Services Server and long story short, import it.
    -Karen

  • More hard bounce for invalid user from mail server

    Hi guys,
    this is my first post, but i have reade more post in this forum.
    my questions is:
    i have a domain into my ironport that receive more invalid recipient but the hard bouns are generate from mail server after the incoming mail pass trhough ironport.
    I don't have a ldap server
    you can help me for find a solution for block the invalid recipients?
    this is my idea:
    create a new dictionary with into all host of the domain and i apply a policy for control this dictionary.
    thi solutio have a problem that i must inser in dictionary every new user create in the mail server.
    regards
    Michele

    This would really be much easier if you had LDAP. If there is any way you could get LDAP to work in your environment, then that would make the IronPort end of things much easier. But if not, then you can do other things.
    Using a dictionary as you suggest would work, but it would mean accepting the bad messages and then bouncing them. This is because you can't consult a dictionary during the SMTP conversation. A better solution would be to put the allowable recipients directly into the RAT. That would cause the invalid recipients to be rejected during the SMTP conversation, which will reduce the amount of backscatter you generate.

Maybe you are looking for

  • Need to move my applications to new OS and Hard Drive, but Tiger doesn't have Time Machine, right?

    I updated my RAM, put in a new hard drive, and updated my OS from tiger to snow leopard (no I'm NOT ready for lion) all at the same time on my 2007 MacBook. Though I backed up general files on my hard drive, I didn't do a full system backup, and now

  • Does the LG Dare require a data plan?

    I have an LG Dare that I would like to use on an existing plan. BUT I dont want to pay for data, so I was wondering since Verizon has changed so much with their plans, does the LG Dare require a data plan in order to use it on my plan? All I use the

  • SALES-ORDER-TO-CASH-RECEIPT(S2C)

    Dear SRM Experts, How does the integration happen with S2C with SRM?.I need your valuable inputs. Regards, kiran

  • Looking for answer

    Here is my problem. I spent hours on the phone with tech support working to get my Airport Extreme to connect to my power mac (via ethernet, which was working) and my laptop (via airport card, not working). Granted at the end of the phone call, I had

  • Polygon Lasso Tool Closes Selection at Random

    I am experiencing the same Polygon Lasso glitch that has been brought up by several others; however, I haven't seen a solution.  I'm posting again JUST IN CASE someone new sees this and can share how they may have overcome this frustrating issue. Her