Domain bindings doesn't show short text of domains

Hello forum,
I am facing a problem in a bsp view. I want to create a dropdownListBox where the values displayed are the short text values in the domain.
I found a SDN guide (https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/72d7ac11-0501-0010-63a2-cc6960569926) where they are demonstrating this feature.
In my views only the Fix. Val. gets displayed, not the Short Text.
Here is the coding... any ideas what I am doing wrong?
<htmlb:dropdownListBox id         = "user_type"
                             selection  = "//model/user.user_type"
                             helpValues = "//model/user.user_type" />
Thanks,
Chris

I have only used Acrobat Pro, not Standard. Does Standard have a Content Pane? If so, I would try selecting each content element on the page till I found the image, and drag it above the text elements in the content order.
Hope this helps.
a 'C' student

Similar Messages

  • ICal doesn't show all text for the activity

    When I updated to iCal version 8.0 i noticed that when I am in week-view, iCal doesn't show all the text for an activity, although there is plenty of room. For example I have a lecture from 9 am - 4 pm and in the activity I put down all the things I have to do, but it only shows the first line for my activity. I need to drag the box or double click on it to see all the text. Can I change this?

    Gabriella,
    Sometimes making the Calendar window bigger, or using full screen allows additional text to be displayed.
    View>"Make Text Smaller" is also an option for those with Eagle Eyes.

  • Hierarchy node text shows short text instead of medium text in WebI report

    Hi,
    We have created a simple Hierarchy suing Tx RSH1.
    US -> North Carolina
              South Carolinakey
             Rest of America
    Please note "North Carolina" is the medium text for the node while the short text which can contain max of 10 chars is "North Caro"
    We have used and activated the hierarchy within the BEx query. Text display with "Medium Text" has been enabled for the InfoObject. The display on the BW report is as expected showing the medium text for all levels and all modes.
    When a universe is built on the query and a WebI report is created based on the universe everything works fine other than than the Hierarchy text for different levels and nodes. Instead of showing the Medium text, the short text is getting display.
    We took out the text object from the Universe in the Universe designer and went ahead with the key and medium text, but that did not help.
    Is this a known bug? Is there a workaround for this issue?
    We are on XI 3.1 SP3.
    Rgds

    Hi,
    I am working on BO XI 3.1 SP2.
    I have displayed the medium text for the hierarchy nodes as:
    In my universe three detail objects(key, medium name and long name) gets generated for each hierarchy node.
    I have copied the definition of L01 Medium name (detail object) in the L01 dimension object. similarly for other hierarchy nodes.
    i.e. L02, L03.. etc.
    Now the master data which have been loaded for the medium name will be displayed.
    Regards,
    Rohit

  • Firefox doesn't show original text when replying an e-mail in Hotmail

    Firefox doesn't show the original text when replying an e-mail message in Hotmail. It's not an account issue since I've tried the same with Explorer and the original text DOES show...
    == URL of affected sites ==
    http://www.hotmail.com

    anyone fix the problem yet?I cleared my cookies and that didnt work.

  • Hierarchy in selection screen shows Short Text, I want to change it to Med

    Hi
    It seems that the selection popup of Hier is using the Short Text of the Charc.
    Can I change it to use Med Text?
    I tried in the Query, it only changes the way the Hier is presented in the reort
    and not in the selection screen.
    Thanks
    Edan

    Hi Edan,
    You could select the type of text you want to display on selection screen by choosing the same under the Business Explorer tab of your Hierarchy infoObject.
    Go to RSA1 -> infoObject -> find your hierarchy infoObject -> Display -> Business Explorer tab ->
    Text type -> Medium-length text.
    Hope this helps!
    Regards,
    Saurabh

  • Scrollbar doesn't show all text in RichEditableText component ...

    The program is loading text from an external XML-file into a RichEditableText component.
    However, scrolling an scrollbar does not show all the available text.
    To me, it looks like the scrollbar is not updated to adopt itself to the new text.
    Does someone has any pointers, how to fix this, because I have no clue where to look?
    Thanks in advance,
    Peter
    Code snippets:
    The bindable 'data' is filled with an html-formatted text, when the XML-file is loaded.
    TextFlow is used to display the html-formatted text.
    MyTextScrollPanel component contains VScrollBar and component MyTextScrollPanelScrollingContentSkin:
    <s:VScrollBar id="vscrollbar" left="185" right="0" top="0" bottom="0" fixedThumbSize="true"
    viewport="{contentGroup}" />
    <components:MyTextScrollPanelScrollingContentSkin id="contentGroup" clipAndEnableScrolling="true"
    left="0" right="20" top="0" bottom="0"/>
    MyTextScrollPanelScrollingContentSkin component:
    <fx:Script>
              <![CDATA[
              [Bindable] public var data:String;
              ]]>
    </fx:Script>
    <s:RichEditableText id="textContent" d:userLabel="Text" x="0" y="0" width="185" height="682"
                                  editable="false" selectable="false" color="#ffffff"
                                  fontFamily="Myriad Pro" fontSize="12" tabStops="S0 S50 S100 S150 S200"
                                  textFlow="{TextConverter.importToFlow(data, TextConverter.TEXT_FIELD_HTML_FORMAT)}"
                                  whiteSpaceCollapse="preserve" >
    </s:RichEditableText>

    One (practical) solution I came up myself, is adopting the height of the RichEditableText to the length of the data:
    <s:RichEditableText id="textContent   ...  height="{data.length}"      .... />
    A practical height value turns out to be {data.length/2}, indicating that 50% of the text is html-tags and whitespaces (??)
    Does someone knows or could point to a more elegant solution?
    Note: the division "/2" worrows me, since the customer is proving the text.
    Thanks,
    Peter

  • JPanel doesn't show new text after JLabel edit

    Hello,
    I am trying to create a custom progress bar-esk window to show users during lengthy methods.
    I have a new Thread which creates and displays a new ProgressWindow object (a JFrame with a JPanel and JLabel attatched). At second intervals the text of the JLabel attatched to this frame will change. however the text seen in the window is not updated.
    System.out's show the value of the JLable to be correctly changing.
    Here is the code for creating the Thread and window:
         Runnable r = new Runnable() {
                        public void run() {
                            try {
                                prog = new ProgressWindow();//creates the frame
                                prog.addStuff();//adds the components
                                prog.addListeners(inter);
                               while(true){
                                   prog.makeAnimation();
                            } catch (InterruptedException ex) {
                                ex.printStackTrace();
                            } catch (IOException ex) {
                                ex.printStackTrace();
                   new Thread(r).start();and the code within the ProgressWindow class which updates the label
    public void makeAnimation() throws InterruptedException, MalformedURLException {
            Thread.sleep(1000);
            if (dots == 0) {
                System.out.println("dots 0");
                labelPanel.remove(dotty);
                dotty = new JLabel("Analysing input  ");
                labelPanel.add(dotty);
                labelPanel.repaint();
                dots++;
            } else if (dots == 1) {
                System.out.println("dots 1");
                labelPanel.remove(dotty);
                dotty = new JLabel("Analysing input .");
                labelPanel.add(dotty);
                labelPanel.repaint();
                dots++;
            } else if (dots == 2) {
                System.out.println("dots 2");
                labelPanel.remove(dotty);
                dotty = new JLabel("Analysing input ..");
                labelPanel.add(dotty);
                labelPanel.repaint();
                dots++;    
            } else if (dots == 3) {
                System.out.println("dots 3");
                labelPanel.remove(dotty);
                dotty = new JLabel("Analysing input ...");
                labelPanel.add(dotty);
                labelPanel.repaint();
                dots = 0; 
        }I assume this is a threading issue, however I don't understand why the value is correctly changing, but not being repainted. I'd appriciate any insight :)
    thanks :)

    Fillis52 wrote:
    ..As for the SSCCE, I have looked at the linked site and honestly thought I had met the requirements. The code was formatted, and only the methods which presented the problem were given. Should I have included the code to create the window also?The first 'S' seems covered, but it is not SC, C or an E. Which part of the words associated with those letters are you having trouble understanding?
    If you had copy/pasted your code into the STBC (as recommended in the SSCCE document), it would have been obvious that it was not an SSCCE.
    Instead of being rebuked, I should be told what is missing from my post in order to create a SSCCE as i obviously dont know how to do it properly.You expect us to have a crystal ball? Instead of complaining, it would be more productive to be specific about what part of S-SC-C-E document you do not understand. And this time, read it carefully, don't skim it.

  • Keynote doesn't show highlighted text when played.

    I have highlighted text fragments on several slides. The highlight behind those text fragments looks fine when in design mode, but does not show in Play mode. These text objects are layered in front of other graphic objects. Does anyone else have this issue?

    I thinks I figured this out. Highlights are treated like comments and are annotations attached to text rather than first-class objects n their own right. They are similar to PDF annotations.

  • Preview doesn't show normal text

    Hi!
    Today I downloaded a .pdf file and when Preiview opened it the text was mostly consisting of squares. Images looked fine. I then opened the file in Abrobat Reader and it looks fine.
    I have another pdf file from the same author that I downloaded last week and it is fine. Is the problem on my end or hers? What can I do on my "puter"?

    Hi!
    Today I downloaded a .pdf file and when Preiview opened it the text was mostly consisting of squares. Images looked fine. I then opened the file in Abrobat Reader and it looks fine.
    I have another pdf file from the same author that I downloaded last week and it is fine. Is the problem on my end or hers? What can I do on my "puter"?

  • Firefox Support forum web page doesn't show any text

    All other web pages load perfectly except Firefox Support Forum. It shows only search box and some tag words. When I type into search box, nothing shows but when I hit enter I get only tag words that I typed. I've tried reinstalling FF and started in safe mode. Nothing fixes it. I've been trying to figure this out for months. I've tried Chrome and IE8. Evidently its not a browser problem. I'm using Vista Home Premium SP2. I'm sending this from my XP, no problem with it.

    cor-el
    fixed, thanks for your help with this.
    Please advise if there is there any reason to be concerned about changing this from the default setting.

  • Lov: How to show Medium Text

    Hello,
    In a webi report I am using variables which are created in the Bex query, using a variable which is creted on BEX  displays both text and key in the prompt lovs Box/Window.
    I am having issues with a variable which is using a Info-object which has short description and Medium description, Looks like BO by default shows short text and key in the promptlovs Box/Window.
    Is there any way I can display medium text and key in the prompt lov's?
    Thanks
    Ram

    Hi Rod,
    Yep, but how can I use just the code to match with where clause?
    I mean in this case I need to create a extra column with code + description to match combo code + description.
    Is there any way to work around this e.g: code + description on the combo box and just use the code from the combo to perform the search.....substr( combo box) ?
    Cheers,
    Alex

  • Finding short text description of Fixed values for value range for domain

    Hi,
    When I got to Dictionary: Dispaly Domain and click on tab value range; I get the template showing Fix. Val and its associated short text.
    I want to fetch the short text for a particular fix. val for a domain.
    How can I do that ? What table can I use it ? Or do I need to use some function module ?
    Lets say I want to fetch the short text for a given Fix val. for domain VBELN.
    Please help me out.

    Hi,
    You can use Function Module 'FM_DOMAINVALUE_CHECK' to get the fixed values of any domain.
    Regards,
    Atanu

  • I updated to yosemite and now if someone is using imessage and sends a text message to my phone it doesn't show up on my phone but does on my computer.  I don't want messages on my computer!  How do I get this to go away and work like it used to?

    I updated to yosemite and now if someone is using imessage and sends a text message to my phone it doesn't show up on my phone but does on my computer.  I don't want messages on my computer!  How do I get this to go away and work like it used to?

    Follow the instructions under the heading "How to unlink a phone number" on this page.

  • Text Caption Doesn't Show in Edit

    Has anyone else had this issue, it has happened a few times
    for us: A Text Caption can not be seen, accessed or updated on the
    Edit Screen .. But, it is visible on the Thumb Nail, Timeline, and
    Storyboard. When a Preview is run, it also shows up as it should.
    However, if you run it from the Timeline is doesn't show up.
    At first I thought it was a layering issue, but bringing the
    text to front doesn't solve it. Any ideas? Thanks!!!!

    Welcome to our community, Jane
    If you look at your Timeline, does it maybe look like what
    you see in the linked image?
    Click here to view
    the image
    Cheers... Rick

  • Why isn't my battery percentage working? I click to have it on and when it's on it doesn't show up, also when I try and change my text ringtone , and soon as I back out of the sounds setting when i recheck again it's back to the original default soun

    A Couple ddays ago I noticed my phone started acting wierd like the white screen with the apple picture on it popped up when I was on the phone.. All my contact names were deleted, and hours later the names popped up again. Not today I noticed something that's really ******* me off!!!!! (Lol) when I check to have battery percentage on (it's green showing its on) but it doesn't show at the top, and when I back out of the setting and go back the battery percentage is off again! Now with my text tingtone I try to change it back to how I used to have it and it just doesn't let me! I click a certain sound and back out of the settings and it's back to the defauLt !!!!! And check this out!!! The weird part is my phone randomly turned off by its self and when it came back on , I checked my photos and about 20 photos that I deleted months ago were mysteriously added back onto My phone! So can anyone help me :/ idk whats wrong woth this ps I have the 5

    Hello Neygotsole,
    Having your device malfunction can certainly be frustrating. After reviewing your post, it sounds as though your device is experiencing multiple issues. I have located an article that can help with software issues. Have you attempted to restore the device to factory settings without restoring from a backup? Test the issue on a new installation, and make sure that it works. Then use the same article to restore from your backup to either verify it still works, or isolate the issue to the backup itself.
    How to erase your iOS device and then set it up as a new device or restore it from backups
    Thank you for contributing to Apple Support Communities.
    Cheers,
    BobbyD

Maybe you are looking for

  • Using a North American PowerBook in Europe (Istanbul, Turkey)?

    Hello, My wife is traveling to Istanbul (Turkey) with work and she'll be bringing my PowerBook 12" with her. It looks like Istanbul uses the same electricity type as France (220V at 50 Hz with a double-pinned round plug) so I don't imagine there shou

  • RFC - XI - JDBC(mapping only the last row of a record)

    Hello all, in a mapping response from an oracle base after a RFC call with a select statement, i have the following response : <StatementSelect_response>(cardinality 0..1) <row1>(cardinality 0..unbounded) <field1>1</field1> <field2>2</field2> </row1>

  • BOE XI R2 compatibility with BI 7.0

    Hi Experts, My company has BOE XI R2 for Windows SP2 and it is currently working with SAP BW 3.5. Now, we are upgrading our BW 3.5 to BI 7.0. In this case, Can anyone please let me know if the BOE XI R2 is compatible with BI 7.0? Do we need to instal

  • How do you change network location type on Server 2012?

    Within Network & Sharing Center there appears to be no options available to change a network type as you could do in Server 2012? Within Network List Manager policies everything is set to "not configured" so this should not be disabling any functiona

  • Authorisation checks in NWBC

    Dear All, Is there a way, other than testing and tracing, we can get to know the list of authorization objects which get checked for various NWBC functionalities? Or if I move from one Service pack of GRC to another, is some list of new authorization