BOLD Text in Between the Normal Text

Hi,
I hava a requirement in which i want to have BOLD text in Between Normal Text with OTR Functionality
EXAMPLE :
This is an EXAMPLE xyz is a Number, Please Help.
If any one has an idea on this please Help.
Regards
Ankur

Hi,
You have to use the FormattedText UI elements for such a thing. That is their purpose.
http://help.sap.com/saphelp_nw70ehp1/helpdata/en/3b/219141c1d0ae5fe10000000a1550b0/frameset.htm
http://help.sap.com/saphelp_nw70ehp1/helpdata/en/44/2772f505605447e10000000a422035/frameset.htm
Supported Tags:
http://help.sap.com/saphelp_nw70ehp1/helpdata/en/08/5696420cc2c56ae10000000a155106/frameset.htm
Hope this helps.
Regards

Similar Messages

  • In keynote - Leather Book theme - is there a way to remove the artwork in the middle of the cover page (between the two text boxes) (the squiggly thing)??

    I am trying to create a poster - in Keynote - transferring it to PDF then to JPEG so I can print it - and while I like the background in this Keynote theme (leather book) I can't seem to remove the artwork that is positioned between the two text boxes. Does anyone know how??? Can it even be done?

    I somehow ended up on creating a new master slide. I can FINALLY access the artwork - it has a box around it of x's - but I can't seem to do anything. Delete doesn't work. Trying to shrink the box doesn't work. I'm not getting a dialog box when I click on it that is specific to the x'ed area. It pertains to the full background page. I'm obviously missing something - the fact that I have never been in Keynote before may have something to do with it! :-)

  • SmartForm: Require Space between the various text mentioned in the invoice

    Hi Experts,
    The issue is that the user expects a space between the various text mentioned in the invoice so that it is easier to read the data.
    Current text:
    "LubeAnalyst#Nr.:1234212/AMOTDate:25.11.09Component:GasMotor"
    Users request of how he wants the text to look like with spaces:
    "LubeAnalyst#  :1234212/AMOT  Date:25.11.09  Component:GasMotor"
    Our suggestion to the user:
    1) Go to the sales order in change mode using transaction VA02
    2) Double click on the line item (material)
    3) Go to the texts tab and then to additional billing text
    4) You will find the text in the adjacent window
    5) You can edit the text so as to enter a space at the beginning of each line and the same will be reflected in the invoice document after you reprocess the output
    6) Save the changes by clicking on the save button
    Users Response:
    The order will be generated automatically.
    The order will be generated as a after event order and after this the invoice will be send directly from our cmpany to the customer, so we have no possibility to make any change in the system.
    The order and invoice are processed completely automatically, so we are unable to do any manual job!
    It's an auitomatic process, so the first solution, which is described down, isn't helpfull for me.
    Help Regarding:
    Dear Sdners, please guide me towards a fix for this issue.
    Regards,
    SuryaD.
    Edited by: SuryaD on Nov 27, 2009 12:57 PM

    Hello!
    It seems, that the text is everytime containing same tags as "LubeAnalyst", "Date" and "Component". I would add a coding node before the text-node that uses the command "find" searching the string for these tags and then split the string by given positions of "find" using the command "split" or by using the string offset.
    Kind regards,
    Klaus

  • What is the difference between the green text bubble that reads "sent as text message" and the blue text bubble reporting "delivered?"  Is the green text bubble not delivered?

    what is the difference between the green text bubble that reads "sent as text message" and the blue text bubble reporting "delivered?"  Is the green text bubble not delivered?

    iMessages are sent using Apple servers, using either WiFi or Cellular data. They can only be sent to/from iDevices or Macs that have the Messages app. SMS messages use the cellular network. Both methods can deliver the message to the recipient.
    http://www.apple.com/ca/ios/messages/

  • Why does footnote text mix with the main text in a documents?

    Hello good people
    I have a annoying problem where the footnote text mixes with the general text in the document in Pages 5.2.
    I'm writing research papers and I use considerable amount of footnotes.  When there is more than a certain amount of footnotes in in one page, the main test of the document seems to fall behind the footnotes, making it almost impossible to read.  The doc prints the same way.  Saving, closing and reopening does not fix the problem.  Exporting to Word does not fix the problem either.  Neither does restarting the computer.
    If I however hit enter until all the text is on a new page, sometimes that fixes the problem.
    I'm using Pages 5.2 on a PowerBook Pro with fully updated Maverick.
    Any solutions or good ideas ?
    All the best

    I don't know about text, but with Email, you are limited to how many bytes an attachment can be. Truthfully, I forget the limit, but there is a limit. One thing you can do is put it on YouTube and then direct the people you want to see the video to that particular URL. Also, I believe that there are a couple of apps which will allow you to send longer videos.

  • What is the difference between the normal function module and bapi function

    hi,
    what is the difference between the normal function module and bapi function module.

    Hi
    BAPI stands for Business API(Application Program Interface).
    A BAPI is remotely enabled function module ie it can be invoked from remote programs like standalone JAVA programs, web interface etc..
    You can make your function module remotely enabled in attributes of Function module but
    A BAPI are standard SAP function modules provided by SAP for remote access. Also they are part of Businees Objest Repository(BOR).
    BAPI are RFC enabled function modules. the difference between RFc and BAPI are business objects. You create business objects and those are then registered in your BOR (Business Object Repository) which can be accessed outside the SAP system by using some other applications (Non-SAP) such as VB or JAVA. in this case u only specify the business object and its method from external system in BAPI there is no direct system call. while RFC are direct system call Some BAPIs provide basic functions and can be used for most SAP business object types. These BAPIs should be implemented the same for all business object types. Standardized BAPIs are easier to use and prevent users having to deal with a number of different BAPIs. Whenever possible, a standardized BAPI must be used in preference to an individual BAPI.
    Regards
    Anji

  • Search file for text and delete the found text.  How?

    I need to know how to search a file for text and delete the found text. I think grep will let you do this but not sure of the syntax.

    Hi Dmcrory,
       In addition to what Camelot and nobody loopback point out, one must also consider the fact that UNIX text tools are largely line based. You also fail to tell us for what kind of text you are searching. If you are looking for multiple words, there's a very good chance of finding the expression wrapped onto different lines. With hyphenation, even single words can wrap to multiple lines. Tools that search line-by-line will miss these unless you use multiline techniques.
       Multiline substitutions require that you write "read-ahead" code for the command line tool that you're using and that you take that into account in the substitution. Given how you want the results to be printed out, you may also want to preserve any newlines found in the match, which is even more difficult. That could bring up the subject of line endings but that's a completely different topic.
       I apologize if this sounds discouraging. Multiline searches aren't needed that often and in most of those cases, exceptions can be dealt with by hand. I just didn't want you to get surprised by it. To give you an idea of how easy basic substitution is, have a look at Tom Christiansen's Cultured Perl: One-liners 102 and One-liners 101. Both have some "in-place" substitution examples.
    Gary
    ~~~~
       MIT:
          The Georgia Tech of the North

  • Remove text "This is the instruction text that applies to the entire page.

    Hi,
    How to remove text "This is the instruction text that applies to the entire page." under header, this text is defaulted and display under header (above search panel)
    Please help..

    Click on Personalize Page
    In personalization structure Choose complete view and identify the item you would like to hide and click on personalize for that item
    set the rendered property to false
    regards
    Ravi

  • The bullet list, numbered list and the normal text is not converting when I am converting from RH 9 to MS Word 2010

    Hi all,
    Greetings for the day
    I am created a new CSS in Robohelp 9. I have also created a new template in Word 2010. The style sets for different information elements like (Heading, bullets, body text, ) are more or less same between the CSS and the new templates. I am also able to map the .css styles to Word template when I am converting from RH to Word as I am getting the necessary option in the drop-down list.
    However, when the output is generated, the bullet, the numbered list and the body text is not converting at all. The body text works sometimes. However, the numbered list and bullet list is coming out as images.
    If anybody knows the solution, I can share the .css and Word template.
    Thanks in advance.
    Regards,
    Parag Deb

    Create a new project with two or three topics containing lists of both types. Generate a printed output that shows the problem. Then zip it up and send it to me. See the Contact page on my site for instructions.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • How to add a line between the two text fields  in JTabbed Pane

    Hi Friends,
    I would like to add a Line between some text fields to seperate them.. I added those text Fields to a tabbed Pane.. Please help me to create a line between the TextFields......

    http://java.sun.com/docs/books/tutorial/uiswing/components/separator.html

  • How can i remove text in between the tags

    Hi 
    I want to remove the text inside the xml tags and am failing to do so. i have tried this codding with no results.
    <value>yes</value> = <value></value>
    <value>yes</value> = <value></value>
    <value>yes</value> = <value></value>
    my code:
                    string text = File.ReadAllText(outputFilePath);
                    text = DeleteBetween1(text,"<value>", "</value>");
     public string DeleteBetween(string STR, string FirstString, string LastString)
                string regularExpressionPattern1 = @"(?:\" + FirstString + @")(<^<>+)\<\/" + LastString;
                Regex regex = new Regex(regularExpressionPattern1, RegexOptions.Singleline);
                MatchCollection collection = regex.Matches(STR.ToString());
                var val = string.Empty;
                foreach (Match m in collection)
                    val = m.Groups[1].Value;
                    STR = STR.Replace(val, "");
                return STR;

    hi,
    you can try below.
    https://social.msdn.microsoft.com/Forums/en-US/b9b4d8d6-38ba-4483-abfd-4939aca0593d/how-can-i-extract-text-string-between-two-tags-?forum=csharpgeneral
    hope that helps.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Display instantly the length of the text entered in the rich text editor

    Hi everybody,
    I'm developing an apex application with apex 4.1.1 and Oracle 11.2.
    I have a page in which I have a form that allows to create a new message on the database.
    A message has a title, description, text and date.
    For the text I use the item "rich editor text". The problem is that item doesn't show the length of characters entered (character counter for the textarea). In the database the corresponding column is varchar2(2000). What I do is a validation after submit that checks if the limit 2000 was exceeded or not.
    But what I want to do more is to display instantly the length of the text entered in the editor. I have tried to do that through a dynamic action. But the event "onChange" for the item "rich text editor" didn't work.
    Has anyone any idea about that issue?
    Thanks for helping.
    Kind regards,
    Edited by: Khadija Khalfallah on Apr 25, 2013 4:06 AM

    sorry about that, I missed that tidbit in your OP... well I think there is a good reason why there isn't a count character option -- due to the hidden "html" characters responsible for the "richness" (bold/color, etc) applied to the text would be difficult to count true characters.. if I was bent on doing this, I'd continue using the item you are using, but have a HIDDEN text area that is updated via javascript onkeyup for each keystroke (again, keeping in mind you'd have to filter certain keys) and then that intelligence could be used. I would probably dig through the javascript responsible for the rich text editor (is it still fckeditor??) -- there might already be code in there that isn't clearly visible to you that does this already.. alas, I see now the validity of your challenge.

  • How can I find the text only in the custom text frame?

    Well guys, I have a problem.
    I have such code:
    app.findTextPreferences.findWhat = "text";
    text = app.activeDocument.findText();
    position = text[0].insertionPoints[0].index
    in the variable "position" I get  global(not depending in which frame the text is) position(number of chars) of the found text, but I want to get the number of the frame where is text was found! Or how can I find only in the custome frame?
    Please, help me

    Assuming that you have some way of identifying that text frame, then it is just a matter of doing the search only against that frame. For example:
    myFrame = app.documents[0].pages[3].textFrames[5];
    app.findTextPreferences.findWhat = "text";
    text = myFrame.findText();
    position = text[0].insertionPoints[0].index
    However, unless myFrame is the first in a story, the index will not be relative to the start of myFrame. To get that, you need:
    framePos=myFrame.characters[0].index;
    textOffsetInFrame =position - framePos;
    Dave

  • How to add the value of the two text boxes in the 3rd text box in ssrs table?

    Hi ,
    in my ssrs table i encountered a situation where i need to computing for the two text box values and i have to show that value in page header.
    for example i have to add the textbox9 value and textbox12 value then i have to show that value in the page header.
    Please help me with this requirement.
    Thanks in advance,
    Naveen

    Hi NaveenMSBI,
    According to your description, you want to sum the value of two textboxes, then display it in a page header textbox.
    Just PrajapatiNeta said, an expression in a page header or footer can refer to only one report item. So we can create a hidden textbox named textbox20 with the expression below in the report body:
    =reportitems!textbox9.Value + reportitems!textbox12.Value
    Then use the expression below in a page header textbox:
    =reportitems!textbox20.Value
    Besides, please note that in a page header or page footer section, only text boxes on the current page are available as a member of the ReportItems collection. For example, if ReportItems!textbox20.Value refers to a text box that only appears on the first
    page for a multipage data region, you can see a value only for the first page.
    Reference:
    ReportItems Collection References (Report Builder and SSRS)
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • HT3529 New 7.0 version update changes the way text messages are presented.  In the new version, I cannot figure out how to delete individual texts.  I can delete entire strings of messages, but I want to delete old texts, but keep the recent texts

    The new version of the software for my iPhone 4 changed the way text messages are managed. 
    I can no longer delete individual texts from a text "conversation."  I also have not figured out how to forward texts, which I was able to do in the prior version.
    Anyone know a way to edit out individual messages without losing the entire string?
    Anyone know if there is a way to forward messages?

    When you have the conversation open, if you tap & hold on a message bubble, you should get a new menu pop-up.  It should have 2 options "Copy" and "More..."  If you select the "More..." option it will then let you select one or more message bubbles and delete the selected ones by hitting the trach can icon in the lower left corner.  As for forwarding, you probably just select the "Copy" option, then paste the contents into a new message...

Maybe you are looking for