Show User Description in BI Analytics

Hi, We have recently upgraded to BI 11.1.1.6.6. I have exported-imported the users from Weblogic 10g to 11g.
When the users login to BI Analytics, on top-right corner they are seeing their username and not the description (or full name). Any ideas on how to get the display name from the Description filed in Weblogic User Setup.
Thanks
Srikanth

Go to the Attributes tab in the Settings for the user and put the full name in the displayname field.

Similar Messages

  • Show user´s name and lastname using XML Form Builder

    Hello
    I created a XML project with XML Form Builder and i have to show user´s name an lastname in RenderListItem form.Can anybody help me,please? Thanks

    Hi Unai,
    check out the description by Patricio in this thread:
    https://forums.sdn.sap.com/click.jspa?searchID=78716&messageID=1616027
    Hope this helps,
    Robert

  • In material master not all fields show the description of their value

    Gurus -
    Certain fields in the material master show their description text along.
    Example -
    Base Unit of Measure  - EA      each
    The description Text 'Each' which represent 'EA' comes from text Table T006A-MSEHT
    Not all fields in material master show the description of what they represent. (only appear on F4 popup)
    I want this description to come up for MARA-MAGRV field.
    I want the configured value description for this field to appear on the screen.
    I have 3 values put in this MARA-MAGRV
    Z001 - description text 1
    Z002 - description text 2
    Z003 - description text 3
    in MM01/MM02/MM03 only Z001 is see, not it description.
    Here is what i tried
    Added TVEGRT-BEZEI (desc field) in Transaction OMSR and assigned selection group 103 which holds MARA-MAGRV field too
    any config missing?? what say?
    Advises appreciated!
    Thanks

    You have to find out the conversion routine for domain MAGRV and enter in the convers. routine field.
    if did not find one than you have create custom (take ABAPer help)
    go to SE11 adn enter the domain MAGRV and hit display
    on the definition tab you will see the conversion routine
    here you need to populate the appo. conversion routine to see the text on the materia screen.
    Conversion takes place when converting the contents of a screen field   
    from display format to SAP-internal format and vice versa and when      
    outputting with the ABAP statement WRITE, depending on the data type of 
    the field.                                                                               
    If standard conversion is not suitable, it can be overridden by         
    specifying a conversion routine in the underlying domain.                                                                               
    A conversion routine is identified by its five-place name and is stored 
    as a group of two function modules. The function modules have a fixed   
    naming convention. The following function modules are assigned to       
    conversion routine xxxxx:                                               
    o  CONVERSION_EXIT_xxxxx_INPUT                                          
    o  CONVERSION_EXIT_xxxxx_OUTPUT                                                                               
    The INPUT module performs the conversion from display format to internal
    format. The OUTPUT module performs the conversion from internal format to
    display format.                                                                               
    If a screen field refers to a domain with a conversion routine, this    
    conversion routine is executed automatically each time an entry is made 
    in this screen field or when values are displayed with this screen field.

  • How to retrieve User Description for a particular MDM User from Console ?

    In my Application i  have to retrieve User Descripton(a field) for the MDM Users  from Console. I am using MDM Java Api 1(MDM4j) in my application. Is there any way i can retrieve MDM User Description from Console without using MDM Admin API?

    Hi Namrata,
    Sorry, I have a different perspective from you (I don't work with the Java API). So, you can ignore what I said about the protocols. That's lower-level than what you would care about.
    The correct thing to do is to use the Admin API to get the users, as you are doing. If you have to log in twice, it might be because you're using the old Java API.
    Please verify that you're using these packages:
    mdm-core.jar, mdm-common.jar, mdm-protocol.jar, mdm-data.jar, mdm-admin.jar
    versus the old API, which was called mdm4.jar.
    Thanks,
    Cleopatra

  • We need to show User's subordinates hierarchy wise in Reports

    Hi,
    In CRM OD report Reporting level shows user's upper hierarchy..But we need Subordinates also.How can that be done in Report.

    Raju Madari wrote:
    Hi,
    In CRM OD report Reporting level shows user's upper hierarchy..But we need Subordinates also.How can that be done in Report.Most probably you post in wrong forum. this is Application Development in PL/SQL » Reports forum.

  • "View Journal Entry" line when "Export"shows 'Account Description' as TEST?

    When use "Line Drill Down" of Journal Entry line from GL & click on "View Journal Entry" button. The Journal line that appear when "Export" shows 'Account Description' as TEST in the excel or csv file. This issue is happening in Production. Is there any setup thats bringing this 'Account Description' as TEST or Oracle is defaulting this 'TEST'? What is the reason for this?
    It will be of great help if somebody explain this.
    regards,
    Sairam

    Try the patch 9695800.
    By
    Vamsi

  • IBASE-IOBJECT not showing the description

    Dear Experts,
    Am creating IBASE using my standalone program. Its creating properly. My problem is its not showing the Description for the Ibject ( ie product ). While creating component i update the field descr in i_comp_data. But no use.
    Anyone Guide me how to show the description?
    Anandhan

    Hi Anandhan,
    Can you provide the function module used to create the IBASE-IOBJECT.
    Best Rgards,
    Dharmakasi

  • {Solved} Windows 8.1 Doesn't show users when windows loads, only shows options for accessibility and shutdown/restart

    I just recently come into a problem on a dell all-in-one, where the computer has been updated to windows 8.1 and doesn't show users, only a blue screen with the power options and accessibility options and here is how I fixed it.
    Note: you will lose your desktop apps
    1. Turn on computer and let load to the blue screen with the options
    2. While holding down shift click on the power button and then click restart (while still holding shift)
    3. Hold shift until the advanced recovery options comes up
    4. click on Troubleshoot>Refresh your PC
    5.Enter password for user account
    6. Let it do its magic

    Hi,
    Thanks for your sharing. And it will benifit others who encounter the similar issue as yours.
    This issue can be caused by corrupted winlogon components.
    You are right to refresh to repair the system.
    Kate Li
    TechNet Community Support

  • How to show User Auditing data in dashboard/reports in MS CRM 2013 online?

    HI,
    I am having requirement to show user auditing details like user last logged in date/ session spent time in MS CRM 2013 online.
    I did not found any option to query user Auditing data.
    I found the Audit summary View but don't know how to use it.
    Could any one suggest me how to achieve this.
    Thanks
    Baji Rahaman

    Please try this 
    Public Function Decompress(ByVal arr As Byte()) As Byte()
            Dim s As Byte()
            Dim notCompressed As Boolean
            notCompressed = False
            Dim MS As System.IO.MemoryStream
            MS = New System.IO.MemoryStream()
            MS.Write(arr, 0, arr.Length)
            MS.Position = 0
            Dim stream As System.IO.Compression.GZipStream
            stream = New System.IO.Compression.GZipStream(MS, System.IO.Compression.CompressionMode.Decompress)
            Dim temp As System.IO.MemoryStream
            temp = New System.IO.MemoryStream()
            Dim buffer As Byte() = New Byte(4096) {}
            While (True)
                Try
                    Dim read As Integer
                    read = stream.Read(buffer, 0, buffer.Length)
                    If (read <= 0) Then
                        Exit While
                    Else
                        temp.Write(buffer, 0, buffer.Length)
                    End If
                Catch ex As Exception
                    notCompressed = True
                    Exit While
                End Try
            End While
            If (notCompressed = True) Then
                stream.Close()
                Return temp.ToArray()
            Else
                Return temp.ToArray()
            End If
        End Function
    Thanks & Regards Manoj

  • Fm 10: Show Element Descriptive Tags

    Fm 10 > Element Catalog Display Options: what is the option "Show Element Descriptive Tags" supposed to do?
    It's not explained in the Fm 10 Help (or I am unable to find it, but that applies to almost anything I search for in this "Help").
    Thanks
    Yves

    Yves,
    If defined in the EDD using the FM10-new element <DescriptiveTag> additional text will be visible in the element catalog. Lynne Price took advantage of this in her improved template for EDDs, see http://forums.adobe.com/message/3956109#3956109
    It looks like this with the mouse hovering over entry <CommentTable>:
    As I am acustomed to keep my element catalog small I would have to rely on the tooltip appearance. Also, it should be the goal of the EDD designer to select element names which are semantic enough to not need additional information. But anyway, here it is, this feature.
    - Michael
    PS: Further description: http://blogs.adobe.com/tcs/2011/04/framemaker/framemaker-element-description.html
    PS was added by: Michael Müller-Hillebrand

  • My mac startup is very slow, it goes white for long before showing users, how do i cure this illness?

    my mac startup is very slow, it goes white for long before showing user account, how do i cure this illness?

    1) System Preferences > Startup Disk ...
    to set your correct Stratup Disk  AND
    2) Run one pass of Disk Utility "Repair Disk" from another source such as by booting to Recovery_HD OR
    Restart in Safe Mode (which does the "Repair Disk" as it starts up).

  • Spanish login-doesn't show up descriptions on VL10D while doing F4 on plant

    Hi,
    When I login in ECC 6.0 system through Spanish it does'nt show the descriptions of plants.
    When I log in english it shows up? Where do i need to look in?
    I want them to show-up english when not maintained in spanish.
    Any ideas?
    Rgds
    Praveen

    Hi,
    If it is Z development then Translation as to be maintained by the Technical people.
    If it is Standard SAP Program then request your Basis consultant to maintain the code page setting. Which will display in the respective languages of Login.
    Regards
    Give points if useful

  • Will not show user information

    I created a login page and a user page in DW 8. The login
    page validates the username and password and takes you the user
    page correctly. When I create a recordset query on the user page to
    show information from the access database it works fine, but when I
    create a recordset query to show user specific information like the
    users first name based on the username entered into the username
    field of the login form I get the following error:
    ADODB.Field error '800a0bcd'
    Either BOF or EOF is True, or the current record has been
    deleted. Requested operation requires a current record.
    I tried using the recommend macromedia support fix, but it
    did not work.
    Can anyone help?

    What are ou using as the filter for the recordset that is not
    working
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "smdev" <[email protected]> wrote in message
    news:e30rbg$bgk$[email protected]..
    >I created a login page and a user page in DW 8. The login
    page validates
    >the
    > username and password and takes you the user page
    correctly. When I create
    > a
    > recordset query on the user page to show information
    from the access
    > database
    > it works fine, but when I create a recordset query to
    show user specific
    > information like the users first name based on the
    username entered into
    > the
    > username field of the login form I get the following
    error:
    > ADODB.Field error '800a0bcd'
    > Either BOF or EOF is True, or the current record has
    been deleted.
    > Requested
    > operation requires a current record.
    >
    > I tried using the recommend macromedia support fix, but
    it did not work.
    >
    > Can anyone help?
    >
    >

  • GRACACTUSAGE Suddenly Showing User ID "-- ? --"

    Suddenly our GRC 10.1 GRC AC System is showing user ID "-- ? --" in field USER_ID in table GRACACTUSAGE. Could this be this a job sync issue? Not seeing any failures. Job GRAC_ACTION_USAGE_SYNC finishes successful and after reasonable time. - Thanks for any input.

    Hi Alessandro and Joerg
    I stumbled across it in Diego's EAM document
    http://scn.sap.com/docs/DOC-33099
    Have a look at section Common Issues II for Logs not be generated. It seems to point to an authorisation issue with S_TOOLS_EX. Might be the same cause for you Joerg
    Regards
    Colleen

  • Want to show material description in WM - tcode li11n

    Dear All,
    Anyone know how to show material description in LE-WM  - tcode li11n screen? Thanks in advance
    Daniel

    I have not seen this as option, but on the inventory document  (paper form) you have description and number, so it should be enough to match, if that is really needed as the lines appear in the same sequence.

Maybe you are looking for

  • Changed date and time and lost reference to proxy files

    I had a batch of transcoded proxy files (from a Canon 550d) that had the wrong time on them. I used "Modify > Adjust content created date and time" to shift them by an hour. FCP now reports "Missing Proxy" for all of them. I've checked in the events

  • Sample Quiz Application error in resource Bundle

    hi sdns , i am stuck with an error. please help me how to rectify this problem. 500   Internal Server Error   Web Dynpro Container/SAP J2EE Engine/6.40  Failed to process request. Please contact your system administrator. [Hide] Error Summary While p

  • Problems in Caliberation Setting

    Hi, I have an Application where I need to plot the charts using <b>Time-Scatter Graph</b> . I am using <b>2 Y-Axis</b>. But I am unable to dynamically set the Minimum and Maximum y-axis points through code. Currently I have set the Minimum and Maximu

  • BEx variable 0FPER could not be evaluated

    Hi, I am using BW ver 3.1, For one of the infopackage which uses OLAP variable in selection  gives the error message for Fiscal period. "BEx variable 0FPER could not be evaluated - No error message." one way for this problem is using 0P_PRFP1 instead

  • DO we really use Servlet Filters in realtime applications where?

    DO we really use Servlet Filters in realtime applications where? Can any one give me somegood exampleor link where i can find required information. Regards Vijendra