UME Attributes not displaying

Hi,
I have followed the <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/bce8dfbb-0d01-0010-15b0-97e20b8aed96">Extending the User Attributes</a>. We have a LDAP backend thru which we get the user attributes. But we are facing a problem where the user attributes are not showing up in the Portal Business Card. (The popup we see when we click on the user display name in portal). We are using the same namespace as we have mentioned in our UME-LDAP Config file.
What could be wrong???
Regards
BP

Hi
Open your info object and goto attributes tab
select the attribute and goto delete button at bottom to delete.
It should be fine.Otherwise check the authorisations.
Also make sure that master data is deleted before deleting attributes.
Regards,
Chandu.
Edited by: Chandu on Oct 15, 2008 1:06 PM

Similar Messages

  • SSAS Date Dimension attribute not displaying all members when browsed singly

    I have an SSAS Cube database that holds data from 2009 to 2013 (5 years)
    There is a Date Dimension in the database which holds a "Calender Period" Hierarchy with the attributes CalenderYear >> Quarter >> MonthYear >> Day .
    I am connecting to the cube via Microsot EXCEL
    Whenever i try to browse this hierarchy alone in the spread sheet, the first attribute as per the hierarchy shown above i.e. Calender Year does not display all the members, that is confusing the users to assume that the cube is not processed with the latest
    data, which is not the case. However as soon as i try to browse any measure with this dimension, the data automatically shows for the latest dates of 2013 as per the expectations.
    The perspective that is selected while connecting to the Cube in this case is the one that is by default the one including all the Cube Objects.
    Whenever i try to browse the same cube for the same Dimension Hierarchy but in a separate user perspective i get the latest three Calender Years i.e. 2011,2012 and 2013 but not the complete years 2009 to 2013.
    When i was browsing this earlier by the original base perspective (which has all the cube objects visible) the Calender Years displayed were 2009,2010,2011&2012 but not 2013 which should be there.
    I checked the base view in the DB that is used to create this Dimension, that is fetching the complete data for 2009 to 2013.
    I have also verified that this issue is still there if i try to browse the cube from the SSMS.
    Can anyone help me to get all the years from 2009 to 2013 (the years for which my cube has data) become visible as soon as i drop it alone into the Spreadsheet?
    Thanks 
    Suvrat

    Thanks for your response Muthukumaran.
    I did not know about this default measure property of the SSAS cube, it would be nice if you could also tell me how to check which is the default measure for a cube.
    I understand your point that if a particular measure group does not have data for a year then that particular year will be skipped as per the default excel settings, which when disabled allowed all the years to be displayed, but in that case every time the
    users connect to the cube via excel, they will have to configure this property.
    I would like to share the way i resolved this issue:
    I went ahead and simply did a Process Full for the Date dimension. The years started to display by default as per the expectations. Now after observing this change, as per my understanding I believe this issue was due to the CACHE of the cube not being updated
    for the date dimension. As after each incremental load of the DWH we processed the cube & while processing the cube the dimensions were set for a Process Update and the Measure Groups were set for a Process Full. This caused this issue, and we could resolve
    this once the Date Dimension was processed full.
    Thanks
    Suvrat Rai

  • XML attribute not displayed by stylesheet

    HI Gentlemen,
    I set up a very simple case where some of the input data is in attributes. It works fine for the element content--firstname, however it does not display the attribute requested. What can be wrong? Please help!
    Thanks, regards
    Miklos
    The XML instance (people.xml):
    <?xml version="1.0"?>
    <?xml-stylesheet type="text/xsl" href="c:\XSL\people.xsl"?>
    <people>
    <person born="1912" died="1948">
    <name>
    <firstname>Alan</firstname>
    </name>
    </person>
    </people>
    The corresponding stylesheet (people.xsl):
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="person">
    <person born="{born}" />
    </xsl:template>
    </xsl:stylesheet>

    Are you opening "people.xml" directly in a web browser?
    If so, I think you need to transform to HTML for a proper display.
    For example :
    people.xml
    <?xml version="1.0"?>
    <?xml-stylesheet type="text/xsl" href="file://c:/XSL/people.xsl"?>
    <people>
    <person born="1912" died="1948">
    <name>
    <firstname>Alan</firstname>
    </name>
    </person>
    </people>
    people.xsl
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="person">
      <html>
       <body>
        <p><xsl:text>First name = </xsl:text><xsl:value-of select="name/firstname"/></p>
        <p><xsl:text>Born = </xsl:text><xsl:value-of select="@born"/></p>
        <p><xsl:text>Died = </xsl:text><xsl:value-of select="@died"/></p>
       </body>
      </html>
    </xsl:template>
    </xsl:stylesheet>Otherwise, you could use any XSLT processor to perform the transformation.

  • URL Policy agent attributes - Not displayed

    I installed a Policy Agent on a remote Web Server and pointed the policy agent to the Identity Server installed alongwith the Portal.
    When I click on the Policy agent in the Identity Server console , it displays the following message
    "There are no attributes to display for this entry".
    How to obtain the attributes for the URL Policy Agent Service .Is this a problem concerning the IS . Can anyone throw light on this issue.
    thanx in advance
    raj

    It's the way it supposed to be. There is no configurable attributes for this service.

  • Transient bool VO attribute not displaying correctly in table on data fetch

    Hello Forum,
    I have a 'select all' button that programmatically sets a boolean transient attribute on a view object to 'true'. The code to iterate through all the rows in the VO is in a ViewObjectImpl subclass and looks like this:
        public int setAllRowsSelected(String attrDenotingSelection){
            RowSetIterator tempRSI = this.createRowSetIterator(null);
            tempRSI.reset();
            int count = 0;
            while(tempRSI.hasNext()){
                Row row = tempRSI.next();
                row.setAttribute(attrDenotingSelection, true);
                count++;
            tempRSI.closeRowSetIterator();
            return count;
        }The VOimpl method is invoked via an actionListener from a managed bean:
        public void rowSelectForBulkAction(ValueChangeEvent valueChangeEvent) {
            if (!PhaseId.INVOKE_APPLICATION.equals(valueChangeEvent.getPhaseId())) {
                valueChangeEvent.setPhaseId(PhaseId.INVOKE_APPLICATION);
                valueChangeEvent.queue();
            } else {
                String attrNameDenotingSelection =
                    (String)valueChangeEvent.getComponent().getAttributes().get("attrDenotingSelection");
                ArrayList params = new ArrayList();
                params.add(attrNameDenotingSelection);
                JUCtrlActionBinding actionBinding = (JUCtrlActionBinding)EL.get("#{bindings.getCountOfSelectedRows}");
                actionBinding.setParams(params);
                Integer count = (Integer)actionBinding.execute();
                if (!actionBinding.getErrors().isEmpty()) {
                    throw new RuntimeException("Error occured in \'getCountOfSelectedRows\' binding method. Investigate back end to find source of error.");
                EL.set("#{viewScope.countOfSelectedRows}", count);
        }The VOImple method is exposed for the bean to call it.
    The returned 'count' is used determine whether other UI controls should be enabled.
    The code works fine -- all rows have the attribute set to 'true', but the problem I have is when the table is scrolled and the next 25 (or whatever the rangesize is) is fetched for the table, the selectBooleanCheckbox component is not checked. The first 25 or so are checked (i.e., true), but the others aren't.
    The only way I can seem to get all selectBooleanCheckbox components to show as checked is if I set the range to a large number that will hopefully exceed the greatest number of rows ever.
    This seems wrong.
    Is this a bug or is there some setting I am missing in order to get the selectBooleanCheckbox to display correctly?

    In stead of custom method in VO try custom method in AM along following lines
    this.getVO().setRangeSize(-1);
    Row [] rows = getVO().getAllRowsInRange();
    loop through rows setting the transient attribute.
    Anyway setting rangeSize to -1 will force all records to be retrieve.
    HTH
    Kenneth

  • Dynamically created "alt" attribute not displaying

    Hi, I have created a details page for our company product, which is diplayed dynamically. I have on this page a dynamic image as well thats pulled from my database. As with any image on the web, I want to set the alt attribute, but of course this has to be dynamic as well. I have done this it seems, as I view my source code from a browser, I can see that the alt has a value there and that it is the correct value. My question is, why doesnt this display when I mouse over the image? Is there something I am forgetting to add? Is this attribute deprecated? here is my code for the alt cfoutput:
    function(){return A.apply(null,[this].concat($A(arguments)))}
    <cfoutput>
              <table align="center">
                <tr>
                  <td><cfif rsDetails.image1 NEQ "">
                      <a href="images/#rsDetails.image1#" target="_blank"><img src="images/#rsDetails.image1#" alt="#rsDetails.item#" /></a>
                    </cfif></td>
                </tr>
              </table>
            </cfoutput>
    Here is the source code from the browser that shows there is an alt value:
    function(){return A.apply(null,[this].concat($A(arguments)))}
    <table align="center">
        <tr>
           <td>
             <a href="images/60K19DL.jpg" target="_blank"><img src="images/60K19DL.jpg" alt="60K19/DL" /></a>
           </td>
        </tr>
    </table>
    I hope this is easy to understand without going into lengthy detail. Thanks for any help!

    Ok I understand what you're saying now. lol I did try my code without the <a> tag but still didn't work. SO thats kinda weird.
    However, until you pointed it out, I didn't realize his site didn't have the mouse tips in firefox or that other browsers didn't support it, so I guess its not that important after all...the tips I mean.
    I hate IE too! but unfortunately when dealing with an online wholesale site, I must use and develop for IE.
    Anyway, thanks for the help! I may try the title attribute, but I think as long as I have the alt for SEO then I am fine.

  • BEx Query:  Attribute not display Unit of Measure (UOM)

    In a BEx I am trying to create a query that displays attributes to 0EMPLOYEE.  One of the custom attributes is the employee's rate of pay.  We have the hourly rate, nightly rate, etc.  This attribute is a numeric attribute with currency assigned as the Unit of Measure.  I am trying to create a query displaying the pay rates from the attributes of 0EMPLOYEE but remove the unit of measure in the output.  I am aware this can be done on key figures using the NODIM formula.  How can I remove on an attribute?
    Example:  Output is $10.25 UOM.  I want it to display as $10.25.
    Thanks.

    Hi,
    Create a Formula Variable with Replacement Path for this Attribute.
    Use NODIM function for the Formula Variable.
    Let me know if it works according to your requirement.
    Regards,
    Geeta

  • Key Figure Attribute not displaying in Query Designer

    Hello Experts,
    I have an InfoObject which has Key Figures as attributes.  When creating a query I <b>once</b> was able to see these Key Figure attributes in the Query Designer.  Howerver, recently I am not able to see them anymore in our DEV environment. 
    In our QA and PROD environment I am to see these Key Figures attribues in Query Designer.  Is there a setting that I am overlooking?  We are currently on BW 3.5 with SP 19.
    Please help!
    Thanks in advance,
    BQ

    Hi Jaya,
    Thanks for the quick response.  But how to I check the authorization for 1KYFNM and what am I looking for?
    Thanks,
    BQ

  • Key figure attribute not displaying in query

    Hello experts.
    I have a key figure attribute called Credit Limit.  It is an attribute of Customer.  The key figure is type CURR with 2 decimal places. 
    When I maintain master data for Customer, I can see the value fine e.g. 2,000.00
    When I run a BEx Query the very same value displays as 0,00.
    Does anyone have any idea why this could be?
    For info we run BW 3.5.
    Thank you.

    Hi,
    1.please ensure that your master data is activated (right click the IObj, Activate Master Data)
    2. how do you display this attribute? as attribute of the customer? as Nav? as a formula variable ?
    let us know
    Olivier.

  • Navigational Attribute data is not display in Cube level and reporting

    Hello ALL
    Iam facing a problem like,I created Navigational attribute and I selected that navigational attribute in cube level also but data is not display in cube level.
    What will be the problem?Pl help me out.
    regards
    balaji

    Hi Dinesh
    You mean base characteristic means loading data after creating Navigational attribute?Is it this way,(orelse can u tell me about this base characterstic)
    Yes after making that particular attribute as a navigational attribute I loaded data in master data tables.
    How to run Attribute change run?can u give me steps
    regards
    balaji

  • Attributes are not displaying in Navigational Attributes area of DSO.

    Hi Experts,
    I have created a DSO and have included Info Objects 0SOLD_TO & 0SHIP_TO. In the Navigational Attributes area, its attributes are not getting displayed even though the attributes are in the info object.
    What are the steps needed to perform for it to display there?
    Waiting for your reply,
    Thanks in advance,
    With Kind Regards,
    Shreeem

    Hi Shreem,
    If you want attributes of any master objects in navigational attributes section, you have make them navigational attributes while defining base info object.
    Please follow the below steps.
    1) goto RSA1, search for 0SOLD_TO & 0SHIP_TO info objects and open them
    2) goto edit mode of info object and goto attributes section.
    3) here you will find for every object "DIS" --- this means these attributes are display attributes.
    4) If you want to change any attribute to NAV, then click on "Pencil Mark".
    5) Now you can see text NAV instead of DIS for that attribute.
    activate the info object and goto DSO, now you will see that attribute in navigational attribute folder.
    Regards,
    Venkatesh

  • Fixed values of dynamic attributes are not displayed for bid response

    Hi
    I have created a bid with dynamic attributes and have weighted the options with fixed values. I publish the Rfx (bid) and all is ok. The problem is that the fixed values are not displaying when doing a bid response.
    We are using SRM 7.0
    Can anyone help?

    No. Not yet. I think it is a bug. You should create an OSS message to SAP and ask them to pay special attention to the following code block:
    Class: /SAPSRM/CL_CH_WD_DODM_DYNATTR
    Method: /SAPSRM/IF_CLL_MAPPER~REFRESH
    At the end of the method, look for code context:
    IF lv_object_type = c_qte.
    *Set the Fixed Values Table to Invisible
        lv_visible = abap_false.

  • The control of adf media does not display even the Control attribute is set

    Hi
    I am trying to play a clip in a jspx page. I use an ADF media to embed the file and play the file by quicktime. I set the control display attribute to "all" or "typical" but the control does not display when the browser(FF) display the clip.
    Can anyone help me?
    Thanks

    try adding mime-mapping in web.xml. Just a suggestion and I haven't tried this control.

  • How to to not display file attributes in file explorer

    Hi All
    Being new to windows mobile, I am still struggling to set up my new treo pro
    Palm OS just seemed to make more sense!
    The fonts are two small, the lists too long etc.
    My current problem is viewing the MP3's on my SD card.
    File explorer shows me not only the name of the file but also the attributes.
    As a result the name is not display fully, which is problematic if the track has a long name and you have several tracks by the same artist.
    I tried finding on option for customizing the view but could not
    Help anyone?
    tnx
    Ykottler
    Post relates to: Treo Pro T850U (Unlocked)

    I looked for a setting for that but cannot find one.
    You may want to try the program in the following link.
    http://mobilitysite.com/2008/07/resco-file-explore​r-2008/
    For reference purpopses click on the following link for the support page for your device on the kb.palm.com webpage.
    http://www.palm.com/us/support/treopro/t850una_unl​/
    There are links on the page to the user guide, troubleshooting, how to's, downloads, etc.
    Post relates to: Palm i705

  • 0vendor is not displaying name attribute when I maintained master data.

    0vendor is not displaying name attribute when I maintained master data.
    Details: I have four records in the 0vendor infoobject (sand box). I have to show these four records to the client. As i have free hands I maintained master data in the name field and finally activated master data. But when I add the name attribute to the vendor charecteristic in the query designer; it is displaying name attribute as # . Any idea how to display the names of the four vendors in the zquery.
    Also do you know the transaction to copy standard query to Zquery?
    Thanks in advance.

    Dear Les
    For 0VENDOR, Set Property as Key & Text, try once again.
    Yes, you can copy the standard query very well.
    Open the Standard query & using SAVE AS, you can copy to "Z" queries.
    Hope, now you will get some idea
    Regards
    Saravanan.ar

Maybe you are looking for

  • Assign direct material cost to value field in copa while issue to Prod orde

    Dear All, My requirement is like this: There are some 16 material groups from A to P each containing some materials(finished goods). I want to allocate overhead to different material groups(Charecteristic in copa) in COPA using the periodic assesment

  • In Adobe Reader (11.0) the typing is very slow when I insert sticky notes.

    I bought a new laptop and I just installed the latest version of Adobe Reader. When I insert sticky notes, typing is very slow. This doesn't happen with the other program. I've uninstalled and reinstalled. I still have the same problem.

  • Unexpected error during mapping execution

    Hello, we are implementing business intelligence for Siebel 8.1. Having one strange issue and hoping anybody could help us out. We are using OWB 10.2.0.1. Certain error appears during mapping execution LOAD_SR which basically loads service requests f

  • Button actions and Paste into

    Hi, working with the new InDesign CC, I'm somewhat disappointed that the paste into bug, where the button actions are going to be lost if you paste a group of objects/frames into another frame (ex.: go to state action), still exists. The same if you

  • Why no pages, reader or reader list in the Ipad Safari,  Ios 5.1.1?

    My Ipad Safari does not display pages or reading list.  And very seldom displays reader.   I have the latest OS and everything is up to date.   Why don't i have these options available on my Ipad Safari? Howie