To print letters in bold

how to print the letters in bold format in classiscal reports

Use the INTENSIFIED addition with write statement.
... INTENSIFIED [{ON|OFF}|{= flag}]
Effect
This addition determines the intensity of the background color. For flag, a data object of type i is expected. If ON is specified or if the content of flag is not equal to 0, an intensive background color is used (default setting). If OFF is specified or if the content of flag is equal to 0, a weak background color is used. An exception to this is the COL_BACKGROUND background color, with which INTENSIFIED OFF influences the foreground color. If neither ON, OFF nor flag are specified after INTENSIFIED, then the ON addition takes effect.
At the same time if the INPUT ON attribute is set, the INTENSIFIED OFF addition changes the foreground color of fields that are ready for input. If the INVERSE ON setting is made at the same time, the INTENSIFIED OFF setting has no effect (with the exception of COL_BACKGROUND).

Similar Messages

  • Acrobat 7.0 printing letters not there

    I have Adobe Acrobat 7.1.0 running on Mac OSX (10.6.3).  I downloaded a form which I turned into a printable form, saved it and filled it in.  However, when I go to print it, it prints letters not there.  It will change letter like the letter "P" and make it an "R".  Oh yea, these are letters that are part of the form, not what i added or typed in.
    This problem has never happened before and I use Acrobat 7.0 all the time.......... OK I know I have to upgrade and I am going to, but my understanding is there are issues with Acrobat 9.0 and Mac X.
    Help.............

    No I can't post an example since it's PHI. 
    But I did what you said.  The .pdf that works fine has nothing listed in the fonts page.  The one that doesn’t work has a lot of fonts.
    On the Description page, the differences are:
    Application (bad): IDRS KDK - Plus
    Application (good): Xerox WorkCenter 7655
    PDF Producer (bad): Image Recognition Integrated Systems S.A.
    PDF Producer (good): Xerox WorkCenter 7655
    So it's obviously trying to do some character recognition which I don't want.
    So is my client (who sent these to me) sending from different scanners that are set up differently?  Or is she sending from the same scanner ... with the settings occasionally set differently for some reason.
    I'd like to be a little educated before I talk to her.
    Thanks for your help

  • Printing letters to customers of marketing target group or campaign

    Hello everyone,
    We have a need to print letters to customers from a marketing target group or campaign.  (SAP CRM 7)
    The problem is that we can only see an option in application to send a Mail/SMS/Fax to the customer (with an already prepared mail form), but we just can't find a letter/print channel option.
    Can it be that this basic option does not exist in the application ?
    If it does not exist u2013 How can we send letters to the customers from a target group/campaign ?
    We'll appreciate any help,
    Best Regards,
    Nitzan.

    Hi,
    I don't know if you found an answer already to your question but we had a similar issue.
    In CRM 7.0 direct mailing is no longer supported. 
    The only solution is to either develop a specific enhancement based on mail forms (find a good CRM developper) or alternatively generate a file that you would then send to an external mailing house.
    It seems that smaller customers try to do the mailing themselves but larger customers with higher volumes nearly allways use a mailing house.
    regards
    Tim

  • Printing letters

    Hi ,
    we are using APEX to develop an application. From the actual application we want to be able to print letters that will have the source from the database. We were looking at using bi publisher for this. However our company already uses business objects. Does anyone know if it is possible to embed business objects into an apex application so that the user can print directly from the app. Also has anyone any other suggestions how this could be done.
    many thanks
    D
    Edited by: user3288720 on 29-Jun-2009 07:16

    There was a sample application a while back (HTML-DB 1.6) that allowed you to generate a letter like a merge document in Word. The link to that is:
    http://htmldb.oracle.com/pls/otn/f?p=18326:44:3844926385393109::::P44_ID:1682
    Thank you,
    Tony Miller
    Webster, TX

  • Print text in Bold while creating PDF

    Hi,
    I am mapping data in the XML to a Template designed using LiveCycle Designer ES3.
    I need to print some of the text in BOLD.
    For exmple in the following XML, when we display the text in PDF,  person names should be in BOLD.
    Part of the XML that is fed to template designer.
    <house>
    <parent>Mike and Mary are Mark's parents.</parent>
    </house>
    What is expected in the PDF:
    Mike and Mary are Mark's parents.
    I would appreciate if someone could please help me to achieve this task.
    Have  a good day!
    Regards,
    Patnapu.

    Hi,
    Check out Parth's example here: http://livecyclekarma.wordpress.com/2009/05/20/richtext-tricks-for-textfield-in-designer/.
    Also do a search on this forum, I am sure Steve Walker did an example.
    Good luck,
    Niall

  • Adobe Form - Print choice of bold or not bold font

    We have an Adobe form that prints sales order line items that are followed by their scheduling data (if any). So, each order line item could be followed with one or more scheduling line items or none. Example:
    (Order line)        10      9055450            7,000       EA          <other data>
    (Schedule lines                Expected Ship Date:         5,000     EA   05/30/2011     
        for the order line)         Expected Ship Date:         2,000     EA   07/16/2011     
    This is working fine using a subform but now we want to print the scheduling line items either as bold or not bold depending on some logic. So, we want this:
    (Order line)        10      9055450            7,000       EA          <other data>
    (Schedule lines                Expected Ship Date:         5,000     EA   05/30/2011     
        for the order line)         Expected Ship Date:       2,000     EA   07/16/2011     
    We have an indicator set for each scheduling line item that indicates if the schedule line is to be printed as bold or not bold (schedules-bold_line = u2018Xu2019).
    Is there any way to override the font settings in the Layout using Script Editor?
    Weu2019ve tried using Script Editor (at a upper level subform) to set the presence (hidden/visible) of two different subforms (one to print as bold and one not bold) but that printed both subforms.
    Weu2019ve tried using Alternative nodes (true/false) that check the bold line indicator. This works but it prints the wrong data because there are direct binding references to multiple levels of repeating data. That is, instead of printing the schedule lines for order line item 10, it prints the schedule line items for order line item 20.
    (Order line)        10      9055450            7,000       EA          <other data>
    (Schedule line                Expected Ship Date:         1,000     EA   06/01/2011     
        for the next order line)        
    How would I use relative binding in Alternative nodes?
    Is there a better method to accomplish this task?
    Any help is greatly appreciated.

    Radhika - Thank you so much for your answer! You helped me find the solution. I ended up using FormCalc and this is the code that worked in the Ready Layout event of the EXPECTEDSHIPDATE subform :
    data.BODY_PAGE.TABLE.ITEM_VALUES.ZLINE.TEXTSUBFORM.EXPECTEDSHIPDATE::ready:layout - (FormCalc, both)
    if ( $.BOLD_LINE_IND[*] == "X" ) then
    $.ShipQty[*].font.weight = "bold" 
    $.ShipQty[*].caption.font.weight = "bold" 
    $.DelvDate[*].font.weight = "bold"
    $.UOM[*].font.weight = "bold"
    $.PlantName[*].font.weight = "bold"
    $.PlantName[*].caption.font.weight = "bold"
    else
    $.ShipQty[*].font.weight = "normal" 
    $.ShipQty[*].caption.font.weight = "normal"
    $.DelvDate[*].font.weight = "normal"
    $.UOM[*].font.weight = "normal"
    $.PlantName[*].font.weight = "normal"
    $.PlantName[*].caption.font.weight = "normal"
    endif
    The EXPECTEDSHIPDATE subform is bound to the Schedules table that contains ShipQty, etc. The BOLD_LINE_IND field contains the value that  toggles the print between bold and normal.
    The key to making this work was to correctly format the condition and code and to find the right event to place the code in.
    Thanks again for your help!

  • Failing to print letters in Recruitment

    Can anyone help me on how to solve the following problem written in capital letters-INTERNAL ERROR IN SAP OLE DOCUMENT CONTAINER CONTROL. i am not able to print or display applicant letters in Recruitment

    Hello,
    If you are still on versions 4.6b or 4.6c then you might need to look at SAP Note 427615 and its pre-requisite 402195. Implement these notes and check.
    You could also check Notes 528216 and 1244863 if you are on higher versions or the above did not solve the problem.
    Regards,

  • Printing monospaced in bold

    Hello,
    with a GUI it's easy to set the font to Monospaced-bold in the paint(Graphics g) method:
    g.setFont(new Font("Monospaced", Font.BOLD, 12));But in the print(...) method "Monospaced" is output correctly only when set to Font.PLAIN. Font.BOLD becomes proportional. It seems that for printing bold there must be an extra fontface installed in the fonts. Can somebody confirm or dispute this assumption?
    Regards
    J�rg

    I'm using Java SDK v1.5.0 with Windows 2000 Professional. I tried different HP printers, 1300n and 1320, with the same result.

  • Printer prints letters with wrong spacing

    When I print a webpage from Firefox it (always?) prints what seems to be the right letters but with hopeless spacing between the letters -- usually overlapping each other so it is unreadable. This is exactly the problem discussed in Bugzilla@Mozilla, Bug 454532 between 2008 and 2011.
    I can often (always?) solve it by doing a Print Preview first, which demosntrates that it is a Firefox problem. Pages print fine in IE, Chrome, Opera etc.
    My Firefox is 23.0.1, I'm using Windows XP. Printer is Panasonic KX-P7105.
    Is there any way round this, or should I just go back to Internet Explorer?

    It is possible that the font that is used for printing is corrupted or otherwise not working.
    You can try to reinstall that font to see if that helps.
    You can use this extension to see which fonts used in text that is selected (right-click: "Show fonts in selection").
    *fontinfo: https://addons.mozilla.org/firefox/addon/fontinfo/
    You can do a font test to see if you can identify corrupted font(s).
    *http://browserspy.dk/fonts-flash.php?detail=1
    You can try different default fonts and temporarily disable website fonts to test the selected default font.
    *Tools > Options > Content : Fonts & Colors > Advanced
    *[ ] "Allow pages to choose their own fonts, instead of my selections above"

  • Help, I cannot print letters, etc. from new HP printer

    Help, I do not know what else to do, was on phone for long time yesterday trying to find a solutiuon. Printer does not work with computer, etc.

    Jlin ,
    Welcome to the HP Community Forum.
    With whom did you speak on the phone?
    Did you contact HP Technical Support?
    Contact HP – USA - Phone Assistance
    List of
    HP tech support/ Customer Service Phone Numbers – Some English Speaking Countries
    ==================================================​======================
    What kind of HP Printer do you have -- What is the model number? 
    Your printer should have its own Website Support Pages -- the instructions below will help you find the Support Website and help you install the printer software.
    In general, you should first install the Full Feature Software for the printer onto your computer:
    Install Full Feature Software – Printer
    The installation of the printer software may allow you to print from the computer to your printer.
    If you provide more information, someone may be able to provide suggestions.  Please include what you have done thus far to try and resolve the problems you are facing.
    Click the Kudos Thumbs-Up to show you appreciate the help.
    Click Accept as Solution when the Answer provides a Fix or Workaround!
    I am pleased to provide assistance on behalf of HP. I do not work for HP. 
    Kind Regards,
    Dragon-Fur

  • 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

  • IN Character mode Report can be print in bold

    I have a report in character mode but i want to print some character in bold
    for example
    This is my first program
    in above line i want to print program in bold
    Jai

    Hello
    Search the Oracle Reports Online help for "Printer Code Before" :
    Printer Code Before property
    Printer Codes are references to printer escape sequences that define special printing instructions (for example, special font sizes or highlighting) for the object. The Printer Code Before property specifies the printer escape sequence to be executed before each line of the object. The printer escape sequences are inserted after the object is triggered to print but before it has actually printed.
    Regards

  • How can I print alphabet letters that are larger than 1 page?

    I need to print letters that are larger than 1 sheet of paper. How do I print across multiple pages?

    is another application.
    You should see it on the Dock, in Mission Control or be able to open it by typing Preview in Spotlight.
    It usually is the application that opens when you click on any image file or pdf.
    Just follow my instructions, copy and paste or drag and drop from Finder.
    You don't open the pdf, opening is for .pages, .doc, rtf or txt files that Pages can open as word processing files.
    You can alternatively:
    Menu > Insert > Choose… > browse to your pdf
    But the other methods are faster and easier.
    Peter

  • 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

  • Words have random letters bolded.

    For the last week, some sites will have random letters in bold. If I highlight the words, or scroll down then back, the letters return to normal. I have tried to reinstall Firefox multiple times, but the same problem keeps cropping up. I have also tried with add-ons disabled. It does not happen in IE.

    Try disabling graphics hardware acceleration. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    *Click the orange Firefox button at the top left, then select the "Options" button, or, if there is no Firefox button at the top, go to Tools > Options.
    *In the Firefox options window click the ''Advanced'' tab, then select "General".
    *In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    *Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!

Maybe you are looking for

  • T60 freezes when moving trackpoint right after boot

    Hello, I have been experiencing this issue for quite a long time. Initially I thought it was due to an update for Windows XP, but I couldn't find any message on the logs when the laptop hangs. I re-installed XP several times to discard any software-r

  • Issue while editing Other Bank

    All, We are having trouble with Other Bank (IT9, ST1) on ESS. The Use Case for this is A6. When we are tring to edit the existing Other Bank, it gives a error message saying: "Change in Payroll Past not Possible". Even when we select future dated, an

  • Flash/Shockwave Relationship

    Our organization approves Flash 8 as a standard for some training development. We have the Flash 8 player on our desktops and users may not install anything higher. We recently had some issues with Flash elements that did not display correctly on all

  • How do i stop ipad from converting zip code to a four digit number when trying to register withnpandora

    While tryimg to se account with pandora my ipad and iphone keep changing my zip cose and DOB to four digit numbers

  • Adding ldap support for postfix

    using darwinbuild I have read several discussion: http://discussions.apple.com/thread.jspa?messageID=1240972 http://discussions.apple.com/thread.jspa?messageID=658174&#658174 in reading these i noted that I have to create the directory /Appleinternal