See the Description of the user in BI Analytics

Hi, we have recently upgraded to BI 11.1.1.6.6. I have export - import users from Weblogic 10 g and 11g.

When the connection of users to BI Analytics, on top-right corner they see their username and not the description (or first name and last name). Any ideas on how to get the display name of the Description filed in a Weblogic user configuration.

Thank you
Srikanth

Go to the attributes tab in the user settings and put the full name in the field of displayname .

Tags: Business Intelligence

Similar Questions

  • See the users that you have shared a Script with

    Is there a way to see the users who you have shared a script with?  I spent in and added the email addresses of a few people with different roles and wating to do a couple things:

    • Make sure that everyone who needs to access, I added
    • Who are the co-authors or commentators on the color code

    I don't see anywhere that I can view those which I gave access, to check or do one of those two things.

    Your help is appreciated.

    So that the script is not accepted by all the world appears as a Document not shared. If you click not shared Document your name would appear there with the owner role. As soon as the first person to accept the script, it looks like Shared Document (2 users) and clicking on it would reveal your name and the name of the worker. This number and the information contained in this area would be keep to increase as users increasingly accept the sharing of the script.

  • Unable to see the user in presentation Services

    Hello
    I created a user in OBIEE administrator but I don't see the user when I go to the Administration of the Referral Services. All the world is facing this problem?


    Thank you

    If you need to set the security permissions on the user who is logged in to create a group in the administration tool that points to the USER variable and create the group even in presentation services to set relevant privileges in this regard. In this way the LDAP user would inherit all the security features set for the group to which it belongs once it connects. If you do not need to set privileges on the user, then you have no connection as an LDAP user. In order to see the users, it should be possible that when the user logs in for the first time after the LDAP authentication.

  • Is there a way to see the user password?

    Hi the gods s/n,.

    I'm a newbie DBA in Oracle and explore in the soul.

    say for example a user has forgotten his or her password and does not reset the password to another and wants the DBA i.e. me to show the password of her on DB. so is there a way to see the password right other that encoded the password?

    sweetritz wrote:

    Does this mean that there is no way to see a password?

    There is no way to see the plain text password

  • Help! Can't see the user data...

    I've been using Palm Desktop 4.2 for some time on my laptop (Windows XP SP3) to the notes, calendar, and contacts/address book, but a couple of days Desktop no longer sees the data. The files are still there in the folder of user name and I can see a part of the data if I import the files one by one, but I guess there is a simple method for re-login to the desktop with the file of the user application. I've looked through the forum and Knowledge Base, but could not find a query that was exactly it.

    Thank you!

    After you have created the new user, copy and paste the .dat files in the correct location of the new user.

    Message relates to: None

  • How can I see the user on a target disk library?

    Migration Manager does not work to move a user to a new iMac. We can slide on the user a little at a time, but how do you make the user visible on the disk library I target disk mode? (The old laptop will start is no longer)

    Open your home folder on this drive, choose go to folder from the Finder menu and provide the library as the path.

    (137598)

  • could not be able to see the RPD in BI Analytics(OBIEE 11g)

    Hello

    I had been sent RPD median molten ware.but I am not able to get the file RPD BI Analytics.

    Thanks in advance

    Hello

    After deployment, try to open the RPD in online mode and check if your changes are reflecting.
    When you enter the password and click on apply, the RPD 'by default' should increase (for example, something_BI0101.rpd to something_BI0102.rpd). Check what is happening. After clicking on activate the changes, and then restart the services, check the directory of the server for the new file and check NQSConfig.INI and make sure that it all adds up.
    If you have any rpds in the directory on the server with a number that has not been used yet I found that can cause problems (for example if you copied a dev server to test).
    Also download the active RPD and compare it to your offline version to see if they are different.
    Just to be clear, you're clicking on apply after browsing for the file, and then click Activate changes?

    Please follow the procedure below:

    http://obiee101.blogspot.in/2010/08/obiee11g-deploying-new-RPD.html

    I hope this helps.

    Concerning
    Young

  • PLEASE, I BEG YOU! How can I have a label dynamically see the current user loggedin FirstName and LastName in my database?

    I have a HBox that becomes visible when a user is valid. The HBox contains a logout button, and a label. How can I get the label dynamically see the current user loggedin FirstName and LastName in my database? Below, I have included my element HBox and ColdFusion. ANY helpwould be appreciated!



    < < < < < < MY component LoginHBox.mxml starts HERE > > > > > > >
    < mx:HBox
    ' xmlns:MX =' http://www.adobe.com/2006/mxml '
    Width = '100% '.
    height = "28".
    horizontalAlign = "right."
    verticalAlign = "middle".
    paddingRight = "10" >

    "" < mx:Script source = "... / actionScript/logout.as" / >

    <!-App connects to ColdFusion using Flash Remoting STARTS->
    < mx:RemoteObject
    ID = "cfService_LoginCFC".
    destination = "ColdFusion".
    source="WebsiteApplication.CFC.LoginCFC"/ >
    <!-App connects to ColdFusion using Flash Remoting END->

    < mx:Label id = "welcomeLabel".
    Text = "Welcome"... "/ > < < < < HOW can I get the text dynamically see the users registered in FirstName and LastName?

    <! - logoutResultHandler() of the points of function in the file logout.as - >
    < mx:Button id = "logoutButton.
    label = "Log" Out
    Click = "logoutResultHandler ()" / >

    < / mx:HBox >
    < < < < < < MY component LoginHBox.mxml ends HERE > > > > > > >



    < < < < < < MY component LoginCFC.cfc starts HERE > > > > > > >
    < cfproperty >

    <!-function loginUser STARTS->
    < name cffunction = "loginUser" access = "remote" returntype = "WebsiteApplication.cfc.UserCFC" >
    < cfargument = 'user name' name type = "string" required = "true" >
    < name cfargument = "password" type = "string" required = "true" >

    <!-the default user is not logged in->
    < cfset var user = createObject ("component", "UserCFC") >

    < cfquery name = "loginQuery" dataSource = "TheChurchOnFire" >
    SELECT the name of user, password, AccessLevelID, FirstName, LastName
    FROM dbo. MembershipInfo
    WHERE
    Username = "#username #
    AND password = ' #password #
    < / cfquery >
    <!-the cfif instructionsuivante is absolutely fundamental in the achievement of the
    fully functional authentication-> process
    < cfif EQ loginQuery.Username ' #username # ' loginQuery.Password AND EQ ' #password # ' >
    < cfset user .loggedin = true >
    < cfset user .username = "#username #" >
    < cfset user .roles = "#loginQuery.AccessLevelID #" >
    < cfreturn user >
    < cfelseif > #username # EQ 'username' AND #password # EQ 'password '.
    < cfset user .loggedin = true >
    < cfset user .username = "#username #" >
    < cfset user .roles = "6" >
    < cfreturn user >
    < cfelse >
    < cfreturn user >
    < / cfif >

    < / cffunction >
    <! - function loginUser ENDS - >

    < / cfproperty >
    < < < < < < MY component LoginCFC.cfc ends HERE > > > > > > >

    Thank you

    John

    I finally thought to it! PRAISE BE TO GOD!

    I had to add...

    welcomeLabel.text ='Welcome, you are currently logged in as + currentUser.fullname + '!';

    .. .for my loginResultHandler.

    function loginResultHandler
    private void loginResultHandler(event:ResultEvent):void
    {
    currentUser = event.result as a user;
    If (currentUser.loggedIn)
    {
    If successful login
    If (currentUser.roles == '5')
    {
    this.currentState = 'Youth';
    welcomeLabel.text ='Welcome, you are currently logged in as + currentUser.fullname + '!';
    }
    Else if (currentUser.roles == '4')
    {
    this.currentState = 'Member';
    welcomeLabel.text ='Welcome, you are currently logged in as + currentUser.fullname + '!';
    }
    Else if (currentUser.roles == '3')
    {
    this.currentState = 'PowerMember';
    welcomeLabel.text ='Welcome, you are currently logged in as + currentUser.fullname + '!';
    }
    Else if (currentUser.roles == '2')
    {
    this.currentState = 'AssistantAdministrator';
    welcomeLabel.text ='Welcome, you are currently logged in as + currentUser.fullname + '!';
    }
    Else if (currentUser.roles == '1')
    {
    this.currentState = 'SeniorAdministrator';
    welcomeLabel.text ='Welcome, you are currently logged in as + currentUser.fullname + '!';
    }
    on the other
    {
    currentUser.roles == "6";
    this.currentState = 'Visitor';
    welcomeLabel.text = 'Welcome, you are currently logged in as visitor!';
    }
    }
    on the other
    {
    If unsuccessful login
    Alert.Show ("unsuccessful Login", "Server authentication");
    }
    }

    Michael_ramirez44 thanks for your help!

    John

  • the user of the simultaneous listing licenses

    Hello

    We have 5 tiara concurrent license. Now is mounted in use and I find myself being frequent "who uses licenses" so as to address users who may have checked out a license but are not needing more. Or not as desperately as another user.

    I tried to read the log file, but it contains a long list of mixed entries. Screening on the licenses that have been checked, but not yet once, it is almost impossible.

    Y at - it a simple method to see the users or IP addresses or computer names are at this time using the licenses?

    In addition, a monitor of operating time would be of great help to decide if and how many new licenses.

    Thank you.

    Michael

    Hi Michael,

    You use Volume License Manager OR? NEITHER Volume License Manager 3.1 was released recently and it has some new features that will help you answer such questions.

    We have improved the ability of the administrator to see which licenses are used with the new tab in use:

    This gives you a clear vision of the common use for each license. In order to obtain the most recent data, you can click the button reload.

    We have also added 3.1 VLM reports. Seat utilization reports are designed to answer your question of how many new licenses to acquire.

    This screenshot shows the use of licensed competitor of tiara more than a year. The report will indicate how many licenses were in use and display how many users have been denied. This information will help you determine how many licenses you need.

    If you already use VLM 3.0, you can Download NI VLM 3.1 and use your existing license file. If you are using an older version of VLM or FlexNet Publisher, contact [email protected] and let them know that you need a new license file.

    Please let me know if you have any additional questions!

  • Need to access the user accounts from previous installations

    I am running Windows XP Pro, and I have installed new software.

    When I have it ran for the first time my PC crashed. Now, whenever I try to load it up it just keeps restarting before you get to the login screen. Safe mode does not help you, or doesn't last known good configuration. There is no recovery point recorded.

    I searched online for help and tried to repair the Windows version by inserting the CD and choose 'Repair', but there is no repair option. He wants me to install a new version of Windows on the partition, which, from what I understand, going to wipe my user accounts. It would be a big problem, as I have a lot of data out there that is very important for me who is not saved. My fault, still backward, etc. No not after the sympathy, just stating the facts!

    I also have Windows XP 64 is installed on a separate partition, and I loaded this up to see if I can see the user account I want to access. I can. But I can't access it because it is password protected, and it just comes up saying 'access denied '.

    So, how do I gain access to this user account? Doing anything to the working version of XP64, either by repairing the other partition inactive?

    All welcome, no matter how much of a long shot it is advice. I'm getting desperate!

    Thanks in advance.

    Hi Malkeleah,

    I had real problems trying to get Knoppix to work. I downloaded on my laptop, then had to put on a USB key to burn on the PC with Win 64 on (portable DVD player is read-only), but I couldn't do burn. I kept of burning errors using the built-in burner after first unpacking the ISO on the laptop (no support ISO native in Windows XP), or when I tried to install on win 64 the system burning software I got error messages saying: the software wouldn't run as soon as I clicked to install it. And Yes, I checked that I was using the software compatible 64-bit! No idea what it was, the 64-bit version has never really been used, not even well why it is installed.

    In any case, after that much hitting my head on the office followed a couple of pints in pubs, I managed to find another way around this problem, which was to take ownership of the files according to the instructions on the Microsoft Web site:

    http://support.Microsoft.com/default.aspx/KB/308421

    It worked wonderfully for me, and I have been able to support Windows 64-bit, re - install XP 'normal' and then appropriated again under that. 2 files come with errors and would not sell the property, but they were not even remotely important if everything is good. I got literally thousands of other files that flies over without any problems.

    In any case, thank you for taking the time to help me, I'm sure that your method would have worked if I had been able to create a CD (I would have posted off the coast for one if everything else has failed because they will send one in the world for any $2 IIRC), but for someone else who did a search and found my ad the above that I mention is worth a go as an alternative method.

    And no, I didn't have the encrypted files. Just locked the account of some simple password protection.

    Thanks again,

    Chris.

  • How to view the user or IP address that connected, and change the parameters of Sonicwall

    Hi guys,.

    I would like to ask if there is a way to see the user or IP address that connected, then change the parameters of Sonicwall? Someone change the Web Page to display when blocking under the content filtering settings, and we would like to trace that connected to change the settings of the said. Hoping for your quick response. Thank you in advance.

    This should be in the journal according to the attached snapshot monitor

    The user/ip name should appear in the column notes.

  • How to display the user (logon screen) accounts without typing netpl.exe in search in windows 7

    How see the user accounts window (control the logon screen) without having to enter netpl.exe in search in windows 7

    Hi Micklen,

    1. are you able to see the user accounts to log on or is it logging without showing the user accounts?

    2. what happens when you try to connect?

    3. do you think the user accounts of the login screen?

    4. how many accounts do you have on the computer?

    To better understand the issue, I would need more details so that I can provide appropriate assistance.

  • VCAC 6.0, I can't add a USER to the AD Group to a company includes the user role

    IF I goto to MODIFY an existing group of companies, I can not ad any group Active Directory the "USER ROLE" on the bottom of the page, I'm not sure what I am doing wrong

    in the attachment, I try to FIND ad GROUPS, I see the users but not groups

    Thank you!

    Post edited by: quantum_2

    "" Message edited by: quantum_2 I also have the same problem with the "Group Manager ROLE" and the "support role" I can't announces an ad GROUP

    He can not see the group - I think that it is a known problem, type the name of the Group anyway, and press ENTER.  vCAC will throw an error if it does not recognize the name of the group.  vCAC didn't need to 'find' the name of the group to accept it.

  • Validation of the user cancelled supply

    Gurus,
    I supply cancelled a user to the SSP, and I also released him from all groups in HSS. Elsewhere, where it owns the dimension level security, I took him out of it also. What is the process to validate that the user is not there and more. Is there any script that we can run or any other process to check that the user is not there and more.

    You could just search for the user in Shared Services, if you want to see if there's any supply directly against the provision simply select the user, if you want to see if see the user belongs to any group, select Properties, and then on 'Member '.
    If there is no supply directly against the user and it belongs to no group, then it must have been entirely cancelled supply.
    You could see if the generation of a commissioning report in Shared Services against the user, right click on the user assistance > commissioning report.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Can not see the security headers when you connect the OSB header

    Hi all

    I have a proxy service which I enclose GOSA oracle/wss_username_token_service_policy policy

    I test the OSB project proxy service in the SOAP-ui and when I pass the user name and password in the security header, be invoked successfully. So far so good.

    the entrance of SOAP I'm passing to the proxy service is as below...

    ------------
    < soapenv:Envelope xmlns:soapenv = 'http://schemas.xmlsoap.org/soap/envelope/' xmlns:bpel = "http://xmlns.oracle.com/CESB_APP/HelloWorld/BPELProcess1" >
    < soapenv:Header >
    < soapenv:mustUnderstand wsse: Security = "1" xmlns:wsse = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" >
    < wsse: UsernameToken WSU: ID = "UsernameToken-4" xmlns:wsu = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" >
    WebLogic < wsse:Username > < / wsse:Username >
    < wsse:Password Type = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText" > eu1 < / wsse:Password >
    < / wsse: UsernameToken >
    < / wsse: Security >
    < / soapenv:Header >
    < soapenv:Body >
    < bpel:process >
    < bpel:input > String1gfhyg123 < / bpel:input >
    < / bpel:process >
    < / soapenv:Body >
    < / soapenv:Envelope >

    -----------------

    within the stream of messages of proxy service, I log the header as $header, but I don't see the username and password that I'm passing for a request in the log file, the header is seen empty element something like below...

    ------

    < soapenv:Header some names matter > < / soapenv:Header >

    -------

    In the PS transport configuration tab, I put 'Yes' to get all headers, even I can't see the user name and password.

    Help, please.

    Thank you.

    So I can't have the password in the message flow?

    Would you really? Will vulnerable OSB security and therefore only the user name and optional directors are included in $inbound.

    In addition, why the username and password are not observed in the $header?

    $header holds the SOAP headers, while the security headers are not part of the SOAP headers, and therefore, these are not included in $header.

    Kind regards
    Anuj

Maybe you are looking for