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

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 text in Classical Report

    hi,
    I am developing classical report for printing. In that I want some letters in bold text.
    How I will get that?
    Manoj..

    Hi,
    check out this...
    DATA col TYPE i VALUE 0.
    DO 8 TIMES.
      col = sy-index - 1.
      FORMAT COLOR = col.
      WRITE: /  col              COLOR OFF,
               'INTENSIFIED ON'  INTENSIFIED ON,
               'INTENSIFIED OFF' INTENSIFIED OFF,
               'INVERSE ON'      INVERSE ON.
    ENDDO.
    Regards,
    Venkatesh

  • How to print some text in BOLD in a classical report

    Hi,
    I need to print some selected text in BOLD in classical report.
    Went through SDN forum...came across some suggestions like using class cl_dd_document and its functions..
    The problem is that one of its function "add_text" allows to highlight text...but the display function "display_document" requires a container to display, whereas mine is a simple classical report...am i wrong somewhere..or is there any other method to do the same...
    Thanks!!

    Hi Deepti,
      I am not sure that is possible on a classical report ntu you can use colors to highlight a part of the report output in order to check the various options you have with format is to check F1 on format.
    Regards,
    Himanshu

  • Bold String in classical report

    Hi Gurus,
    Plz guide me on how to print a bold string using write : kna1-kunnr in the output string in classical retport.
    Customer No- 12446
    I want :
    <b>Customer No- 12446</b>
    Regards
    Rajesh

    Hi Rajesh,
    LOOP AT IT.
    FORMAT INTENSIFIED ON.
    WRITE : 'Customer No - ',IT-KUNNR.
    FORMAT INTENSIFIED OFF.
    ENDLOOP.
    bold report
    Bold font in report output display
    hope it will solve your problem...
    <b>Reward points if useful..</b>
    Thanks & Regards
    ilesh 24x7

  • Displaying text in BOLD in classical report

    Hi all,
    I want to display a word as BOLD in classical report.. How to acieve the same in classical report
    Regards,
    Shanthi

    HI,
    I m working in ECC 6.0 system only. But still the followinf statement is not displaying the word in bold letters.
    Pls tell  me what is wrong in the below code.
    FORMAT INTENSIFIED on.
    write 'some text'.
    FORMAT intensified off.

  • How to Print a text in bold format in a classic report ??

    How to Print a text in bold format in a classic report ??

    hi
    u can use
    <b>FORMAT  INTENSIFIED ON.</b>
    regards
    ravish
    reward if useful

  • How to fix Width of column in classic report.

    Dear Friends
    i am using Apex 3.2.
    i have created Clasic Report and i have summary column in my report that column have description of issue so i want to fix width of that column nn Classic report .
    i have try some code in html expression
    <span>style="width: 480px; display: block; white-space: normal; font-size: 11px;">#ACTIVITY_SUMMARY#</span>
    {code
    after apply abovemention code that display me in my summary like this and not manage width of column.
    style="width: 480px; display: block; white-space: normal; font-size: 11px;">Dear Cherryl, Greetings !! Thank you very much for the new query and we are pleased to confirm the availability of one single cabin in all the three categories of cabin on M.V. Mahabaahu. We would like to inform you that both the departures 15th Oct 2013 & 29th Oct 2013 (Golden triangle with Cruise) are operational and attached are the prices for your kind consideration. As a special promotion for the 15th Oct 2013 departure only, we are offering USD 100 per person reduction on the Golden triangle portion combined with the cruise. Kindly review and advise us to block the accommodation accordingly. Regards...pankaj
    How to fix Width of column in classic report.
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi,
    I'm working an example in APEX 4.2 so YMMV (your milage may vary!).
    For Classic Reports, where the Column Attributes "Display As" is set to Display as Text (escape special characters ...:
    1) I find that Column width and Element Width setting have no effect to make the column smaller or larger.
    2) Here is one way that works:
    - In the Region's Region Definition, under Attributes give the Static ID a name (no spaces), say, class-report.
    - In the columns you want to affect, place "&#60;div>#ENAME#</div&#62;" in the columns Column Formatting "HTML Expression". Where "ENAME" here is the actual column name.
    I'm using the EMP table as an example.
    - Finally, in the page's HTML Header put, for example
    <style>
    #classic-report td.data[headers="ENAME"] div {
      width: 200px;
      color: blue;
    #classic-report td.data[headers="JOB"] div {
      width: 50px;
      white-space: nowrap;
      word-wrap: break-word;
    </style>This makes the ENAME column wider and the JOB column smaller and wraps it.
    Much more could be said. If you tweak you will find you can also affect spacing above, below and right/left of the data.
    #classic-report .report-standard th.header {
      border-left: #9fa0a0 1px solid;
      padding: 2px 3px 4px 5px;   /* top right bottom left margins */
      font-size: 11px;
      font-weight: bold;
      vertical-align: bottom;
    #classic-report .report-standard td.data {
      border-left: #9fa0a0 1px solid;
      padding: 3px 4px 5px 6px;
      font-size: 9px;
    }Does this help?
    Howard

  • Help regarding classical report

    i want help reltated to classical report..
    1 .  i want to bold text for some lines ..how can i do it...plz tell me..
    2 . when i m printing classical report then in the printed page it show date and description of program but i want to hide it. plz help  me .
    i m new in abap .  thanks in advance..

    Hi,
    Changing font size in reports refer program DD_STYLE_TABLE.
    use NO STANDARD PAGE HEADING to hide description of program.
    Regards,
    Anil

  • Background Color In Classical Report

    Hi Experts,
    I need to Highlight the entire row in classical report based on condition.
    For Example:
    I need to show the employee's detail in RED whose salary in less then 10000
    and green to those who get more then 10000.
    I tried using case and adding column and then editing report attribute's HTML Expression
    <xmp>
    <span style="color:#THE_COLOR#;font-weight:bold;">#SALARY#</span>
    </xmp>
    But this highlighting only text not the entire row.
    please help me with this.
    Animesh
    Edited by: Animesh Tripathi on Jan 31, 2013 3:18 AM
    Edited by: Animesh Tripathi on Jan 31, 2013 3:19 AM
    Edited by: Animesh Tripathi on Jan 31, 2013 3:20 AM

    The best way to do this is by creating a Named Column (row template) template report.
    Here is a post of someone with a similar problem:
    Template Condition based on PL/SQL Expression

  • Classical report problem

    Dear abapers,
    I hav one classical report(basic report).
    In that i need FGDM as print in background shade in cross in A4 size paper
    in big letters, will it possible.
    can any body tell in clasical report can we increase font size.
    thanks in advance.
    Regards,
    Simha.

    Dear abapers,
    I hav one classical report(basic report).
    In that i need FGDM as print in background shade in cross in A4 size paper
    in big letters, will it possible.
    can any body tell in clasical report can we increase font size.
    thanks in advance.
    Regards,
    Simha.

  • Classic report - Condition evaluated for every row

    APEX 4.2.2
    I am seeing something strange in a classic report region. A report started to fail at run-time with a strange error about bad syntax. When I run the page in debug mode, I see the following
    print column headings
    rows loop: 30 row(s)
    ...Execute Statement: begin wwv_flow.g_boolean := '' is not null;
    end;
    ......Result = false
    ...Execute Statement: begin wwv_flow.g_boolean := '' is not null;
    end;
    ......Result = false
    ...Execute Statement: begin wwv_flow.g_boolean := 'string with a embedded ' single quote' is not null;
    end;
    ......Result = true
    Looks like the APEX engine is evaluating a boolean expression after rendering and each and every row in the report. And for some strange reason, it is using a piece of data from my query's resultset and failing because of the bad syntax introduced due to the single-quote in the string.
    I have never seen this before. Any idea what is going on?
    Thanks

    Howdy Paul, sorry should have provided all the details. No, this is a standard generic column template. Ah, you are right, drat I should have looked closer. The template has use a condition to show either a highlighted row or normal one. Sorry for the false alarm, I can take it from here. Enjoy your flight :-)

  • How to set the number of rows displayed in a classical report at runtime?

    Hi,
    Our customer has several standard client hardware configuration and would like to enable end users to choose their 'display profile' at login time. This 'display profile' would contain predefined values for these hardware configurations and supposed to set various paramters that should define the number of rows displayed in a classical report region.
    I tried to provide parameters on the report region but it refused to accept anything but numerical values. Is it possible to do this?
    Regards, Tamas

    The link is to the closest linkable point in the documentation to the description of the Number of Rows (Item) attribute.
    It sounds like you have been trying to enter&mdash;unsuccessfully&mdash;an item name or substitution string into the Number of Rows attribute. The Number of Rows (Item) attribute is the one that actually allows you to do this. Click on the flashlight icon beside it to get a list of items from the application.

  • END-OF-PAGE not displayed in the last page of the classical report.

    Hi all..
    The END-OF-PAGE is not displayed in the last page of the classical report.
    SY-LINCT value is 30.
    Lines displayed in the report per page is 24.
    [3 for TOP-OF-PAGE and 3 for END-OF-PAGE]
    My Internal table has 6942 records.
    It comes 289 pages with 24 records in a page and 290 th page with 6 records.
    The END-OF-PAGE is not coming for the 290 th page.
    Please help.
    Thank You.
    Karthi M R.

    There are multiple links in SDN on this subject; Please search,
    end-of-page

  • Need help in sorting a column in classic report

    Hi I am trying to create and classic report and I need to do sorting on the columns. Also I am using a select list to filter the records in the column. When I am not using the select list the sorting is working but when I am using the selcet list and select the sort option then it is showing error. Can anyone help...
    Thnaks,
    Rik

    Select lists prior to v4 will sort on the return value. In v4, it sorts on the display value (as you're probably expecting). There's nothing really for you to fix here except if it's really important, see if you can get upgraded to v4.

Maybe you are looking for

  • Is there a way to create tables in Illustrator?

    I've been reading up on tips to incorporate tables into Illustrator. Unlike Indesign, I don't think illustrator is as adept and equipped with all the sophisticated tools. I read that tables created in Indesign can be copied and pasted onto illustrato

  • Organizer in Photoshop Elements 8 hangs

    I have PhotoShop Elements 8 (boxed DVD) installed on a HP Elite desktop with Intel i-core 7 processor with Windows 7 - 64 bit operating system. The PSE 8 organizer will not load and hangs up. The editior, however, loads. Unistalled and reinstalled th

  • HS.EXP does not take into account the Value member and the source

    Hello, The formula is put in the "Entity Curr Adjs" part of the Sub Calculate. The expression is the following and apply for one entity (Holding method) I filtered previously and the ICP Entity has proportionnal method with 50% rate: HS.Exp "A#5420.I

  • What is the best way to watch cricket on line in Mac Book pro

    what is the best way to watch cricket online in Mac Book Pro

  • DB Kopie with online backup modus

    hello, is it possible to make an copy of a oracle database in onlinebackup modus ? The problem ist that we copy the database from the production to the kons system and have to change the sctructure of the directoris. Best regards