Bold letters in smartfroms

Hello experts,
I am developing smarform.
Requrement: need letters in the bold. e.g. "Note: This is bold text". in this text i need to show "Note" in bold like Note.
also i need to underline "Note" as Note.
How do i achieve this??
the font size i am using is 8 pt. also used other fonts sizes but can not able to achieve this.
Regards
Saurabh

Hi Saurabh,
    go to tcode smartstyles, create a paragraph format of bold or underline whatever option you want & use it in your smartforms. go to the 'Output Options' tab of your table or text whereever you require it and add the style there which you have created in smartstyles.
With luck,
Pritam.

Similar Messages

  • How to print the data as a bold letters in classical report

    Hi Friends,
                I want to print the some data in the classical  report as a   BOLD letters.  What is the way to do..
    Thanks and Regards,
    Surya

    Hi Surya,
    Am pasting some data from help.sap.com , I think the addition of LINE to the command as shown below might be necessary:
    REPORT demo_list_print_control LINE-SIZE 60.
    TABLES spfli.
    PRINT-CONTROL FUNCTION: 'SABLD' LINE 1,
                            'SAOFF' LINE 2,
                            'SAULN' LINE 3.
    GET spfli.
      WRITE: / spfli-carrid,   spfli-connid,  spfli-cityfrom,
               spfli-airpfrom, spfli-cityto,  spfli-airpto.
    If in table T02DD, the printer control characters for the print-control codes SABLD, SAOFF, and SAULN are defined as in the figure above, the system formats the output as follows:
    1996/03/13 SPFLI 1
    AA 0017 NEW YORK JFK SAN FRANCISCO SFO
    AA 0064 SAN FRANCISCO SFO NEW YORK JFK
    DL 1699 NEW YORK JFK SAN FRANCISCO SFO
    DL 1984 SAN FRANCISCO SFO NEW YORK JFK
    LH 0400 FRANKFURT FRA NEW YORK JFK
    The print format for the first line is set to bold, using the print-control code SABLD. The print-control code SAOFF turns off bold style, starting from the second line. Using the print-control code SAULN, the system underlines all lines starting from line 3.
    Cheers,
    Aditya

  • Bold letters in classical report

    Dear Gurus,
    Could any one please let me know how to print Bold letters in Classical report
    for example : I want to print " Hello Satya, How are you  "
    the out out desired is " Hello Satya, How are you "
    Thanks & Regards,
    Satya.

    Hi,
    Could you post your question in the Abap forum where it belongs ?
    Thank you.
    Olivier

  • Bold letters in email body.

    Hi all.
       I need to have first line in the email body with bold letters. I am usnig the FM  SO_NEW_DOCUMENT_ATT_SEND_API1. Pls let me know how to do it.
    Thanks.
    sami.

    Hi,
    to send mails use this:
    FORM docu_send_email USING pv_otfdata TYPE tsfotf
    pv_emailid TYPE any
    pv_formname TYPE any.
    DATA: lv_filesize TYPE i,
    lv_buffer TYPE string,
    lv_attachment TYPE i,
    lv_testo TYPE i.
    DATA: li_pdfdata TYPE STANDARD TABLE OF tline,
    li_mess_att TYPE STANDARD TABLE OF solisti1,
    li_mtab_pdf TYPE STANDARD TABLE OF tline,
    li_objpack TYPE STANDARD TABLE OF sopcklsti1,
    li_objtxt TYPE STANDARD TABLE OF solisti1,
    li_objbin TYPE STANDARD TABLE OF solisti1,
    li_reclist TYPE STANDARD TABLE OF somlreci1,
    li_objhead TYPE soli_tab.
    DATA: lwa_pdfdata TYPE tline,
    lwa_objpack TYPE sopcklsti1,
    lwa_mess_att TYPE solisti1,
    lwa_objtxt TYPE solisti1,
    lwa_objbin TYPE solisti1,
    lwa_reclist TYPE somlreci1,
    lwa_doc_chng TYPE sodocchgi1.
    CONSTANTS: lc_u TYPE char1 VALUE 'U',
    lc_0 TYPE char1 VALUE '0',
    lc_1 TYPE char1 VALUE '1',
    lc_pdf TYPE char3 VALUE 'PDF',
    lc_raw TYPE char3 VALUE 'RAW',
    lc_ordform TYPE char15 VALUE 'ZORDCONFIRM_01',
    lc_attachment TYPE char10 VALUE 'ATTACHMENT'.
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    format = lc_pdf
    max_linewidth = 132
    IMPORTING
    bin_filesize = lv_filesize
    TABLES
    otf = pv_otfdata
    lines = li_pdfdata
    EXCEPTIONS
    err_max_linewidth = 1
    err_format = 2
    err_conv_not_possible = 3
    err_bad_otf = 4
    OTHERS = 5.
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT li_pdfdata INTO lwa_pdfdata.
    TRANSLATE lwa_pdfdata USING ' ~'.
    CONCATENATE lv_buffer lwa_pdfdata INTO lv_buffer.
    CLEAR lwa_pdfdata.
    ENDLOOP.
    TRANSLATE lv_buffer USING '~ '.
    DO.
    lwa_mess_att = lv_buffer.
    APPEND lwa_mess_att TO li_mess_att.
    CLEAR lwa_mess_att.
    SHIFT lv_buffer LEFT BY 255 PLACES.
    IF lv_buffer IS INITIAL.
    EXIT.
    ENDIF.
    ENDDO.
    Object with PDF.
    REFRESH li_objbin.
    li_objbin] = li_mess_att[.
    DESCRIBE TABLE li_objbin LINES lv_attachment.
    Object with main text of the mail.
    lwa_objtxt = space.
    APPEND lwa_objtxt TO li_objtxt.
    CLEAR lwa_objtxt.
    DESCRIBE TABLE li_objtxt LINES lv_testo.
    Create the document which is to be sent
    lwa_doc_chng-obj_name = text-008.
    lwa_doc_chng-obj_descr = text-008.
    lwa_doc_chng-sensitivty = lc_0.
    lwa_doc_chng-obj_prio = lc_1.
    lwa_doc_chng-doc_size = lv_testo * 225.
    Pack to main body.
    CLEAR lwa_objpack-transf_bin.
    header
    lwa_objpack-head_start = 1.
    The document needs no header (head_num = 0)
    lwa_objpack-head_num = 0.
    body
    lwa_objpack-body_start = 1.
    lwa_objpack-body_num = lv_testo.
    lwa_objpack-doc_type = lc_raw.
    APPEND lwa_objpack TO li_objpack.
    CLEAR lwa_objpack.
    Create the attachment.
    Fill the fields of the packing_list for the attachment:
    lwa_objpack-transf_bin = gc_x .
    header
    lwa_objpack-head_start = 1.
    lwa_objpack-head_num = 1.
    body
    lwa_objpack-body_start = 1.
    lwa_objpack-body_num = lv_attachment.
    lwa_objpack-doc_type = lc_pdf.
    lwa_objpack-obj_name = lc_attachment.
    lwa_objpack-obj_descr = text-008.
    lwa_objpack-doc_size = lv_attachment * 255.
    APPEND lwa_objpack TO li_objpack.
    CLEAR lwa_objpack.
    lwa_reclist-receiver = pv_emailid.
    lwa_reclist-rec_type = lc_u.
    lwa_reclist-notif_del = gc_x.
    lwa_reclist-notif_ndel = gc_x.
    APPEND lwa_reclist TO li_reclist.
    IF li_reclist IS NOT INITIAL.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = lwa_doc_chng
    put_in_outbox = gc_x
    TABLES
    packing_list = li_objpack
    object_header = li_objhead
    contents_bin = li_objbin
    contents_txt = li_objtxt
    receivers = li_reclist
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8.
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    ENDIF.
    ENDFORM. " DOCU_SEND_EMAIL

  • Smart style for bold letters

    Hello friends
      Can i have any in-built smart style which will give me bigger letters with bold font.

    Hi,
       In the standard smart style CACS_STANDARD -- Paragraph format " TI " contains  Bold letters.
    IF you want to create you own paragraph format in bold -- procedure is as follows:
    1. Go to smartstyles
    2. create paragraph format (PA)
    3. In the PA choose FONT tab
    4. Font style --- BOLD.
    Now make use of the created PA where ever it is necessary.
    Br,
    Laxmi

  • Bold letters

    Hi,
    Iam new to webdynpro.Iam displaying a success message by using message manager.I need to display the message in 'bold' letters. I tried with intesified on .But it is displaying in normal format only.
    Please suggest me the way.
    Thanks,
    Alekhya.

    Hi,
    Thanks for quick response.
    I have created a message area.Iam displaying the sucess message in that area by using message manager-report_success.I assigned the message to a variable and passed that variable into the message manger.But it is displaying in normal mode.Do i need to create text view again for this?how can i bind this to that message.
    Thanks,
    Alekhya.

  • Having bold letters on application server AL11

    Hi Guys,
    I want to have bold letters and color fromat on application server.
    please suggest me how to get this functionality.
    Advanced Thanks to all of u guys.

    Hello Suresh,
    As suggested by the above poster. The view that you get in AL11 is basically a log displaying the contents of your file.
    It has got nothing to do with the line being bold in your file or not.
    Anyways what kind of file(filetype) are you generating?
    BR,
    Suhas

  • My imessage types in bold letters and wont send the message...help

    my imesssage types in bold letters and wont send  help

    Hi dianna0889,
    The typing in bold type is part of Apple’s accessibility features. You can turn it off by going to Settings > General > Accessibility > Bold Text. See this article -
    iOS: Configuring accessibility features
    https://support.apple.com/kb/HT5018
    If you are having issues with sending messages I would suggest that you troubleshoot using the steps in this article -
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • Bold letters not displaying

    Hi
    Bold letters are not printing in invoice.
    I want to print like below in invoice
    *Consignor Address* : XYZ Company
    I have created pragaraph BO. But Consignor Address  is not printing in bold.
    SS    <BO>Consignor Address : &T_adrc-NAME1&
    I searched in old threads. I couldn't find solution
    Thanks

    Hi Kumar,
    Paragraph formats are only used in the lest most 2 caracter colums.
    And if you want to print any text in Bold letters then simply use
    e.g.
    <B>Company< / > : &bukrs&
    Please reamove spaces between </>, here we are not able to post exactly what it should be.
    this will print Company in bold letters.
    Regards,
    Raj gupta
    Edited by: RajGupta on Aug 5, 2009 11:57 AM

  • When combining files, BOLD letters are missing throughout the report

    After OCR'ing and printing excel documents to my Adobe PDF printer, I try combining all the files and after completion I open the combined file and all the bold characters have missing letters, When I highlight the word and copy/paste, the word is there, just displays missing letters? Help.
    I have Windows 7 64-bit, Adobe Acrobat XI Standard, Office 2010 32-bit

    Karl's response in this question thread at Acrobat Answers may be helpful/informative.
    http://admin-answers.acrobatusers.com/QuestionDetail.aspx?questionId=109400 
    Be well...

  • Bold letters in the area of images

    Hi together.
    I have a Indesign table with 3 columns. First col. is the item-no., second col. is product descr. and third col. is the price. The first col. is much wider than it needs to be because I have a small image of the product following the item-no. The image is placed on top of the table (text).
    Now the problem: The letters of the col. that follows the image are some times very bold but there is no recognizable system behind the case. It happens randomly. Important is that the effect appears only in the final printing process. I cannot see the effect on my pc neither in Indesign nor in Acrobat. The printing company has no solution to this problem. They have a digital printer on which everything is fine but on the offset printing machine the issue appears. I think it is related to the table I use because if I work with tabbed text the problem disappears. But I need the table's function to change background-colors.
    I hope somebody can help.
    Stefan

    This sounds a lot like the issues that sometimes crop up when you put text behind a transparency effect, but you usually see that on screen and in lower resolution printing, not on press.
    Nevertheless, are the images in the affected areas transparent, or using any transparency effects like a drop shadow?
    You might also want to take a look at the transparency flattener preview panel for confirmation that this is, indeed, the problem.
    Please let us know.
    Peter

  • How to turn on bold letters?

    I have Skype on my ipad, but my friend has it on his laptop. He sometimes makes his letters bold using '*'. But I have a problem, when I try do, for example, *food*, it doesn't make it bold. Can someone help me fix this problem, or does bold not work for ipad?

    Hi and Welcome to the Community!
    Natively, there is no such function in BB10...such would be a battery consumption problem, after all. There may be an add-on app to do so, but you'd need to search BBWorld for that.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How can i make a the out put in bold letters

    let say that this code output is public String toTitle(){
              return "Title: " + titleBook;
         }Title: Spectacular Chemical Experiments
    Title: Terror
    now how can I make just title bold like this
    Title: Spectacular Chemical Experiments
    Title: Terror
    thanks

    If your job and life depends on it, many consoles support ANSI escape characters; the problem is that they are ignored from System.out.
    It can be done with JNI:
    http://www.rgagnon.com/javadetails/java-0469.html
    on linux, the command would be "echo -e"
    Again, I say this if your job and life depends on it. It ain't pretty. (well, the colors are maybe; the code isn't.)

  • Get Bold letters in Standard text?

    Hello
    I have created a Z_style in SMARTSTYLES transaction. IT has some bold, colored texts.
    Then, i am trying to create a Stnadard Text in SO10 by using the above just created Z_style.
    But, when i opened the SO10, gave the custoem name, and trying to use my z_style, but, i did not see any such in SO10? My navigation is SO10-->Menu..._Format->Change Style
    Pls. let me know how to fetch my z_style into SO10 tx.
    Thank you

    Hi,
    SO10 - Standard Text is only a container to contain variables with no styles attached. If you need to attach Z-style you have created, you have to apply in SAPScript or SmartForm and in Print, you'll see that styles.
    Thanks
    Ravi

  • I'm using an older version of MacOS10.4.11 and Firefox should have listed in HUGE BOLD LETTERS that the new version wouldn't be compatible.

    I'm on 10.4.11 with my macbook pro. Just saw the world IPv4/6 day thing, ran the test, it suggested I upgrade to Firefox 4. You NOW tell me I can't use it on my current MacOS. But ALLLLL of my bookmarks, client sites, etc are stored there.
    I'm upgrading my Mac later this summer, but for now I'm w/o ALL of my bookmarks, client sites, UGH. Please advise how to shift back to the previous (and only) version of Firefox that will work on my Mac. Thanks.

    There's a third party version of Firefox 4 you could try using: http://www.floodgap.com/software/tenfourfox/

Maybe you are looking for