No text wrapping in text indicator

If a line is too long to be displayed in a text indicator it wraps to the next line...is there a way to prevent this and rather have a horisontal scrollbar?
At first I though this would be pretty elementary, but it seems not... One alternative is to use a table instead, but is there a better alternative I have missed?
MTO

Currently, strings do not have horizontal scrollbars. You can use multicolumn listbox instead.
Zvezdana S.

Similar Messages

  • Long text indicator against Notification task & SubOrder creation

    Hi all,
    We are using BAPI_ALM_NOTIF_ADD to create long texts against the notification tasks. Though the long texts are created and can be viewed through IW22, the long text indicator in QMSM table is not set and hence when I display the notification through IW23 and navigate to the tasks, the long text available icon is not displayed. I tried to use CREATE_TEXT and SAVE_TEXT as well. Somehow the long text indicator doesn't get set. Do I need to explicitly set this indicator after the BAPI call? Please provide your valuable inputs.
    Also, I have one more issue. Is there a way of creating Sub Order against the PM order through a BAPI? We have a requirement to create a Sub Order against the superior PM order through transaction IW36. Could you please suggest if any of you have come across any BAPI that supports this requirement?
    Thanks & Regards,
    Vidya

    I know I am posting answer to very old thread as did not find any answer so far, so giving clue. See if new solution seekers this helps you now…
    Cause:
    As the create_text or save_text  does creation of text at data base level and does not pass through all the screens of the particular transaction, so the text editor icon is not enabled  [like in tcode IW23 (IW33) Notification display text editor, tables holding damage text and cause text indicator qmfe-indtx & qmur-indtx I ]
    Solution:
    Read existing text using FM READ_TEXT i.e. retain existing text in internal table, say IT_READ
    Delete existing text using FM 'DELETE_TEXT'. Remember to set save_direct = x
    Perform BDC to add dummy text doing call transaction. This will set text indicator to ‘X’.
    Append your new ext to IT_READ.
    Now create text again using FM 'CREATE_TEXT'. Remember to set save_direct = x
    If you have requirement that created text should not be editable then you need to change format of IT_READ.
    Like IT_READ-tdformat = ‘>X’ & IT_READ-tdline = ‘*<one space><your text>’ [may use CONCATENATE '*' IT_READ-tdline INTO IT_READ-tdline SEPARATED BY space.].
    Below are above steps code snap shots.
    Bdc part for IW22
    PERFORM bdc_dynpro USING 'X' 'SAPLIQS0' '7200'.
    PERFORM bdc_field USING 'BDC_OKCODE' '=TXPS'. "DAMAGE_TXT icon
    or   PERFORM bdc_field USING 'BDC_OKCODE' '=TXUR'. "CAUSE_TXT icon
    Based on your text editor configured to keep track of timestamp log, use one of the option. My case first two lines of text editor shown timestamp log lines and they are non editable.
    *  PERFORM bdc_dynpro USING 'X'  'SAPLSTXX' '1100'.
    *  PERFORM bdc_field USING 'BDC_CURSOR'  'RSTXT-TXLINE(02)'.
    *  PERFORM bdc_field USING 'BDC_OKCODE'  '=POSF'.
    *  PERFORM bdc_field USING 'RSTXT-TXPARGRAPH(02)' '*'.
    *  PERFORM bdc_field USING 'RSTXT-TXLINE(02)' 'Dummy text for indicator line 2'.
    *  PERFORM bdc_dynpro USING 'X'  'SAPLSTXX' '1100'.
    *  PERFORM bdc_field USING 'BDC_CURSOR'  'RSTXT-TXLINE(03)'.
    *  PERFORM bdc_field USING 'BDC_OKCODE'  '=POSF'.
    *  PERFORM bdc_field USING 'RSTXT-TXPARGRAPH(03)' '*'.
    *  PERFORM bdc_field USING 'RSTXT-TXLINE(03)' 'Dummy text for indicator line 3'.
    PERFORM bdc_dynpro USING 'X'  'SAPLSTXX' '1100'.
    PERFORM bdc_field USING 'BDC_CURSOR'  'RSTXT-TXLINE(04)'.
    PERFORM bdc_field USING 'BDC_OKCODE'  '=POSF'.
    PERFORM bdc_field USING 'RSTXT-TXPARGRAPH(04)' '*'.
    PERFORM bdc_field USING 'RSTXT-TXLINE(04)' 'Dummy text for indicator line 4'.
    PERFORM bdc_field       USING 'BDC_OKCODE'  '=TXBA'.
    FORM bdc_dynpro USING    value1
    value2
    value3.
    CLEAR bdcdata.
    bdcdata-dynbegin = value1.
    bdcdata-program = value2.
    bdcdata-dynpro = value3.
    APPEND bdcdata.
    ENDFORM.                               " BDC_DYNPRO
    form DELETE_EXISTINGTEXT.
    CALL FUNCTION 'DELETE_TEXT'
    EXPORTING
    CLIENT          = sy-mandt
    ID              =   LTXT
    LANGUAGE        =   E
    name            =   <notification number + suffix>
    –  determine from text editor header damage text need suffixed 0001 , cause text need suffixed 00010001
    object          =   QMFE = damage or QMUR = CAUSE
    savemode_direct = 'X'
    *     TEXTMEMORY_ONLY = ' '
    *     LOCAL_CAT       = ' '
    EXCEPTIONS
    not_found       = 1
    OTHERS          = 2.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    WAIT          = gc_x
    endform.                    " DELETE_EXISTINGTEXT
        CALL FUNCTION 'CREATE_TEXT'
    EXPORTING
    fid         = LTXT
    flanguage   = E
    fname       = <notification number + suffix>
    –  determine from text editor header damage text need suffixed 0001 , cause text need suffixed 00010001
    object          =   QMFE = damage or QMUR = CAUSE
            fobject     = QMFE = damage or QMUR = CAUSE
    save_direct = x
    fformat     = ‘>X’
    TABLES
    flines      = t_editor_text
    EXCEPTIONS
    no_init     = 1
    no_save     = 2
    OTHERS      = 3.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    wait = gc_x.

  • How do I get this text indicator?

    Hi, I am new to Labview and I am going through Labview Tutorials and this one has me stumped. I am using Labview 12 and the tutorial is in the White Papers, Module  7, State Machines, step 10. (Coke Dispensing Machine).
    In the last 3 states in the block diagram they show a purple or pink text indicator named "Money Deposited" with a constant wired to it. I placed this indicator earlier on but only one, can have a different constant for each state? If so how do you do that? The tutorial doesn't explain.
    When I wire the right hand tunnel to the right shift register, all the states in the case structure change back to numbers, delete the wire and they return to named states. Am I doing something wrong, the wiring looks identical to the tutorial.
    I really want to get my coke dispensed, any help is much appreciated!

    Hi Doug_M,
    Let me start with the "Purple or Pink text indicator" you saw on the image. Its actually not an indicator but a "Local variable" of the text indicator. You can create a local variable by right clicking an indicator or control and selecting create, Local variable. You can create multiple local varibales and add it in different states with different contant values wired to it. Hope I addressed your first query. (for more info refere to this link)
    Regarding your second question regarding shift registers. make sure that you are doing the steps 6, 7, 8 and 9 properly. After this when you connect the right tunnel to the right shift register, it should not turn the cases to numbers. One thing which you can check is that in all the states of the case structure, the values wired to the right terminal of the case structure is getting the value of the enum. If there is a non enum value passed at any part of the comparison logic, it may eventually cause the change in cases to numeric.
    It would help us to give you better support if you attach the vi which you are working on from next time onwards when ever you post a question. 
    regards,
    NitzZ
    (Give Kudos To Good Answers, Mark it as a Solution If your Problem was Solved )

  • Can the flashing text indicator be bolded or thickened

    I would like the text indicator to look like the one in this message. How can I do that in Thunderbird?
    Thank you,
    Richard

    It is not something that I am aware of an ability to change. Certainly when I was programming windows the system caret was not something you could modify. That is why I am a little perturbed as you appear to be suggesting your seeing two different appearances. I was not aware that was possible as the operating system only has one caret that all applications must share.

  • On the box model the text indicating content, padding etc is white. It is completely illegible.

    When you inspect a element and go to the box model and hover/click on the different regions of the box model it shows what region the color indicates, for example content, padding,border etc. In Firefox 37.0.1 the text which show the name of the region is White, it is completely illegible and impossible to read. Why would you make the text white? Please revert the change.

    Try to see if there was an option that was changed in the tool:
    *[https://developer.mozilla.org/en-US/docs/Tools/Page_Inspector]
    Else please contact stackoverflow.com and tag mdn, there is a dedicated team for more information.

  • Any help, text flickers in apps but not icons or pictures...

    I have a Ti 1 Ghz and I am starting to have problems with my display. I am not sure what the problem is as it is very strange. When I am viewing text in apps like Word, Safari, Firefox, Textedit, (basically any app), some of the text (sometimes a letter sometimes a word or sentence) gets little black dots flickering/blinking. What's weird is they move with the word instead of staying in one spot (like a dead pixel). So when I scroll the text up or down, left or right the little blinking black dot moves with the text. It also happens when I open certain pictures (moves around with the picture) but not other pictures and so far the text under icons haven't been affected.
    At first I thought maybe it is because of Tiger (I just did an upgrade - fresh install about a month ago) so I booted into OS 9 (which is on a second partition) and the same problem occurred.
    So I thought dead pixels and I ran the hardware test cd. No little dead pixels showed while testing the video.
    So I tried calibrating the display, that had no effect and it is now back at default.
    Then I tried all the different settings for smoothing/anti alaising the fonts I could. I regularly boot up in both Japanese and English (main) settings.
    So maybe drivers, so I went to the ATI website and downloaded and installed the most recent updates available.
    I even thought, hey, maybe my eyes are bad. So I asked my wife whose vision is 20/20 and she agreed it wasn't just my eys.
    Nothing has helped.
    Has anyone had a problem like this? Does any one know what is wrong? Is it my display itself or maybe the video card?
    Just a little info, I bought this PB brand new from the store and within a month the screen went pink when ever the PB was moved. So I had the displayed replaced and it hasn't had any problems since then (September 2003) until now.
    Any advice would be great.
    Thanks,
    Elfbp
    Ti 1 GHz PowerBook   Mac OS X (10.4.6)   512 MB Ram, SuperDrive

    Hi, elfbp. There is no economical way to replace the screen — and no easy way, either. It's the Powerbook's most expensive part to buy, new or used, and the hardest one to remove and install successfully. Besides, you haven't determined yet that the display is what needs to be replaced, or even that anything needs to be replaced. And the symptom you report is so very odd — anomalous pixels that follow a word or words in your text, indicating that they aren't related to particular pixels or regions in the display — that I have no idea how to go about trying to isolate the cause.
    For what it's worth, the service manual for your Tibook model contains the following video troubleshooting section. It's not directed at your particular problem, but your particular problem isn't mentioned at all, and this may suggest some useful procedures or clues:
    "No display, or dim display, but computer appears to operate correctly:
    1. Remove any connected peripherals.
    2. Make sure F1 key is not stuck down.
    3. Press the F2 key (with the fn key pressed and not pressed) to increase the screen brightness settings.
    4. Reboot the computer—hold down the Control and Command keys and press the Power button to restart the computer. Or, press and hold the Power button for 5 to 10 seconds to shut down the computer, then press the Power button to restart.
    5. Make sure using the PowerBook (1GHz/867MHz) power adapter (66-1798)
    6. Verify inverter flex cable and LVDS cable connections are seated properly and that the cables are not damaged (refer to inverter board and display module replacement instructions).
    7. Replace inverter board.
    8. Replace display assembly.
    9. Replace logic board."
    Note in particular that checking the display cable connections and replacing the inverter board are both suggested before replacing the display itself. And I would be inclined also to replace the logic board before the display, since it's less expensive and much easier to install. By the time you've replaced an inverter and a logic board, you'll be well on your way to spending what the Powerbook is worth in good condition on the current market, and replacing the display may put you over that value. This is not to say you shouldn't do it, but if you could get a comparable used Powerbook in good working order for less than you might spend fixing yours, that's at least an option worth considering.
    I have no idea what professional repair options are available to you in Japan, but if I were you, I'd look into them. Don't use any repair service that isn't Apple-authorized.
    If you want to plunge inside the Tibook yourself, complete take-apart instructions are here.

  • Purchase order text report

    Hi All,
      I want to take report of "Purchase order text" which is stored in material master.
    Any Idea pls let me know....
    Thanks
    Hari

    Dear Hari,
    You can use BAPI_PO_GETDETAIL1 or BAPI_PO_GETDETAIL to retrieve the data in your program.Enter the PO number and tick the item text and header text indicator.
    Regards,
    w1n

  • Can't view overflow text in document sent for commenting

    We use Acrobat 9 Pro for Windows in my office. When my coworker sends me a pdf form document for commenting (through the commenting menu), and that document contains form fields with overflow text, I can't get a scroll bar and can't access the overflow text. I do see the + overflow text indicator in the lower right corner of the field, but can't activate it by clicking on it. On the other hand, if my coworker sends me the same form document as a simple attachment, I can get to the overflow text with no problem. We're using Windows XP on Dell desktop computers. Thanks for any solutions.
    Paul

    If a document is enabled for commenting, all form fields are disabled. If extended for use with Reader (i.e., Advanced > Extend Features in Adobe Reader), both commenting and certain forms usage rights (and a few others) are enabled. But if you have Acrobat Pro, she shouldn't need to do anything more than send the original document that has not been enabled for commenting. You only need to do that for Reader users.
    George

  • Long text not displayed in outpur of adhoc query

    Hi,
    I am trying to run an ad hoc query in which i need the Org unit long text in the output.
    When i run i only see the short text of the Org unit.I tried changing the output display option as 'Value and text' and 'text' both but it shows the short text only.
    Could you please suggest what changes i need to make to the infoset to view the long text of the Org unit.
    elp will be highly appreciated.
    sushil

    The help text does not say that this is the case for routings (and I dont know it either as I never loaded text for routings).
    Of course you can read your text with the function module, as you enter the keys like you done it to load the text.
    But this is not a proof at all.
    In 90 % where the text does not appear it is just a matter of the used key. maybe forgot to have leading zeros in the name field.
    Best you enter a text manually in a route, then you use SE16 with table STXH to find this record, and then you compare the key fields of this record with the key fields of a record you created with the upload.
    if this is all okay, then it might have to do with a text indicator in the normal tables of the routing.

  • IPhoto sends emails in Rich format even if the default format is Plain Text

    Detailed Summary (wouldn't fit in the Topic Subject):
    iPhoto will always send emails in Rich Text format even if Mail application is set to send all emails in Plain Text format. In other words, emails initiated from iPhoto ignore the selected Message Format setting in the Mail application.
    Description:
    It is a better practice to email photos in the Plain Text format instead of Rich Text format so recipients using different email clients can easily download attached pictures as regular attached files.
    The workaround is to change the email format to Plain Text before sending it. This wouldn't be such a problem if you could make this a permanent setting however this is not possible. The Mail application has a specific setting for this but iPhoto simply ignores it. This is the issue I am raising here.
    How to reproduce the problem:
    1. Open the Mail application (Assuming you already have an email account configured)
    2. Go to Preferences, Composing tab
    3. Change Message Format to "Plain Text"
    4. Optional step to verify that the Plain Text is now the default format: Start a new email. Click on menu Format and you'll see "Make Rich Text" available, which means the current email is in fact in Text Format. Close this email.
    5. Open iPhoto
    6. Select one or more photos and click on the "Email" icon on the lower right hand side
    7. A details popup will open, click on "Compose Message"
    8. The Mail application will open as well as a New Email window with the Subject field filled out and the selected photos in the email body
    9. Click on the menu Format
    Expected: Th last option should be "Make Rich Text" indicating that the current email is in Plain Text format as determined by the Mail settings (steps 1-5 above)
    Actual: Last option is "Make Plain Text" which means the current email is fact in the Rich Text format which does not match the Mail application settings.
    Can we at least get an acknowledgement from Apple that this is a known issue? Also, is there a fix for this? It is not an acceptable solution to tell users to manually select Plain Text for every email. I am tired of asking people to resend emails that way. That is a workaround, not a solution.
    Test details:
    - Mail Version 4.4 (1082)
    - iPhoto Version 8.1.2 (424)
    - OSX Version 10.6.5

    iPhoto menu -> Provide iPhoto Feedback to report a bug.
    Can we at least get an acknowledgement from Apple that this is a known issue?
    Need to ask Apple that one.
    Regards
    TD

  • SAVE TEXT not updating the database for Recipe Operation Long Texts

    Hi,
    We are trying to update the Recipe Operation long text using the FM SAVE_TEXT.
    The FM is not throwing any error, but the changes are not reflecting in the database.
    Text ID: PLPO
    Text Object: ROUTING
    Language: EN
    Text Name: Concatenated string of ARBPL,PLNNR,OPRATIONCOUNTER
    If someone faced similar scenarios, please share your inputs.
    Thanks in advance,
    Anand

    After some more R & D, i got to know that the Long Text indicator should be enabled to get the changes reflected in the C203 recipe operation details.
    In C202, if you pass two text lines for Operation long text, this Long text indicator is automatically enabled and its a non editable field.
    Can some one provide inputs how to enable this through program?
    Regards,
    Anand

  • How I generate index markers using Applescript and tagged text!

    One of the challenges I've faced in automating the book making process using Applescript with inDesign is that there don't seem to be any AS commands for making new index markers (anyone please correct me I if I'm wrong about this).
    I've tried various js scripts which do an OK job, but they don't make the actual native markers. This means you have to wait until the book (consistiing of multiple ID files) is complete (so that all the page numbers have been established) to generate the index.
    Recently, I read a tweet from someone with a link to a technique which uses tagged text and find and replace with GREP to edit the tags, inserting the tagged text index tags in the text file and then re-placing the text file in the ID page. In itself, this works great. But I'm dealing with literally thousands of separate text frames, none of them connected in a story.
    The books typically consist of around 1200 pages with almost that many people, each of whose names I need to index with "Lastname, Firstname" references. And those particular strings don't (can't) appear anywhere on the pages. There will also be about 50 ID files all combined into one book. So it is imperative that I have ID generate the native index markers. To help keep things straight and efficient, I'm creating separate small text frames to hold the lastname, firstname strings. I created an object style for these frames which sets the attributes to "nonprinting", and I place the frames in the margin.
    Then I realized that I don't actually have to have ID export the tagged text files for each. I exported one prototype and copied its tags to properties in my script, and then I concatenate them with the respective list item values I import from the database.
    At the proper point in the page building script, I tell "textwrangleer" to make a new document, set its contents to the index string for the current record, save it to disk, overwriting the previous one, and then tell ID to "place" it in the index text frame, which generates the ID index mark.
    I actually got an AS error when I first tried this: "file doesn't exist" or some such. Then I realized that the "place" command was happening too soon, so I inserted a .5 sec delay in the script, and it worked.
    This is actually my first major script for actual work, and I'm so excited about it! I promises to cut production time down to about a thenth of what it was.
    I still have to add some logic to branch between handlers with slightly different parameters for five different page formats, but the same page building handler will work on all of them.

    A note on this:
    Daniel Swanson wrote:
    I've tried various js scripts which do an OK job, but they don't make the actual native markers. This means you have to wait until the book (consistiing of multiple ID files) is complete (so that all the page numbers have been established) to generate the index.
    These scripts typically search for words and immediately write out the page numbers they are found on -- one shot indexing.
    The solution is to add both the topic and its page reference to the current document's index:
    if (app.activeDocument.indexes.length == 0)
        app.activeDocument.indexes.add();
    app.activeDocument.indexes[0].topics.add(app.selection[0].contents).pageReferences.add(app.selection[0]);
    The first lines only make sure there is an index to add to (per default, a new document has none).
    The last line adds a selected word to the index (it must be a plain text string, hence the use of its 'contents'), and then adds a reference to the selection in the text itself.
    Adding the same word a second time will for a change (quite untypically for ID's Scripting) not result in an error but simply add another page reference to the existing one.
    When doing this in a loop: remember to work backwards, because the index marker itself gets inserted into the running text, and that will throw off your text indices.

  • How to use 'delivery text' in VOFA?

    I have selected the field 'delivery text' in VOFA.
    what should do next?

    Hi,
    This customisation is required to enable the copying of texts from delivery to invoice document.
    For confirmation, please read the OSS note 548517.
    The answer for the specific question is pasted here from this OSS Note
    Question: Where can I set that the texts in the billing document are determined from the corresponding delivery document (and not from the order)??
    Answer: In the IMG under "Sales and Distribution -> Billing -> Billing Documents -> Define Billing types" you can set the "Delivery text" indicator for the corresponding billing type. With the corresponding Customizing (see first question), the texts of the billing document are determined from the appropriate delivery (and not from the order).
    Hope this helps you
    Pls reward if this helps you

  • Blog Template Comes Over As Image, Need It To Be Text...Arrghh!

    Hello,
    For the purpose of having content and to be more optimized by search engines I want my blogs to be content/html, not converted to an image. I am utilizing the "show text indicator", which tells me it is not going to be converted and then I go into my blog.html file and it comes over as images, not my text (content). I have dropped all shadow boxes and am using arial font. I also host outside of apple because I found it easier to do the redirects and meta tags, but that is just me Im sure. I do not know if this would make a difference, I do not think so but trying to give all the facts. Is this just the way it is or is there a fix? Any and all help appreciated, thx.
    Using iWeb 09

    I am not sure about this. Could you pls check?
    I opened my blog entry in FireFox and then did "view page source".
    I see..
    <head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    Also, I can actually see the text in the entry. I am using iWeb 09.
    You can check the site here..
    http://web.me.com/ajay.jadhav/AJ/Blog/Entries/2009/4/11Philosophy_ofPhotography.html

  • Need to assign char in o12c to show long text of the char in PI sheet

    Hi, Trying to learn PP-PI.  in o12c t-code, created instruction category u201Ctextu201D under instruction cattype (0) and trying to assign a characteristic (test) which is having char group as u201Cprocess instruction characteristicsu201D and willing to select u201Clong text indictor- Tu201D against this characteristic, but getting the error that u201Cthis characteristic is not supported for long textu201D. Please advise how to set long text indicator so that we can show long text in the pi sheet. Thank you.

    Hi,
    To Maintain Long text for characteristic in O12C , you need to
    1) create the Char in T-code O25C with Data type character and click on Proc.Mgmt tab
    2) Tick unlimited field situated right of Length and SAVE the char
    3) Assign this char in O12C under instruction cattype (0). You can see the indicator in the field Text. Now it will allow to main long text for that char in O12C.
    Hope this will help
    Regards
    Brahmaji D

Maybe you are looking for

  • Web Page not rendering in IE 6 and 7

    I've created a web page and validated the HTML/CSS both within DW and using the W3C CSS validator. Both returned no errors but when I try to view the page using IE 6 or 7 the page is blank. I'm guessing it has to do with the CSS. Does anyone know thi

  • PSE 9 Organize, edit/preferences locks up the program

    I just loaded PSE9 on a core i7 with 12GB RAM and 800 GB HD.  In Organize, the memu bar doesn't display, and I guess that has to do with the size of the font which can be sort of fixed by selecting "use system fonts" under "Edit/preferences, general"

  • Document Templates in MS Word (Office-Integration)

    Hi there, i´m desperately looking for help concerning the following problem with integration of MS Word-Templates to our CRM: We are using CRM 5.0 (as well as PCUI) and Office Integration with MS Word 2003. We created Document Templates (for Object T

  • Install Java

    Please excuse me if it is a very silly question. I am new to JAVA. I want to install JAVA into my machine and want to wet my feet with JAVA. I went into java.sun.com, but I am lost? could you please guide me? Thanks a bunch Jenni

  • E4200 dropping connections

    my e4200 updated with latest 1.00.1 firmware is constantly dropping connections from the outside to existant lan servers running low traffic services when my machine is using torrent or internet gaming.( call of duty modern warfare ) anyone else with