Tooltips shows key instead of long text in Marketing Calendar

Hi,
We have the problem:
"The text code Campaign type is configured as tooltip, only the key value is displayed but not the long text of the campaign type".
We found the note [OSS 900306 |https://service.sap.com/sap/support/notes/900306], but is for the release 5.0 and our  release is 7.0
Can anyone help?
My Best regards.

The error was resolved applying the note 1510755.

Similar Messages

  • Show key instead of text in ME51N for PR document type

    Hi, did anyone know how to show key instead of text in ME51N for PR document type? How can I remain the setting after shut down the PC?
    Thanks.

    Can you give more info about your need as it is not clear which text you're referring to.
    Regards,
    Vivek

  • Button tooltip: shows mnemonic instead of accelerator. Bug or feature?

    Hi,
    when you set a mnemonic key and an accelerator key to a button (eg. via an action) the tooltip shows the mnemonic key instead of the accelerator key (eg. for action "paste": "Alt-P" instead of "Ctrl-V"). If the mnemonic key is not present, the accelerator key is still not shown. This is neither the way I would have expect it nor the way I'm used to (eg. have a look at the toolbar buttons of the Sun's open source IDE NetBeans. They show the accelerator key!).
    Is this a bug or a feature? :-)
    -Puce

    Hi Carl -
    Button Image Attributes:
    Style = Image
    Image = <our substitution string>image.gif
    (well, that's what we'd like anyway - currently we have:
    Image = #WORKSPACE_IMAGES#image.gif)
    Many thanks.
    And, incidentally, many thanks for fixing that DHTML sublist bug in 2.2 - much appreciated.
    Regards,
    John.

  • Showing short , medium and long texts together

    Hi,
    I have 0material and have navigational attribute -subdivision.
    I need subdivision to be seen in the report as following
    <b>KEY | TEXT SHORT | TEXT LONG</b>
    is there a way to show those together in Reporting?
    I know i can show KEY- SHORT TEXT or KEY-LONG TEXT but they are not useful for me.
    Regards
    Mete

    Hi Mete,
    you need to add the subdivision as infoprovider. Create a infosource just for subdivision and short and long text. Assign the text datasource to that infosource. Add 0txtsh and 0txtlg as attributes to the subdivision. Create a update rule from your new infosource to subdivision and update the subdivision and txtsh and txslg. But here you need to concentrate on just one language. Additonally post that new infosource to the texts as well providing the language key as well.
    regards
    Siggi

  • How can i change the colour of key words in long text fast ?

    Hi,
    I have long text (for example script) which should be displayed in TextArea (or something similar) with colored keywords.
    I tried with TextRange
    new TextRange (myTextArea, true, start_Index, stop_index)
    and with
    RichEditableText 
    var highlightFormat:TextLayoutFormat = new TextLayoutFormat();
    highlightFormat.color = 0xFF0000;
    for each (var currentKeyword:String in keyWords) {
    myRichEditableText.setFormatOfRange(highlightFormat, indexOfKeyword, indexOfKeyword + currentKeyword.length);
    Either ways are too slow, 30 sec....
    The indexes of words which should be colored are computed below a second but creating an object for every keyword is too expensive .
    Any Idea what should i do ?

    There are a couple of things you can do. Check out the PS Touch tutorial, "Replace colors," as one example.
    You can optionally use the other selection tools in lieu of the Magic Wand selection tool.
    Also, you can use the Paint Tool's effects options in conjunction with any of the selection tools. Many common effects and adjustments (like "Color Balance" in the PS Touch tutorial) are available by tapping the Mode option and choosing, "Effect," rather than, "Paint."

  • Key instead of Text in Results Object in Crystal Reports For Enterprise

    Hi All
    I recently developed a report in Crystal Reports for Enterprise and at some point afterwards the text description of the hierarchy used in the report was changed.  The Key remained the same, however this caused the report to crash.  The solution was to click Edit Query Option in the Results Objects and simply come out without changing anything.  This refreshed the results object pane and the report ran as normal.   I work in an environment where the text of hierarchies is liable to change frequently and without notice and it will be unfeasible for me to constantly refresh the results object every time a change to a hierarchy is made.  Therefore is there a way to define in CRE to use the Hierarchy key instead of the text as this is less likely to altered?
    Many Thanks in advance
    Neil

    Excuse me I have my terminologies mixed up, what I mean is the name of the characteristic used in the report.  An example would be a characteristic called with the text of "Material" and a key of "0MATERIAL", if I were to change the text description to "MAT" and the key where to remain the same.  This would cause crystal report to error because it expecting the Characteristic name to be "Material".  Is there a setting or something in CRE to have it default to the key only so if the text of a characteristic or even a key figure for that matter where changed there would be no impact to the Crystal report.
    I hope this makes more sense this time round
    Thanks
    Neil

  • Long Text Icon in CATS Timesheet Approval View

    Hi:
    Employee created a timesheet in ESS. He/she also keyed in some long text in the timesheet screen.
    When manager goes to the UWL to approve the timesheet, there is no icon to show that there is a long-text attached to the record.
    May I know if there is any place we can configure to have this icon showing for the records which have the long-text, in the portal?
    We can see the icon in T-Code: "CATS_APPR_LITE - Approve Working Times" in the backend. But I'll need the same icon in the portal.
    Please could someone advise me on this?
    Thanks....

    Hi
    Did you try creating a new 'Profile' for Approver's view?
    The config steps are defined at IMG>Cross-Apps Components>Time Sheet>CATS regular>Approve Working Times.
    Pl do reward if this helps.

  • Maintain notification long text in IW21

    Hi Expert,
    I have one requirement as follows:
    In TCode IW21: Create PM Notification, client wants Notification Long should appear as a Template from Standard Text (TCode: SO10).
    Now I want to fetch this Std. Text which is maintained in TCode SO10 and show it at Notification Long Text while creating Notification using TCode: IW21.
    Please guide me how to do this functionality using any User Exit or any Enhancement available in SAP.
    Thanks,
    Jay.

    Hi,
    Create SAP standard text
    DATA: IT_TEXTS type standard table of TLINE,
          wa_texts like line of it_texts,
          THEAD    TYPE THEAD.
    **Populate text table
      wa_texts-tdformat = '*'.  "new line
      wa_texts-tdline = 'First line of text'.
      append wa_texts to it_texts.
      clear: wa_texts.
      wa_texts-tdformat = '='.  "continuation line
      wa_texts-tdline = 'still first section of text'.
      append wa_texts to it_texts.
      clear: wa_texts.
    **Also need to Populate THEAD details which can be gathered from the Text Identification Details
          CALL FUNCTION 'CREATE_TEXT'
               EXPORTING
                    FID         = THEAD-TDID
                    FLANGUAGE   = THEAD-TDSPRAS
                    FNAME       = THEAD-TDNAME
                    FOBJECT     = THEAD-TDOBJECT
                  SAVE_DIRECT = 'X'
                  FFORMAT     = '*'
               TABLES
                    FLINES      = IT_TEXTS
               EXCEPTIONS
                    NO_INIT     = 1
                    NO_SAVE     = 2
                    OTHERS      = 3.
    Thanks,
    Abhijit

  • PP Production order 'Long Text'

    In Production orders I am creating long text. Then I go to COOIS to run reports on these orders. There is a field in the report which says 'long text' which only shows a 'X' for long text exists. Is there a way I can shoow in the report what the long text verbiage is?
    thanks a lot

    thanks a lot but in the COOIS report I want it to display the long text. Is this possible?

  • Keys are shown instead of blank text

    Having a problem in our production system. The report is showing Key values for the Blank text. If there is a text value, it is showing correctly.
    Problem is coming only in production.
    Appreciate any suggesations

    Hi,
    Just check which text is displayed (Short / Medium /Large). Check the same in Business Explorere tab of Info object and in Qiery prooerties of Info object in query designer.
    I guess you have written routine on some other text type and displaying somthing else. Confirm the same by checking it in your text table.
    I hope it will help.
    Thanks,
    S

  • Can someone tell me how to set my name so when I send a text it shows up instead of my phone number

    Can someone tell me how to set my name so when I send a text it shows up instead of my phone number

    You can't do that. Only the sending number is transmitted by the carrier with an SMS message. If the recipient has you in their address book, with most smart phones and some others, the name will display, but that's a function of the phone on the receiving end.

  • How to display long text in SAP Query ALV layout? It only show 129 char now

    I have a SAP Query which show a remark field(Max length more than 500 char), but it only show max length 129 char now. In fact, the lenght of remark field text is more than 300, and i had debug the source code, the field text value do is correct, its length do is 376.
    Do anybody can help me solve the issue, let the query ALV layout can show the long text field value?
    thanks very much in addvance.

    Hi,
    ALV can show only a restrict value length around 128 characters, many experts said that we can not extend. many suggestions is split text into some column.
    Regards,

  • How to show long text in TextView control in formatted form?

    Hi,
    I have requirement to show long text from backend text edit control to WD application. I am using READ_TEXT Fm to read the long text and passing it to text view UI element.
    The text is shown in simply one long line but I want it to show in the same format as stored in backend textedit control.
    If I take textedit UI control then it shows the text in formatted form.
    Could you please let me know how to achieve these for TextView control? My requirement is that I have to use only TextView control.
    Thanks,
    Chandra

    Hi,
    The Problem solved to some extend but still the exact formatting is not happening though i am using cl_abap_char_utilities=>newline.
    for eg. if the long text is as below.
    "To display the external component, you can now embed an interface view of any window of this component in a window of your current embedding a view of oneu2019s own component. By setting up navigation from one outbound plug of a view of your inbound plug of the inter external component, you enable the external component to be displayed. New line ."
    and if in backend the Last line " New line ." is on next line, on WD it is not displayed on next line.
    Thanks,
    Chandra

  • My IPOD Classic Video 5. Gen. showed videos, but now it does no longer show them, instead i see a black picture on my IPOD and it doesn`t work. I have to restart it every time, i try it. i restore the software with itunes, but the problem still exists.

    My IPOD Classic Video 5. Gen. showed videos, but now it does no longer show them, instead i see a black picture on my IPOD and it doesn`t work. I have to restart it every time, i try it. i restore the software with itunes, but the problem still exists.
    The Videos are showed up front 4 months, but now they are no longer to be seen. When you star a video first the hard drive starts, but then it stops and hangs up. I have to restart it, starting with the apple logo....

    Here is what worked for me:
      My usb hub, being usb2, was too fast. I moved the wire to a usb port directory on my pc. That is a usb1 port which is slow enough to run your snyc.

  • How to show the content of a table (long text) in a scrollable textbox?

    Hi,
    I have to say first, many thanks to the ones who answers to threads in this forum, it's very helpfull when we're learning web dynpro!
    I have a RFC function that return a table containing a long text (node "it_text", with elements "Tdformat" and "Tdline").
    1) I want first to copy all the Tdlines in a new node "text_box" (that I made specially for the screen, it contains only the element "Tdline" [the text itself]);
    2) Then I want to show the content of the node "text_box" in a scrollable textbox on the screen (to show 8 lines of text, for example).
    How to do that easily?  What is the UI Element needed to show that?
    Thanks!

    If you want to display as it is then you can use Table UI element. You can change the design property to 'transparent' and set column header visibility property to none. Then you need not to write any code simple you can map the node to table field.
    Even with TextEdit you can achieve what you want. Try this code...
         StringBuffer tmpBuffer = new StringBuffer();
         for(int index=0;index<wdContext.nodeLines().size();index++)
              wdContext.nodeLines().setLeadSelection(index);
              tmpBuffer.append(wdContext.currentLinesElement().getLine()+"n");
         wdContext.currentContextElement().setData(tmpBuffer.toString());
    Regards
    Abhilash

Maybe you are looking for

  • How do I get iTune 11 to play complete genre straight through?

    I cannot get iTunes 11 to play through a complete genre from beginning to end. For example, in an earlier version I created a genre entitled World Music - Celtic.  When I hit the genre button, all the albums I put in this genre show up. However, when

  • Repair_packages & Java

    Folks, Very often when I boot I notice an unusually high CPU temperature. Using Activity Monitor I've found that the culprit is repair_packages. When I run Disk Utility/Repair Permissions it seems that the problem lies in System/Library/Frameworks/Ja

  • How do I uninstall itunes 9?

    I am trying to sync my ipad wifi 32g 3g with itunes but I have itunes 9 instalaled.  I am not able to uninstall via the directions as given (remove/add programs, etc)

  • Creating an array of doubles which represent an asymptotic curve.

    I want to populate an array with doubles with represent a value between 0.0 and 1.0 where array[0] = 0.0 and array[10000] = 1.0. I don't this array to follow a linear scale i.e. array[i+1] = array[i] + 0.0001. I want it to follow a distribution somet

  • My iPhone 5 is disabled because of not accepting passcode

    Hello, My iphone is disabled because of not accepting passcode, my passcode is true - i'm sure. what i shall do