Doubt in Paint Oracle Example with red numbers

Hi experts,
I have a virtual machine with the ORACLE BIEE and I'm taking a look the PAINT example.
In the third dashboard page called Year over Year Analysis, there is a Pivot table with different rows and columns.
I just want to know how I'm looking red numbers if there is no condition in the report.
Thank you!

Check in the data format of that column. You should see negative format specified like Minus(Red)-123. That will display all the negative values in the red.
Hope it helps
thanks
Prash

Similar Messages

  • Lock types in oracle 10g with sql examples

    can some body easily in simple words tell some thing about the table locks types in oracle 10g with some sql examples?

    Oracle locking is a complex topic that may not easily be explained with simple words.
    Please try to read above mentioned link starting from simple examples to used lock types. I don't think it's a good idea to "over simplify" the topic starting from the different lock types.
    Another way to explain some lock types can be found in following OTN discussion with Tom Kyte (who is also one of the primary author of Concepts Guide 11.2): TM / TX Locks ( Tom Kyte and Oracle Docu) ; note the different points of view about what is the row lock ...
    Edited by: P. Forstmann on 29 juin 2011 14:00

  • Oracle Coherence Examples with Oracle SOA suite 11.1.1.4.0 and JDeveloper.

    Hi,
    I am new to Oracle Coherence. I was looking for examples implementing Oracle Coherence step by step so as to get a basic understanding using JDeveloper but most of the examples available are using Oracle Service Bus and Eclipse.
    Could anyone please help me in providing link with examples using Oracle Coherence with Oracle SOA suite 11.1.1.4.0 and JDeveloper.
    Thanks for the needful.
    Cheers,
    Varun

    Hi Varun,
    Please find the answers to your questions below:
    1) Could you please let me know how to use this system property -Dtangosol.coherence.override in my application so that I can coordinate between the cluster used by my application and the one started for using Coherence Node.
    You need to specify this property in the Java Options of your server or cache node startup script.
    2) I was trying to understand how to use this tangosol-coherence-override.xml but the document is pretty confusing. I am not able to understand that whether I am suppose to use it at server level or at application level.
    I would suggest extract the coherence.jar and you it would be important for you to have a look at the tangosol-coherence.xml and tangosol-coherence-override.xml. This file is used to override any of the properties specified in tangosol-coherence.xml for your cluster configuration for example, clustername, multicast ip and port or WKA for unicast, logging and so on.
    3) Another point is how to coordinate among tangosol-coherence-override.xml, coherence-cache-config.xml and -Dtangosol.coherence.override system property from my application
    Ideally you should specify in the java options of your application startup but you can also sepcify using System.setProperty("property", "value") in you code for specifying the various properties
    4) How to use the cache updating mechanisms from an application?
    I am not clear what do you mean by cache updating mechanisms? If you mean how you can update the cache from application then you can use simple Put, Entry Processor and so on. Refer NamedCache APIs to start with for operations but there many other ways to update the cache from within application or otherwise
    Hope this helps!
    Cheers,
    NJ

  • Application Express 3.1 + BI-Publisher + problem with formating numbers

    Hello together!
    I use the Oracle BI Publisher Template Builder for Word (10.1.3.4) to generate RTF-Templates. I upload these templates in Oracle Apex (Advanced support-->BI-Publisher/OC4J as print service).
    It works well, but I have a problem with formating numbers.
    In Template Builder I define following number formats, for example: #.##0 for numbers like 1.454.234 and #.##0,00 for numbers like 54,80
    In Template-Builder Preview it looks well.
    But whatever I do, in use with Oracle Apex dots and comma are allready interchances in the printout.
    That means,
    1.454.234 become 1,454,234 in PDF-Report
    54,80 become 54.80 in PDF-Report
    Other than that, the layout is exactly the same like in Template Builder defined.
    What's wrong?
    Do I have to change any country parameter?
    Juliane

    I also had the same problem. I tried with normal formating of 99g99g999d99 instead of ##,##,##0.00 and it has resulted correct way.

  • Ruler with line numbering and cury text underline

    Hi,
    I've just started programming in java and as an exercise i was trying to make an simple text editor. Uptil now i've been able to make a textarea and a menu with items and such, but i have 2 things that i'm very curious about.
    1. How can I make a vertical ruler with line numbers in it? (like in JBuilder/Eclipse editors) I'm planning on putting it next to the text so I can see at which line in the document i'm at.
    2. How can I underline (mark) text with those curly lines you often see in applications? (i.e. Marking grammar and spelling errors in MS Word or marking programming errors in editors like JBuilder/Eclipse)
    I hope that these things can be done in Java. If someone could help me out with this, i'd be very grateful.
    Kayhne

    Try this.
    regards,
    Stas
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.text.*;
    import java.util.*;
    class Test {
        public Test() {
            JFrame fr = new JFrame("TEST");
            fr.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            JEditorPane pane = new JEditorPane();
            pane.setEditorKit(new NewEditorKit());
            pane.setText("test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test ");
            StyledDocument doc = (StyledDocument) pane.getDocument();
            MutableAttributeSet attr = new SimpleAttributeSet();
            StyleConstants.setLineSpacing(attr, 5f);
            doc.setParagraphAttributes(0, doc.getLength(), attr, false);
            JScrollPane sp = new JScrollPane(pane);
            fr.getContentPane().add(sp);
            fr.setSize(300, 300);
            fr.show();
        public static void main(String[] args) {
            Test test = new Test();
    class NewEditorKit extends StyledEditorKit {
        public ViewFactory getViewFactory() {
            return new NewViewFactory();
    class NewViewFactory implements ViewFactory {
        public View create(Element elem) {
            String kind = elem.getName();
            if (kind != null) {
                if (kind.equals(AbstractDocument.ContentElementName)) {
                    return new JaggedLabelView(elem);
                else if (kind.equals(AbstractDocument.ParagraphElementName)) {
                    return new ParagraphView(elem);
                else if (kind.equals(AbstractDocument.SectionElementName)) {
                    return new BoxView(elem, View.Y_AXIS);
                else if (kind.equals(StyleConstants.ComponentElementName)) {
                    return new ComponentView(elem);
                else if (kind.equals(StyleConstants.IconElementName)) {
                    return new IconView(elem);
            // default to text display
            return new LabelView(elem);
    class JaggedLabelView extends LabelView {
        public JaggedLabelView(Element elem) {
            super(elem);
        public void paint(Graphics g, Shape allocation) {
            super.paint(g, allocation);
            paintJaggedLine(g, allocation);
        public void paintJaggedLine(Graphics g, Shape a) {
            int y = (int) (a.getBounds().getY() + a.getBounds().getHeight());
            int x1 = (int) a.getBounds().getX();
            int x2 = (int) (a.getBounds().getX() + a.getBounds().getWidth());
            Color old = g.getColor();
            g.setColor(Color.red);
            for (int i = x1; i <= x2; i += 6) {
                g.drawArc(i + 3, y - 3, 3, 3, 0, 180);
                g.drawArc(i + 6, y - 3, 3, 3, 180, 181);
            g.setColor(old);
    }

  • Problem when trying to refresh oracle screens with latest data

    hello experts,
    i have one problem,i want to refresh the oracle screen with the latest data from the data
    base.
    It is a two stage process.At first step one user will select a row from the screen and then he will press a button .
    now the second screen will appear and the detail of the employee will be displayed.
    First step has been completed and the data is coming in the second form via parameters and i can see the full information of the employee.
    Now i want to refresh the oracle form i.e. suppose if my dba has made any changes in the oracle table( EMP table) i want that after pressing the refresh button user can see the
    latest data from the database.
    in WHEN_BUTTON_PRESSED trigger i have written this codes.
    enter_query;
    execute_query;
    but they are not giving the expected result.
    And one more thing please suggest whether in the second form i should use database item
    or non database item.
    When i am using database item when i am trying to close second from one pop up is appearing
    and asking that whether i want to save the changes.
    please suggest how can i remove this message from my application.
    Regards
    Anutosh

    Hi,
    what data did you transfer via parameters to the second form ?
    how did you populate the datablock in the second form ?
    Typical solution would be:
    (For my example the block is both forms is named EMP, and is based on the table SCOTT.EMP)
    In Form 1, transfer the primary key-value of the current record to a global or parameter (will use global in my example):
    e.g. you have a WHEN-BUTTON-PRESSED-Trigger with the following code:
    <pre>
    :GLOBAL.EMPNO:=:EMP.EMPNO;
    CALL_FORM('FORM2');
    </pre>
    In Form 2, you have a WHEN-NEW-FORM-INSTANCE-Trigger with code:
    <pre>
    DEFAULT_VALUE('GLOBAL.EMPNO', NULL);
    IF :GLOBAL.EMPNO IS NOT NULL THEN
    GO_BLOCK('EMP');
    EXECUTE_QUERY;
    :GLOBAL.EMPNO:=NULL;
    END IF;
    </pre>
    On block EMP in Form 2 there is a PRE-QUERY-Trigger with following code:
    <pre>
    IF :GLOBAL.EMPNO IS NOT NULL THEN
    :EMP.EMPNO:=:GLOBAL.EMPNO;
    END IF;
    </pre>
    And at last, in your refresh-button would be the following code:
    <pre>
    :GLOBAL.EMPNO:=:EMP.EMPNO;
    GO_BLOCK('EMP');
    EXECUTE_QUERY;
    :GLOBAL.EMPNO:=NULL;
    </pre>
    Hope this helps

  • How to use Oracle partitioning with JPA @OneToOne reference?

    Hi!
    A little bit late in the project we have realized that we need to use Oracle partitioning both for performance and admin of the data. (Partitioning by range (month) and after a year we will move the oldest month of data to an archive db)
    We have an object model with an main/root entity "Trans" with @OneToMany and @OneToOne relationships.
    How do we use Oracle partitioning on the @OneToOne relationships?
    (We'd rather not change the model as we already have millions of rows in the db.)
    On the main entity "Trans" we use: partition by range (month) on a date column.
    And on all @OneToMany we use: partition by reference (as they have a primary-foreign key relationship).
    But for the @OneToOne key for the referenced object, the key is placed in the main/source object as the example below:
    @Entity
    public class Employee {
    @Id
    @Column(name="EMP_ID")
    private long id;
    @OneToOne(fetch=FetchType.LAZY)
    @JoinColumn(name="ADDRESS_ID")
    private Address address;
    EMPLOYEE (table)
    EMP_ID FIRSTNAME LASTNAME SALARY ADDRESS_ID
    1 Bob Way 50000 6
    2 Sarah Smith 60000 7
    ADDRESS (table)
    ADDRESS_ID STREET CITY PROVINCE COUNTRY P_CODE
    6 17 Bank St Ottawa ON Canada K2H7Z5
    7 22 Main St Toronto ON Canada     L5H2D5
    From the Oracle documentation: "Reference partitioning allows the partitioning of two tables related to one another by referential constraints. The partitioning key is resolved through an existing parent-child relationship, enforced by enabled and active primary key and foreign key constraints."
    How can we use "partition by reference" on @OneToOne relationsships or are there other solutions?
    Thanks for any advice.
    /Mats

    Crospost! How to use Oracle partitioning with JPA @OneToOne reference?

  • I am unable to drag any playlists to my ipod- the circle with red line through it shows up- what is up ?

    I am unable to drag any playlists to my ipod- the circle with red line through it shows up and precludes it from being accepted- what is up ?

    Though I have doubts for success, you might try a SMC reset.  It can do no harm.  Otherwise, barring suggestions from others, the Apple Store or qualified repair facility is the last option.
    http://support.apple.com/kb/HT3964
    Ciao.

  • Solo Button in Channel Strip with Red Line

    Solo Button in Channel Strip with Red Line through it and it won't solo?
    How'd it happen and how do you get rid of it?
    Thanks!

    Try This----From the Manual
    Logic Pro, Express: Solo Safe mode may not remain disabled for a particular channel strip
    Symptoms
    In certain projects, "Solo Safe" mode for a channel strip may enable each time you load the project, even after you disable it and save the project.
    Resolution
    When a channel strip in Logic is "Solo Safe", it remains audible, even when other channel strips are soloed. Solo Safe is indicated by a diagonal red line through the solo button on a channel strip.
    You can manually toggle the solo safe status of a channel strip by Control-clicking its solo button. There are times when you may find that a particular audio channel strip in a project reverts to solo safe mode when you load the project, even after you manually disable solo safe. Here is why that may happen and steps you can take to prevent it from occurring.
    A Logic project contains a special audio channel strip used for pre-listening to audio in the Sample Edit window, Audio Bin, and Loop Browser. When you create a Logic project from one of the factory templates, this channel strip is assigned to "Audio 256". This channel strip stays in solo safe mode so that you can always preview audio. The image below shows the channel strip for a new, empty project.
    If there is no audio channel strip in a project assigned to "Audio 256", Logic will use the highest-numbered available audio channel for pre-listening. When the project is loaded, that channel strip will be put into solo safe mode. You may find this happens in older projects that you open in Logic 8, or in cases where you have deleted the "Audio 256" channel strip in a Logic 8 project. To prevent this from affecting channel strips you are using in a project's arrangement, follow these steps:
    Choose Window > Environment.
    From the Environment window menu, choose New > Channel Strip > Auxiliary. A channel strip will appear in the environment.
    Select the channel strip. It will highlight.
    In the Device parameter box in the upper left of the Environment window, click the arrows to the right of "Channel" and choose Audio > Audio 256 from the menu.
    Select the text tool, click on the name below the channel strip and name it "Prelisten".

  • Uploading a file (.doc, .xls, .txt) into an Oracle table with BLOB column

    Hello All :
    I have been trying to figure out for a simple code I can use in my JSP to upload a file (of any format) into an Oracle table with a BLOB column type. I have gone through a lot of existing forums but couldnot find a simple code (that doesnot use Servlet, for eg.) to implement this piece.
    Thanks a lot for your help !!

    Hi.
    First of all to put a file into Oracle you need to get the array of bytes byte[] for that file. For this use for example FileInputStream.
    After you get the byte array try to use this code:
            try {
                Connection conn = myGetDBConnection();
                PreparedStatement pstmt = conn.prepareStatement("INSERT INTO table1 (content) VALUES(?)");
                byte[] content = myGetFileAsBytes();
                if (content != null) {
                    pstmt.setBinaryStream(0, new ByteArrayInputStream(content), content.length);
                pstmt.close();
                conn.close();
            } catch (Exception ex) {
                ex.printStackTrace();
            }or instead of using ByteArrayInputStream try pstmt.setBinaryStream(0, new FileInputStream(yourFile), getFileSize());Hope this will help...
    regards, Victor Letunovsky

  • Problem with Purchase Order creation with Random numbers .

    Hi Experts
    Currently i am facing an issue with Bapi BAPI_PO_CREATE1 to create Purchase order with random numbers for example items 1, 3,5.
    Please let me know the settings .
    Thanks in Advance

    Hi Neha,
    A reset of the release strategy only takes place if
    -  the changeability of the release indicator is set to '4' in
       case of a purchase requisition and '4' or '6' in case of
       another purchasing document (purchase order, request for
       quotation, contract, scheduling agreement),
    -  the document is still subject to the previous release
       strategy,
    -  the new TOTAL NET ORDER VALUE is higher than the old one.
    The total net order value is linked to CEKKO-GNETW for a purchase order,
    CEBAN-GSWRT for a purchase requisition item-wise release and CEBAN-GFWRT
    for a purchase requisition overall release.
    If you have maintained a Tolerance for value changes during release
    (V_161S-TLFAE), the release strategy is reset when the value of the
    document is higher than the percentage you have specified and if the
    document is still subject to the previous release strategy.
    Review the SAP note 365604 and 493900 for more
    information about Release strategy.
    Regards,
    Ashwini.

  • How to install Oracle 10g with its grid functionality on Linux?

    Well, I thought changing the subject line might help to convey the meaning of what I want better. Here's my earlier post from a few hours earlier.
    Hi,
    I need carry out TPC-C benchmarking test for Oracle 10g (using one, two and four servers; basically using the grid in case of multiple servers). I have installed oracle 10g (with default options) on all the four servers, but beyond that I have no idea as to how can I invoke the grid option in order to carry out the tests-by my statement, I mean do I need to choose grid option while installing Oracle or is it the case that I specify the grid option in the code that I write for carrying out the tests. The OS is LInux (Scientific Linux).
    An unrelated problem-one of the servers is 64 bit while others are 32 bit, and proper versions of oracle have been installed. Neglecting the obvious fact that this will make comparisons difficult does anyone anticipate any other problem?
    Many Thanks!
    Steve
    *******************************************************************************************************

    Do you think that the installation of RAC can be done
    in a week? yes, as long as you know what you are doing and can catch the concept quickly and good at following instructions.
    Moreover, we do not have a cluster-all we
    have are four servers that are separate. Do you know
    if the name Real Application Clusters implies that
    the servers have to be in a cluster?
    The basic idea of RAC is all these hosts need to share same set of storage. The most popular such storage are SAN and NAS.
    An example of building RAC on linux
    http://www.oracle.com/technology/pub/articles/hunter_rac10gr2_iscsi.html

  • Oracle Reports with XML output showing data as asterik character

    Hello,
    I'm trying to create an Oracle report with xml output. Here is the issue I'm having some of the columns in my report are of datatype number. When I run the report and generate xml file the values for those columns(datatype number) are showing as (*) character, other columns are showing fine. But when I run the report as text output then data is fine. I don't understand why this is happening.
    The property of column is Column Type - Database Scalar, Datatype - Number , width 0,-127.
    Does the width has to do anything with this?
    I'm using Report Builder 6.0.8.11.3, DB version 10g.
    Can anyone please help me with the issue I'm having.
    Thanks

    If the links in your example report1 and report2
    follow my format stated earlier
    http://machine:port/reports/rwservlet/report=reportnam
    e.rdf&destype=cache& paramform=htmlcss&server=<YourReportSe
    rverName>&userid=scott/tiger@hrdb&desformat=pdf
    This is what I believe
    >
    so http://machine:port/ is the port where
    JBoss is running and
    This should be the port that the report server is listening on
    >
    server=<YourReportServerName> is the name of
    my oracle report server
    so I call the above link in my current application
    and the report would show up
    Yes
    >
    that means (correct me if I am wrong) that my reports
    would have to be deployed in OracleAS
    Yes
    >
    I have to try all this yet as till this point I was
    trying to run Oracle reports deployed in JBoss...
    This may be possible, I am not sure.
    >
    Oracle J2EE Thin Client?
    I am not sure what this is used for in your setup.

  • Problem with decimal numbers..

    hi i posted the other day with a problem I had. I thought it was all sorted but I have just realised that there is another problem.
    I have the following code for an applet:
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class TextFieldExample extends Applet implements ActionListener {
    TextField textInput;
    String text = "";
    public void init() {
    textInput = new TextField (20);
    add(textInput);
    textInput.addActionListener(this);
    public void actionPerformed(ActionEvent e) {
    text = textInput.getText();
    repaint();
    public void paint(Graphics g) {
         int x = Integer.parseInt(text);
         double y = Math.abs(x);
    g.drawString("You wrote " + text,20,500);
         g.drawString("The absolute value is: " + y,20,100);
    I am trying to do the applet so when you type in an angle, it tell you the sine, cosine etc. I can get it to work with whole numbers like 1,10,300, but it won't work when i try to use decimal numbers. Can anyone help?
    Thnk you in advance!
         

    Hi,
    you are using Integer.parseInt() to convert the input, so it will only work if the text is an integer. Use Double.parseDouble() instead.
    Andre

  • Framemaker 9 PDF exports with red boxes around text areas

    I have a doc, made in FM 7, using version 9
    When I make a PDF i get boxes around some of the text. It wasn't there during FM design.
    example
    (see red)
    Please help

    AxialInfo wrote:
    you might consider saving the FM file as MIF and then looking at the MIF using the wonderful freebie MIFBrowser, from Graham Wideman, from here:
    Wideman Adobe FrameMaker Topics
    to find the problem area do a search for the string that is in the title
    "Downblast Centrifugal
    Exhaust Ventilator
    Roof Mounted
    Belt Drive"
    although just pasting it here it looks like you might have soft carriage returns in it which will make it necessary to just search for the two-word segments.
    After you find the phrase, use the left navigation area to walk "up" the MIF file, looking for the specific structure that those words are in (is it a text box, or rather a graphic frame inside a text box, correct?) Is this an anchored frame, or is it just floating? If it's anchored, where is it anchored?
    In the MIF, see if you can identify any odd sounding properties of the text box or graphic frame. The MIF reference manual is a PDF found in the FM documentation folder.
    Also, one other possibility is that there's something funky with the red swash that goes across the page that's somehow "contaminating" the text frame. What kind of graphic type is the red swash? Could you take a copy of the FM file and remove the swash and then make a PDF, to see if that solves the red outline.
    edit: additional questions: are the swash and the text frame on the body page or on the master page? When Arnis suggested checking for graphics behind the text frame, did you also check the master page(s) as well as the body pages?
    Sheila
    I tried the program:
    <TextFlow
    <Notes
    > # end of Notes
    <Para
      <Unique 1291794>
      <Pgf
       <PgfTag `Body'>
       <PgfUseNextTag No>
       <PgfNextTag `'>
       <PgfAlignment Right>
       <PgfFIndent  0.0">
       <PgfLIndent  0.0">
       <PgfRIndent  0.0">
       <PgfFIndentRelative No>
       <PgfFIndentOffset  0.0">
       <PgfTopSeparator `'>
       <PgfTopSepAtIndent No>
       <PgfTopSepOffset  0.0">
       <PgfBotSeparator `'>
       <PgfBotSepAtIndent No>
       <PgfBotSepOffset  0.0">
       <PgfPlacement Anywhere>
       <PgfPlacementStyle Normal>
       <PgfRunInDefaultPunct `. '>
       <PgfSpBefore  0.0 pt>
       <PgfSpAfter  0.0 pt>
       <PgfWithPrev No>
       <PgfWithNext No>
       <PgfBlockSize 1>
       <PgfFont
        <FTag `'>
        <FPlatformName `W.Arial.R.700'>
        <FFamily `Arial'>
        <FVar `Regular'>
        <FWeight `Bold'>
        <FAngle `Regular'>
        <FEncoding `FrameRoman'>
        <FSize  14.0 pt>
        <FUnderlining FNoUnderlining>
        <FOverline No>
        <FStrike No>
        <FChangeBar No>
        <FOutline No>
        <FShadow No>
        <FPairKern Yes>
        <FTsume No>
        <FCase FAsTyped>
        <FPosition FNormal>
        <FDX  0.0%>
        <FDY  0.0%>
        <FDW  0.0%>
        <FStretch  100.0%>
        <FLanguage USEnglish>
        <FLocked No>
        <FSeparation 0>
        <FColor `Black'>
       > # end of PgfFont
       <PgfLineSpacing Fixed>
       <PgfLeading  3.0 pt>
       <PgfAutoNum No>
       <PgfNumTabs 0>
       <PgfHyphenate Yes>
       <HyphenMaxLines 2>
       <HyphenMinPrefix 3>
       <HyphenMinSuffix 3>
       <HyphenMinWord 5>
       <PgfLetterSpace No>
       <PgfMinWordSpace 90>
       <PgfOptWordSpace 100>
       <PgfMaxWordSpace 110>
       <PgfMinJRomanLetterSpace 0>
       <PgfOptJRomanLetterSpace 25>
       <PgfMaxJRomanLetterSpace 50>
       <PgfMinJLetterSpace 0>
       <PgfOptJLetterSpace 0>
       <PgfMaxJLetterSpace 10>
       <PgfYakumonoType Floating>
       <PgfAcrobatLevel 0>
       <PgfPDFStructureLevel 5>
       <PgfLanguage USEnglish>
       <PgfCellAlignment Top>
       <PgfCellMargins  0.0 pt 0.0 pt 0.0 pt 0.0 pt>
       <PgfCellLMarginFixed No>
       <PgfCellTMarginFixed No>
       <PgfCellRMarginFixed No>
       <PgfCellBMarginFixed No>
       <PgfLocked No>
      > # end of Pgf
      <ParaLine
       <TextRectID 119>
       <String `Downblast Centrifugal'>
      > # end of ParaLine
    > # end of Para
    <Para
      <Unique 1291795>
      <PgfTag `Body'>
      <Pgf
       <PgfAlignment Right>
       <PgfFont
        <FTag `'>
        <FPlatformName `W.Arial.R.700'>
        <FFamily `Arial'>
        <FVar `Regular'>
        <FWeight `Bold'>
        <FAngle `Regular'>
        <FEncoding `FrameRoman'>
        <FSize  14.0 pt>
        <FUnderlining FNoUnderlining>
        <FOverline No>
        <FStrike No>
        <FChangeBar No>
        <FOutline No>
        <FShadow No>
        <FPairKern Yes>
        <FTsume No>
        <FCase FAsTyped>
        <FPosition FNormal>
        <FDX  0.0%>
        <FDY  0.0%>
        <FDW  0.0%>
        <FStretch  100.0%>
        <FLanguage USEnglish>
        <FLocked No>
        <FSeparation 0>
        <FColor `Black'>
       > # end of PgfFont
       <PgfLeading  3.0 pt>
      > # end of Pgf
      <ParaLine
       <String `Exhaust Ventilator'>
      > # end of ParaLine
    > # end of Para
    <Para
      <Unique 1291796>
      <PgfTag `Body'>
      <Pgf
       <PgfAlignment Right>
       <PgfFont
        <FTag `'>
        <FPlatformName `W.Arial.R.700'>
        <FFamily `Arial'>
        <FVar `Regular'>
        <FWeight `Bold'>
        <FAngle `Regular'>
        <FEncoding `FrameRoman'>
        <FSize  14.0 pt>
        <FUnderlining FNoUnderlining>
        <FOverline No>
        <FStrike No>
        <FChangeBar No>
        <FOutline No>
        <FShadow No>
        <FPairKern Yes>
        <FTsume No>
        <FCase FAsTyped>
        <FPosition FNormal>
        <FDX  0.0%>
        <FDY  0.0%>
        <FDW  0.0%>
        <FStretch  100.0%>
        <FLanguage USEnglish>
        <FLocked No>
        <FSeparation 0>
        <FColor `Black'>
       > # end of PgfFont
       <PgfLeading  3.0 pt>
      > # end of Pgf
      <ParaLine
       <String `Roof Mounted'>
      > # end of ParaLine
    > # end of Para
    <Para
      <Unique 1291797>
      <PgfTag `Body'>
      <Pgf
       <PgfAlignment Right>
       <PgfFont
        <FTag `'>
        <FPlatformName `W.Arial.R.700'>
        <FFamily `Arial'>
        <FVar `Regular'>
        <FWeight `Bold'>
        <FAngle `Regular'>
        <FEncoding `FrameRoman'>
        <FSize  14.0 pt>
        <FUnderlining FNoUnderlining>
        <FOverline No>
        <FStrike No>
        <FChangeBar No>
        <FOutline No>
        <FShadow No>
        <FPairKern Yes>
        <FTsume No>
        <FCase FAsTyped>
        <FPosition FNormal>
        <FDX  0.0%>
        <FDY  0.0%>
        <FDW  0.0%>
        <FStretch  100.0%>
        <FLanguage USEnglish>
        <FLocked No>
        <FSeparation 0>
        <FColor `Black'>
       > # end of PgfFont
       <PgfLeading  3.0 pt>
      > # end of Pgf
      <ParaLine
       <String `Belt Drive'>
      > # end of ParaLine
    > # end of Para
    > # end of TextFlow
    I don't see the red in there
    I made another pdf, after deleting the red bar (it's a eps.) and the reb boxes are still there
            I'm not using any master.
    Thanks for the advice anyhow    
    -Matt

Maybe you are looking for

  • Itunes update 11.0.2.26 running slow

    I updated to 11.0.2.26 and now itunes is running very very slow.  I went to apps to updates apps and its sits there for what seems to be an hour trying to access iTunes Store with no luck.  When I hook my iPhone 5 up my computer recognizes the phone

  • In XML view, how to set sap.ui.core.CSSSize array for property "widths" of MatrixLayout Control?

    As SAPUI5 prefer XML views, I'm rewriting JS view into XML views. When I translate the statements below, I can not set sap.ui.core.CSSSize array for property "widths" of Control MatrixLayout. JS version: var oLayout = new sap.ui.commons.layout.Matrix

  • SOP mass processing problem

    Hi All, I am working on flexible planning in SOP.. I am trying to transfer the SOP plan to demand management through mass processing function.. I have done the following... I created transfer profile through MC8S i created activity through MC8T  and

  • Add a form element

    Hi everybody I want to create some text box on my form dependent on selected option from my combobox . what should i do ?

  • Duplicated pictures when sync camera roll from iPhone to iTunes

    Dear all, 2 issues: 1. When I sync my iPhone to iTunes and iPhoto opens (if there are pictures on the camera roll not yet imported), the non-imported pictures appear to be duplicated.  It is obviously quite annoying as I have to go through and delete