User entered text at the bottom of my report

Hi SDN
I Need user entered text at the intial variable screen should come in my out put of the report as comment at the bottom
Thanks,
Chinna.

which front end tool you want to use to create the report
we have query designer, report designer, WAD, crystal reports and many?
I am not sure that with query designer you will be able to acahieve it. But sure that not a straight forward soltuion.
With report designer, and crystal reports, you can easily achieve it, it seems.

Similar Messages

  • User entered text in a Report..

    For the Report that I am generating, most of the data will come from user entered text like descriptions and policies.
    I am thinking that the best way to do this, is use a Java GUI, and have this GUI prompt the user for all user entered data to be included in the report, and then have the GUI make an http call to rwcgi60.
    Is this the best approach?

    hello,
    well, this is one way todo it. you could also create a forms or portal-forms application to enter the data, save it into a database table and then invoke the report.
    that mainly depends on the requirements for your application.
    regards,
    the oracle reports team

  • User Signature at the bottom of BI Report

    Hi All,
    Is it possible to provide <User Signature / Name> space / section at the bottom of BI report output (both Web & Analyzer)?
    Best Regards,
    Jatin Gusain

    Hello Jatin Gusain
    At the Web Aplication Design you can insert a text item and at this item you can insert the name of the author of the report manually or by a General Text Element.
    To arrange it you will need to use a conainer layout.
    Thanks,
    Diego Ferrary

  • I wanted to tell that the forums were working well again. And then I saw that I could not enter text in the body again with Windows Chrome.

    After long waiting and clicking I succeeded to reach this body.
    Now I understand why there is so few traffic the last days.
    Success
    Cor

    After long waiting and clicking I succeeded to reach this body.
    Did you try to find any more details to refine your symptom description?  E.g. this sounds like it might be a variation of the one where in IE we see no Edit toolbar but apparently in that case we could treat it like an HTML source edit pane and
    then Submit that.  I only see those very sporadically.  Another possibility suggested by this description ("could not enter text in the body") would be to turn off CSS.  I don't know how you would do that using Chrome but in IE you could
    use View, Styles, No Style (Alt-V y N ).
    FWIW for me the biggest problem that I had in the last few days was related to DNS.  I don't know what was going on but in some cases I had to resort to using nslookup's second operand to request a lookup from Google's DNS server (e.g. 8.8.8.8) and
    then try to work with the IP address that that returned.  I was mostly on Answers where that happened though.
    Robert Aldwinckle
    Robert,
    I'm just an average user, not as knowledged as you. I thought these forums were for persons like me. 
    Success
    Cor

  • Validate user-entered text in JTable

    How do I validate user entered text in JTable cell, so only the values 1234567890. are acceptet? The cell should contain only doubles....

    import java.awt.*;
    import javax.swing.*;
    import javax.swing.table.*;
    public class aslan extends JFrame {
      public aslan() {
        TableModel model = new CustomTableModel();
        JTable table = new JTable(model);
        getContentPane().add(new JScrollPane(table), "Center");
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        setSize(300,200);
        setLocation(300,300);
        setVisible(true);
      private class CustomTableModel extends AbstractTableModel {
        String[] headings = new String[] {
          "Cost", "Item", "Type"
        Object[][] data = new Object[][] {
          { new Double(12.75), "glue",   "tube" },
          { new Double(15.20), "hammer", "claw" },
          { new Double(8.32),  "saw",    "hack" }
        public int getRowCount() {
          return data.length;
        public int getColumnCount() {
          return data[0].length;
        public Object getValueAt(int row, int column) {
          return data[row][column];
        public void setValueAt(Object value, int row, int column) {
          data[row][column] = value;
          fireTableDataChanged();
        public String getColumnName(int column) {
          return headings[column];
        public Class getColumnClass(int column) {
          return data[0][column].getClass();
        public boolean isCellEditable(int row, int column) {
          return true;
      public static void main(String[] args) {
        new aslan();
    }

  • Validating User Entered text inside jtable

    I have a editable jtable.My problem is validation of user entered text.
    I know how to validate integer text but I want to validate string.such as no special chars are there,and field shud be not null.and as long as text is not valid focus is restricted to that column only.
    Any body having any idea abt this.plz do help me.

    Well you really have 2 requirements:
    such as no special chars This can be edited as the character is typed. You create a custom editor the uses a text field with a DocumentFilter. Then you can edit the text as it is typed. Read the Swing tutorial on "Text Component Feature" for an example of using a DocumentFilter:
    http://java.sun.com/docs/books/tutorial/uiswing/components/generaltext.html
    field shud be not nullThis needs to be edited when you leave the cell. So you will need a custom editor. This posting has an example that should help you:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=575309

  • Calendar on iOS 7. Anyone noticed that when you enter text into the "notes section" of a day, the text disappears behind the keyboard rather than scrolling down to keep pace with text entry ? Looks like an 7 glitch to me ?

    Calendar on iOS 7. Anyone noticed that when you enter text into the "notes section" of a day, the text disappears behind the keyboard rather than scrolling down to keep pace with text entry ? Looks like an 7 glitch to me ?

    Doesn't do that for me. Try resetting the phone

  • Check box - text at the bottom of the check box

    Hi Apex folks,
    I came across a different requirement where as i need to place the check box text in break line at the bottom of the check box. Say I have a check box item X . which having following items
    STATIC:
    A - I am good;1
    B - I am ok ;2
    C- I am bad;3
    D- I am confused;4
    I have to display the text in the bottom of the check box and the text like "A" at the first line and " I am good" at the second line . Is there any possibility to achieve that.
    Thanks
    Karthik

    Karthik C wrote:
    I came across a different requirement where as i need to place the check box text in break line at the bottom of the check box. Say I have a check box item X . which having following items
    STATIC:
    A - I am good;1
    B - I am ok ;2
    C- I am bad;3
    D- I am confused;4
    I have to display the text in the bottom of the check box and the text like "A" at the first line and " I am good" at the second line . Is there any possibility to achieve that.I have to pick option D...
    Do you mean like this?
    [ ]        [ ]       [ ]        [X]
    A          B         C          D
    I am good  I am OK   I am bad   I am confusedIf so, why? If not, show us the required layout.
    Help us to help you. When you have a problem you should provide as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s) (making particular distinction as to whether a "report" is a standard report, an interactive report, or in fact an "updateable report" (i.e. a tabular form)
    With APEX we're also fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues, especially those relating to layout and visual formatting. If you expect a detailed answer then it's appropriate for you to take on a significant part of the effort by getting as far as possible with an example of the problem on apex.oracle.com before asking for assistance with specific issues, which we can then see at first hand.

  • How to get the User entered value in the Submit request form for a parameter of a concurrent program in Oracle applications.

    Hi All,
    I have a requirement where i need to get the user entered value in the Parameter of a concurrent program while submitting it. i tried to query the FND_CONCURRENT_REQUESTS table but in that it stores the ID values from the value set of the Parameter.
    After submitting the Concurrent request when we click on the view Details button it opens a form where it displays the arguments in the parameter field .  i want to get that string.
    Thanks a lot in advance for your time and help.
    - Vijay

    Hi All,
    I have a requirement where i need to get the user entered value in the Parameter of a concurrent program while submitting it. i tried to query the FND_CONCURRENT_REQUESTS table but in that it stores the ID values from the value set of the Parameter.
    After submitting the Concurrent request when we click on the view Details button it opens a form where it displays the arguments in the parameter field .  i want to get that string.
    Thanks a lot in advance for your time and help.
    - Vijay

  • The cursor cannot be placed on the text at the bottom of the page

    I have a very long document that I'm working on. The latter pages are behaving strangely. When I scroll down big blocks of grey appear between pages, when I try to place the cursor on a line of text at the bottom of the page it simply won't stick.

    I am not sure what the problem is but it is something being reported by others.
    Personally I do not trust longer documents in Pages, it may be advisable to break them up into smaller documents and simply continue the page numbers on in subsequent document.
    Peter

  • Cant center my navigation text at the bottom of the page

    I am trying to center the navigation text as the bottom of my page but I can't seem to do it without centering all the rest of my content. I am not sure how to isolate the navigation text. I tried highlighting the text and making a new rule, I tried both ID and class but it did not center the text. If I use html I can center the text but it also centers the rest of the content. Do I have to place the text in a div?  Also beneather the navigation text is a rule (horizontal line) and a copyright line that I also want to center as well. I plan on reusing this grouping of navigation text, horizontal rule, and copyright text on all my pages as a footer. I have included the html & css code below. Thanks Dan
        HOME   
    PRODUCTS
    REQUEST QUOTE
    CONTACT US
    PROCESS EQUIPMENT
    Pumps   
    Air Diaphragm Centrifugal Drum Gear Hose Magnetic Drive Metering Peristaltic Piston Vertical   
    Mixers   
    Direct Drive Gear Drive C-Clamp Mount Drum Mount Fixed Top Mount Side Mount   
    Filters   
    Bag Cartridge Centrifuge
    Indexing Media           Gravity Filter   Vacuum FIlter   Sludge FIlter   Pressure Filter   Sludge Filter          Oil Skimmers Oil-Water Separators   
    Tanks   
    Carboys & Totes Rectangular Cylindrical Cone Bottom Cylindrical Flat Bottom Vertical Bulk Storage   
    Piping / Hose   
    PVC Pipe & Fittings CPVC Pipe & Fittings Polypro Pipe & Fittings PE Pipe & Fittings Kynar Pipe & Fittings Sanitary Hose, Gaskets & Fittings   
    Immersion Heaters   
    Electric Immersion Steam Coil   
    Process Controls   
    pH & ORP Probes Conductivity Probes Flowmeters Level Sensors Pressure Transducers Process Controllers VFD's Power Monitors   
    ENGINEERED SYSTEMS
    Chemical Feed Skids
    Evaporators   
    Burt Process Equipment Filtertech   
    Filtration Systems
    Fume Scrubbers
    pH Neutralization
    RODI Water Systerms
    Transfer Sumps
    UL Control Panels
    Vacuum Distillation
    Wastewater Treatment   
    Burt Process Equipment Filtertech   
    Water Reclaim (LEEDS)
    Content for  id "sidebar" Goes Here Engineered Solutions to your fluid handing requirements.
    Chemtech Process Equipment (CPE) provides fluid handling equipment to a wide range of industries which include pharmaceutical, biotechnology, microelectronics, metal finishing,  chemical  processing and general manufacturing. CPE offers turnkey engineered products such as transfer sumps, wastewater treatment, coolant filration, oil-water separation, water reclamation (LEEDS), pH neutralization, deionized water (RODI), and custom fabricated tanks and vessels. CPE’s product line includes pumps, tanks, mixers, filters, evaporators, magnetic separators, centrifuges, oil skimmers, flowmeters, level, pH, ORP, and conductivity measurement, heaters, plastic pipe, valves and fittings, sanitary hose, and gaskets to name a few. Feel free to review our product line and contact us if you have any questions or applications to discuss.   HOME | PRODUCTS | REQUEST QUOTE | CONTACT US
    © 2011 Chemtech Process Equipment, All Rights Reserved, Designed and Developed By Graphics Advantage.
    @charset "utf-8"; body { background-image: url(../Images/logo-background.jpg); background-repeat: repeat; background-attachment: fixed; } #container { font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #000; background-color: #FFF; width: 960px; margin-right: auto; margin-left: auto; } #header { background-image: url(../Images/header.jpg); width: 960px; height: 310px; } #navigation_bar { height: 31px; width: 960px; } #sidebar { float: left; width: auto; } h4 { font-size: 12px; font-family: Arial, Helvetica, sans-serif; } h1 { font-family: Arial, Helvetica, sans-serif; font-size: 24px; font-weight: bold; color: #F00; } /* Ajatix Pure CSS Menu Copyright (C) 2010 Ajatix. All rights reserved. http://www.ajatix.com Unregistered copy. Any usage except for the purpose of evaluation is strictly prohibited. */ .AJXMenuNQIdcZB {position:relative;z-index:100;width:100%;min-width:600px;height:31px;background:#4c97c3 url(ajxmenu_files/menu-bg.jpg) center right;text-align:center;} * html .AJXMenuNQIdcZB .ajxmw1 {float:left;height: 1px;border-left:600px solid #fff;} * html .AJXMenuNQIdcZB .ajxmw2 {position:relative;margin-left:-600px;height:1px;background:#4c97c3 url(ajxmenu_files/menu-bg.jpg) center right;} .AJXMenuNQIdcZB ul {position:relative;display:inline-block;margin:0;padding:0;list-style-type:none;} * html .AJXMenuNQIdcZB ul {display:inline;} *+html .AJXMenuNQIdcZB ul {display:inline;} .AJXMenuNQIdcZB li {float:left;margin:0;} .AJXMenuNQIdcZB a {display:block;float:left;height:31px;white-space:nowrap;padding:0 0 0 14px;font:12px/31px Arial,Helvetica,sans-serif;text-decoration:none;text-align:left;color:#ffffff;background: #4c97c3 url(ajxmenu_files/top.jpg) no-repeat top left;} .AJXMenuNQIdcZB a b {display:block;padding:0 14px 0 0;font-weight:normal;background:url(ajxmenu_files/top.jpg) no-repeat top right;} .AJXMenuNQIdcZB li:hover a,.AJXMenuNQIdcZB a:hover {text-decoration:underline;color:#ff0000;background:#65b0dc url(ajxmenu_files/top-mo.jpg) no-repeat bottom left;} .AJXMenuNQIdcZB li:hover a b,.AJXMenuNQIdcZB a:hover b {background:url(ajxmenu_files/top-mo.jpg) no-repeat bottom right;} .AJXMenuNQIdcZB br {clear:both;height:0;font-size: 1px;line-height: 0px;} /* Ajatix Pure CSS Menu Copyright (C) 2010 Ajatix. All rights reserved. http://www.ajatix.com Unregistered copy. Any usage except for the purpose of evaluation is strictly prohibited. */ .AJXMenuEHWBGHC {position:relative;z-index:100;width:180px;} .AJXMenuEHWBGHC ul {position:relative;float:left;margin:0;padding:0;list-style-type:none;background:#4c97c3; } .AJXMenuEHWBGHC li {float:left;width:180px;margin:0;} .AJXMenuEHWBGHC li:hover,.AJXMenuEHWBGHC li a:hover {position:relative;} .AJXMenuEHWBGHC h1 {display:block;width:166px;height:31px;white-space:nowrap;overflow:hidden;padding:0 0 0 14px;margin:0;font:12px/31px Verdana,Arial,Helvetica,sans-serif;text-decoration:none;text-align:center;color:#ffffff;b ackground:#4c97c3 url(verticalmenu_files/heading.jpg) no-repeat top left;} .AJXMenuEHWBGHC h1 b {display:block;padding:0 28px 0 0;background:url(verticalmenu_files/heading.jpg) no-repeat top right;} .AJXMenuEHWBGHC a {display:block;width:166px;height:31px;white-space:nowrap;padding:0 0 0 14px;font:12px/31px Verdana,Arial,Helvetica,sans-serif;text-decoration:none;text-align:left;color:#ffffff;bac kground:#4c97c3 url(verticalmenu_files/top.jpg) no-repeat top left;} .AJXMenuEHWBGHC a b {display:block;padding:0 28px 0 0;font-weight:normal;background:url(verticalmenu_files/top.jpg) no-repeat top right;} .AJXMenuEHWBGHC li:hover a,.AJXMenuEHWBGHC a:hover {text-decoration:underline;color:#ff0000;background:#65b0dc url(verticalmenu_files/top-mo.jpg) no-repeat bottom left;} .AJXMenuEHWBGHC li:hover a b,.AJXMenuEHWBGHC a:hover b {background:url(verticalmenu_files/top-mo.jpg) no-repeat bottom right;} .AJXMenuEHWBGHC a.ajxsub {background:#4c97c3 url(verticalmenu_files/top-sub.jpg) no-repeat top left;} .AJXMenuEHWBGHC a.ajxsub b {background:url(verticalmenu_files/top-sub.jpg) no-repeat top right;} .AJXMenuEHWBGHC li:hover a.ajxsub,.AJXMenuEHWBGHC a.ajxsub:hover {background:#65b0dc url(verticalmenu_files/top-sub-mo.jpg) no-repeat bottom left;} .AJXMenuEHWBGHC li:hover a.ajxsub b,.AJXMenuEHWBGHC a.ajxsub:hover b {background:url(verticalmenu_files/top-sub-mo.jpg) no-repeat bottom right;} .AJXMenuEHWBGHC ul ul {position:absolute;left:-9999px;top:-9999px;width:190px;height:auto;background:#4c97c3;} .AJXMenuEHWBGHC table {margin-top:-1px;border-collapse:collapse;} .AJXMenuEHWBGHC ul :hover ul {left:180px;top:0px;} .AJXMenuEHWBGHC li li {width:190px;padding:0} .AJXMenuEHWBGHC ul ul a,.AJXMenuEHWBGHC ul :hover ul a,.AJXMenuEHWBGHC ul :hover ul :hover ul a {margin:0;width:176px;height:31px;padding:0 0 0 14px;font:12px/31px Verdana,Arial,Helvetica,sans-serif;text-decoration:none;color:#ffffff;background:#4c97c3 url(verticalmenu_files/top.jpg) no-repeat top left;} .AJXMenuEHWBGHC ul :hover ul a b,.AJXMenuEHWBGHC ul :hover ul :hover ul a b,.AJXMenuEHWBGHC a.ajxsub:hover a b,.AJXMenuEHWBGHC a.ajxsub:hover a.ajxsub:hover a b {display:block;padding:0 28px 0 0;font-weight:normal;background:url(verticalmenu_files/top.jpg) no-repeat top right;} .AJXMenuEHWBGHC ul ul :hover a,.AJXMenuEHWBGHC ul ul a:hover,.AJXMenuEHWBGHC ul ul :hover ul :hover a,.AJXMenuEHWBGHC ul ul :hover ul a:hover {background:#65b0dc url(verticalmenu_files/top-mo.jpg) no-repeat bottom left;} .AJXMenuEHWBGHC ul ul :hover a b,.AJXMenuEHWBGHC ul ul :hover ul :hover a b,.AJXMenuEHWBGHC a:hover a:hover b,.AJXMenuEHWBGHC a:hover a:hover a:hover b {background:url(verticalmenu_files/top-mo.jpg) no-repeat bottom right;} .AJXMenuEHWBGHC ul ul a.ajxsub,.AJXMenuEHWBGHC ul :hover ul a.ajxsub {width:176px;padding:0 0 0 14px;background:#4c97c3 url(verticalmenu_files/top-sub.jpg) no-repeat top left;} .AJXMenuEHWBGHC ul :hover ul a.ajxsub b {padding:0 28px 0 0;background:url(verticalmenu_files/top-sub.jpg) no-repeat top right;} .AJXMenuEHWBGHC ul ul :hover a.ajxsub,.AJXMenuEHWBGHC ul ul a.ajxsub:hover  {background:#65b0dc url(verticalmenu_files/top-sub-mo.jpg) no-repeat bottom left;} .AJXMenuEHWBGHC ul ul :hover a.ajxsub b,.AJXMenuEHWBGHC ul :hover ul a.ajxsub:hover b {background:url(verticalmenu_files/top-sub-mo.jpg) no-repeat bottom right;} .AJXMenuEHWBGHC ul :hover ul ul {position:absolute;left:-9999px;top:-9999px;} .AJXMenuEHWBGHC ul :hover ul :hover ul {left:190px;top:0px;} .AJXMenuEHWBGHC br {clear:both;height:0;font-size: 1px;line-height: 0px;}

    Copy & paste the following code into a new, blank HTML document.  The code is well commented so you can follow along.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Chemtech Process Equipment</title>
    <style type="text/css">
    html {font-size:100%; overflow-y:scroll}
    /**LAYOUT**/
    body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #000;
    background: #CCC url(../Images/logo-background.jpg) no-repeat fixed;
    #wrapper {
    background-color: #FFF;
    border:1px solid #000;
    width: 960px;
    margin:0 auto; /*with width, centered on screen*/
    overflow:hidden; /*for float containment*/
    #header {
    background: #000 url(../Images/header.jpg);
    min-height: 310px;
    #navigation_bar {
    min-height: 31px;
    #sidebar {
    float: left;
    width: 250px;
    border-right: 3px solid #CCC;
    #content {
    padding:2%;
    overflow: hidden; /*for inside float containment*/
    border-top: 3px solid #CCC;
    #footer {
    clear:both; /*clear the sidebar float*/
    text-align: center;
    width: 100%;
    /**RE-USABLE CLASSES**/
    .left {text-align:left}
    .center {text-align:center}
    .right {text-align:right}
    /**floats, clearing**/
    .floatLt, .floatRt {
    width:17.8%;
    min-height:100px;
    background:#FFCCCC;
    border-left:1px dotted red;
    padding:1%;
    .floatLt {float:left;}
    .floatRt {float:right;}
    /**after floats are no longer needed, clear them with this class**/
    .clearing {
    clear:both;
    display:block;
    visibility:hidden;
    /**TEXT STYLES**/
    h1 {font-size: 24px;color: #F00;}
    h2 {font-size:20px;}
    h3 {font-size:18px; margin-bottom:0}
    h4 {font-size: 12px;}
    p {font-size:14px; margin-top:0; line-height:1.5;}
    #footer h4 {
    margin-top:0;
    padding-top:12px;
    text-align:center;
    border-top: 1px solid #333;}
    #footer p {margin-bottom:0}
    </style>
    </head>
    <body>
    <div id="wrapper">
    <div id="header">#header</div>
    <div id="navigation_bar">
    <!-- AJXFILE:CSS/ajxmenu.css -->
    <div class="AJXMenuNQIdcZB">
    <div class="ajxmw1">
    <div class="ajxmw2">
    <ul>
    <li><a href="#" title="Home">HOME</a></li>
    <li><a href="#" title="Products">PRODUCTS</a></li>
    <li><a href="#" title="Request Quote">REQUEST QUOTE</a></li>
    <li><a href="#" title="Contact Us">CONTACT US</a></li>
    </ul>
    <!--end ajax1 --></div>
    <!--end ajax2 --></div>
    <!--end ajaxMenu --></div>
    <!--end navigation_bar --></div>
    <!--begin sidebar -->
    <div id="sidebar">
    <!-- begin AJXFILE:CSS/verticalmenu.css -->
    <div class="AJXMenuEHWBGHC">
    <ul>
    <li><h1>PROCESS EQUIPMENT</h1></li>
    <li><a class="ajxsub" href="#" title="Pumps">Pumps
    <!--[if gt IE 6]><![endif] --></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
    <ul>
    <li><a href="#" title="Air Diaphragm">Air Diaphragm</a></li>
    <li><a href="#" title="Centrifugal">Centrifugal</a></li>
    <li><a href="#" title="Drum">Drum</a></li>
    <li><a href="#" title="Gear">Gear</a></li>
    <li><a href="#" title="Hose">Hose</a></li>
    <li><a href="#" title="Magnetic Drive">Magnetic Drive</a></li>
    <li><a href="#" title="Metering">Metering</a></li>
    <li><a href="#" title="Peristaltic">Peristaltic</a></li>
    <li><a href="#" title="Piston">Piston</a></li>
    <li><a href="#" title="Vertical">Vertical</a></li>
    </ul>
    <!--[if lte IE 6]></td></tr></table></a><![endif]-->
    </li>
    <li><a class="ajxsub" href="#" title="Mixers">Mixers
    <!--[if gt IE 6]><![endif] --></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
    <ul>
    <li><a href="#" title="Direct Drive">Direct Drive</a></li>
    <li><a href="#" title="Gear Drive">Gear Drive</a></li>
    <li><a href="#" title="C-Clamp Mount">C-Clamp Mount</a></li>
    <li><a href="#" title="Drum Mount">Drum Mount</a></li>
    <li><a href="#" title="Fixed Top Mount">Fixed Top Mount</a></li>
    <li><a href="#" title="Side Mount">Side Mount</a></li>
    </ul>
    <!--[if lte IE 6]></td></tr></table></a><![endif]-->
    </li>
    <li><a class="ajxsub" href="#" title="Filters">Filters
    <!--[if gt IE 6]><![endif] --></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
    <ul>
    <li><a href="#" title="Bag">Bag</a></li>
    <li><a href="#" title="Cartridge">Cartridge</a></li>
    <li><a href="#" title="Centrifuge">Centrifuge</a></li>
    <li><a class="ajxsub" href="#" title="Indexing Media">Indexing Media
    <!--[if gt IE 6]><![endif] --></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
    <ul>
    <li><a href="#" title="Gravity FIlter">Gravity Filter</a></li>
    <li><a href="#" title="Vacuum FIlter">Vacuum FIlter</a></li>
    <li><a href="#" title="Sludge Filter">Sludge FIlter</a></li>
    <li><a href="#" title="Pressure Filter">Pressure Filter</a></li>
    <li><a href="#" title="Sludge Filter">Sludge Filter</a></li>
    </ul>
    <!--[if lte IE 6]></td></tr></table></a><![endif]-->
    </li>
    <li><a href="#" title="Oil Skimmers">Oil Skimmers</a></li>
    <li><a href="#" title="Oil-Water Separators">Oil-Water Separators</a></li>
    </ul>
    <!--[if lte IE 6]></td></tr></table></a><![endif]-->
    </li>
    <li><a class="ajxsub" href="#" title="Tanks">Tanks
    <!--[if gt IE 6]><![endif] --></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
    <ul>
    <li><a href="#" title="Carboys &amp; Totes">Carboys &amp; Totes</a></li>
    <li><a href="#" title="Rectangular">Rectangular </a></li>
    <li><a href="#" title="Cylindrical Cone Bottom">Cylindrical Cone Bottom</a></li>
    <li><a href="#" title="Cylindrical Flat Bottom">Cylindrical Flat Bottom</a></li>
    <li><a href="#" title="Vertical Bulk Storage">Vertical Bulk Storage</a></li>
    </ul>
    <!--[if lte IE 6]></td></tr></table></a><![endif]-->
    </li>
    <li><a class="ajxsub" href="#" title="Piping/Hose">Piping / Hose
    <!--[if gt IE 6]><![endif] --></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
    <ul>
    <li><a href="#" title="PVC Pipe &amp; Fittings">PVC Pipe &amp; Fittings</a></li>
    <li><a href="#" title="CPVC Pipe &amp; Fittings">CPVC Pipe &amp; Fittings</a></li>
    <li><a href="#" title="Polypro Pipe &amp; Fittings">Polypro Pipe &amp; Fittings</a></li>
    <li><a href="#" title="PE Pipe &amp; Fittings">PE Pipe &amp; Fittings</a></li>
    <li><a href="#" title="Kynar Pipe &amp; Fittings">Kynar Pipe &amp; Fittings</a></li>
    <li><a href="#" title="Sanitary Hose, Gaskets &amp; Fittings">Sanitary Hose, Gaskets &amp; Fittings</a></li>
    </ul>
    <!--[if lte IE 6]></td></tr></table></a><![endif]-->
    </li>
    <li><a class="ajxsub" href="#" title="Immersion Heaters">Immersion Heaters
    <!--[if gt IE 6]><![endif] --></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
    <ul>
    <li><a href="#" title="Electric Immersion">Electric Immersion</a></li>
    <li><a href="#" title="Steam Coil">Steam Coil</a></li>
    </ul>
    <!--[if lte IE 6]></td></tr></table></a><![endif]-->
    </li>
    <li><a class="ajxsub" href="#" title="Process Controls">Process Controls
    <!--[if gt IE 6]><![endif] --></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
    <ul>
    <li><a href="#" title="pH &amp; ORP Probes">pH &amp; ORP Probes</a></li>
    <li><a href="#" title="Conductivity Probes">Conductivity Probes</a></li>
    <li><a href="#" title="Flowmeters">Flowmeters</a></li>
    <li><a href="#" title="Level Sensors">Level Sensors</a></li>
    <li><a href="#" title="Pressure Transducers">Pressure Transducers</a></li>
    <li><a href="#" title="Process Controllers">Process Controllers</a></li>
    <li><a href="#" title="VFD's">VFD's</a></li>
    <li><a href="#" title="Power Monitors">Power Monitors</a></li>
    </ul>
    <!--[if lte IE 6]></td></tr></table></a><![endif]-->
    </li>
    <li><h1>ENGINEERED SYSTEMS</h1></li>
    <li><a href="#" title="Chemical Feed Skids">Chemical Feed Skids</a></li>
    <li><a class="ajxsub" href="#" title="Evaporators">Evaporators
    <!--[if gt IE 6]><![endif] --></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
    <ul>
    <li><a href="#" title="Burt Process Equipment">Burt Process Equipment</a></li>
    <li><a href="#" title="Filtertech">Filtertech</a></li>
    </ul>
    <!--[if lte IE 6]></td></tr></table></a><![endif]-->
    </li>
    <li><a href="#" title="Filtration Systems">Filtration Systems</a></li>
    <li><a href="#" title="Fume Scrubbers">Fume Scrubbers</a></li>
    <li><a href="#" title="pH Neutralization">pH Neutralization</a></li>
    <li><a href="#" title="RODI Water Systems">RODI Water Systerms</a></li>
    <li><a href="#" title="Transfer Sumps">Transfer Sumps</a></li>
    <li><a href="#" title="UL Control Panels">UL Control Panels</a></li>
    <li><a href="#" title="Vacuum Distillation">Vacuum Distillation</a></li>
    <li><a class="ajxsub" href="#" title="Wastewater Treatment">Wastewater Treatment
    <!--[if gt IE 6]><![endif] --></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
    <ul>
    <li><a href="#" title="Burt Process Equipment">Burt Process Equipment</a></li>
    <li><a href="#" title="Filtertech">Filtertech</a></li>
    </ul>
    <!--[if lte IE 6]></td></tr></table></a><![endif]-->
    </li>
    <li><a href="#" title="Water Reclaim (LEEDS)">Water Reclaim (LEEDS)</a></li>
    </ul>
    <!--end ajaxmenu --></div>
    <!--end sidebar--></div>
    <!--begin #content-->
    <div id="content">
    <!--floated elements come first in markup, this image is floated right-->
    <img style="float:right" src="Images/aro-pump-ad.jpg" alt="aro pump ad" width="200" height="200"/>
    <h1>Engineered Solutions to your fluid handing requirements</h1>
    <p>Chemtech Process Equipment (CPE) provides fluid handling equipment to a wide range of industries which include pharmaceutical, biotechnology, microelectronics, metal finishing,  chemical   processing and general manufacturing.</p>
    <p>CPE offers turnkey engineered products such as transfer sumps, wastewater treatment, coolant filration, oil-water separation, water reclamation (LEEDS), pH neutralization, deionized water (RODI), and custom fabricated tanks and vessels.</p>
    <p>CPE’s product line includes pumps, tanks, mixers, filters, evaporators, magnetic separators, centrifuges, oil skimmers, flowmeters, level, pH, ORP, and conductivity measurement, heaters, plastic pipe, valves and fittings, sanitary hose, and gaskets to name a few. Feel free to review our product line and contact us if you have any questions or applications to discuss.</p>
    <!--clear float with a p, br, or hr tag and clearing class-->
    <hr class="clearing" />
    <!--begin floated boxes -->
    <div class="floatLt">
    .floatLt
    <ul>
    <li>list item</li>
    <li>list item</li>
    <li>list item</li>
    </ul>
    </div>
    <div class="floatLt">
    .floatLt
    <ul>
    <li>list item</li>
    <li>list item</li>
    <li>list item</li>
    </ul>
    </div>
    <div class="floatLt">
    .floatLt
    <ul>
    <li>list item</li>
    <li>list item</li>
    <li>list item</li>
    </ul>
    </div>
    <div class="floatLt">
    .floatLt
    <ul>
    <li>list item</li>
    <li>list item</li>
    <li>list item</li>
    </ul>
    </div>
    <div class="floatRt">
    .floatRt
    <ul>
    <li>list item</li>
    <li>list item</li>
    <li>list item</li>
    </ul>
    </div>
    <!--end floats with a clearing class-->
    <hr class="clearing" />
    <h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean tellus est, pulvinar vitae cursus id, porttitor ac arcu. Nulla non lorem neque. Phasellus semper tincidunt orci, consectetur porta justo egestas eget. Vestibulum venenatis, lorem eu egestas sagittis, lacus lectus accumsan risus, quis tempor ligula nulla in elit. Nulla facilisi. Sed ac massa sit amet erat facilisis dignissim ut in nisi. Aliquam non sodales quam. Ut faucibus molestie orci, nec cursus velit elementum ut. Suspendisse porttitor ultricies nisi, sit amet cursus tortor gravida non. Donec blandit libero sed lacus tristique vestibulum. Nunc laoreet placerat eros quis interdum. Praesent elit mauris, ultricies non faucibus ac, lobortis quis dui. Aliquam sed quam orci. Suspendisse lobortis, purus sed suscipit ornare, purus ligula molestie sem; id venenatis sapien eros ullamcorper enim.</p>
    <!--begin floated boxes -->
    <div class="floatLt">
    .floatLt
    <ul>
    <li>list item</li>
    <li>list item</li>
    <li>list item</li>
    </ul>
    </div>
    <div class="floatLt">
    .floatLt
    <ul>
    <li>list item</li>
    <li>list item</li>
    <li>list item</li>
    </ul>
    </div>
    <div class="floatLt">
    .floatLt
    <ul>
    <li>list item</li>
    <li>list item</li>
    <li>list item</li>
    </ul>
    </div>
    <div class="floatLt">
    .floatLt
    <ul>
    <li>list item</li>
    <li>list item</li>
    <li>list item</li>
    </ul>
    </div>
    <div class="floatRt">
    .floatRt
    <ul>
    <li>list item</li>
    <li>list item</li>
    <li>list item</li>
    </ul>
    </div>
    <!--end floats with a clearing class-->
    <hr class="clearing" />
    <h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean tellus est, pulvinar vitae cursus id, porttitor ac arcu. Nulla non lorem neque. Phasellus semper tincidunt orci, consectetur porta justo egestas eget. Vestibulum venenatis, lorem eu egestas sagittis, lacus lectus accumsan risus, quis tempor ligula nulla in elit. Nulla facilisi. Sed ac massa sit amet erat facilisis dignissim ut in nisi. Aliquam non sodales quam. Ut faucibus molestie orci, nec cursus velit elementum ut. Suspendisse porttitor ultricies nisi, sit amet cursus tortor gravida non. Donec blandit libero sed lacus tristique vestibulum. Nunc laoreet placerat eros quis interdum. Praesent elit mauris, ultricies non faucibus ac, lobortis quis dui. Aliquam sed quam orci. Suspendisse lobortis, purus sed suscipit ornare, purus ligula molestie sem; id venenatis sapien eros ullamcorper enim.</p>
    <!--end #content --></div>
    <!--begin #footer -->
    <div id="footer">
    <p>HOME | PRODUCTS | REQUEST QUOTE | CONTACT US</p>
    <h4>© 2012 Chemtech Process Equipment, All Rights Reserved, Designed and Developed By Graphics Advantage. <img src="Images/GA-logo.jpg" alt="#" width="46" height="40" /></h4>
    <!--end #footer --></div>
    <!--end #wrapper --></div>
    </body>
    </html>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • How to place standard text at the bottom of the last page

    Hi Gurus,
               I have a requirement to place a standard text at the bottom of the last page.Right now i am having 2 sub forms
              in a  body  page  in that one(header details) will not get overflow and only visible in the first page and the second
             body page( Item  details)   will get overflowed, till here it is working fine. Now i need to include terms and
             conditions details at the bottom of   the   last  page but i included the standard text in the context area
             and i don't know where to place that text in the layout . I tried with including
             a sub form in the master page and placed the text    in   the  bottom of that sub form but it gets repeated
              in bottom of each and every page and i tried by placing one more sub form   in the body page
               but the text is coming immediately after the item detail gets ended.I need only at the bottom of the
              page where the item details ends. Please make me to solve this problem.

    Hi,
       I gone through the link in that they set the footer part of the purchase order immediately next
      behind the body(Table) so after the table growth gets completed the footer gets displayed
      but in my case after the table growth ends it should display at the bottom of that page.For
      example if the table ends at the top of the second page ultimately the footer should be at the
      bottom of second page.If the table ends at the bottom of the first page and if the footer can't
      display the whole content in the bottom of the first page then the footer should move to the
      bottom of the second page.

  • I have bought a Macbook Pro Retina, and the iPhoto which comes with it, has a different iPhoto Book menu.  I cannot see how to put text at the bottom of the pages of photographs, instead of the default place in the middle.  Is there a way to do this?

    I have bought a Macbook Pro Retina, and the iPhoto which comes with it, has a different iPhoto Book menu.  I cannot see how to put text at the bottom of the pages of photographs, instead of the default place in the middle.  Is there a way to do this?

    There are different templates for iPhoto books and they differ from version of iPhoto to iPhoto, so explore the other options.

  • Weird White text at the bottom and in the search bar of iTunes

    So my iTunes (ver.10) somehow has a weird white colored text at the bottom where it tells you what your song count, days, and gigabytes in your library are? And the text is a super light gray in the search box in the upper right hand corner...what the heck? Does anyone know how to change this?
    /Pictures: http://goo.gl/Bs26I
    Thanks so much!

    Either the iPhone has crashed in some way to cause it to corrupt badly enough to need restoring to work (either hardware issue or software corruption) or it has been connected while holding down the Home button.
    Try resetting the handset (Hold Home & Power together for 15secs until Apple appears) and if it still goes back to recovery mode it means there's a major software issue or a hardware fault

  • How to add the line item text in the Ledger line item report

    Hi SAP Gurus,
    I having one requirement from the user. He wants the line item text which we will enter in FB60/FB70/FB50 has to be shown in the Ledger line item report. Right now this field is not available. Is there any possible we can make this line item text in the ledger line item report i.e. FBL1N/FBL3N/FBL5N?
    advance thanks for the help.
    Regards,
    Deva.

    Hi,
    You can do the below to get this. (You can change the names of the function modules as per your wish/ organization naming convention):-
    Step 1:-
    Create function module Z_GET_SGTXT as below:-
    Import:-
    BELNR LIKE BKPF-BELNR
    BUKRS LIKE BKPF-BUKRS
    BUZEI LIKE BSEG-BUZEI
    GJAHR LIKE BKPF-GJAHR
    Export:-
    PRCTR LIKE BSEG-SGTXT
    FUNCTION Z_GET_SGTXT.
    ""Local Interface:
    *" IMPORTING
    *" VALUE(BELNR) LIKE BKPF-BELNR
    *" VALUE(BUKRS) LIKE BKPF-BUKRS
    *" VALUE(BUZEI) LIKE BSEG-BUZEI
    *" VALUE(GJAHR) LIKE BKPF-GJAHR
    *" EXPORTING
    *" VALUE(SGTXT) LIKE BSEG-SGTXT
    SELECT SINGLE SGTXT FROM BSEG INTO SGTXT WHERE GJAHR = GJAHR
    AND BELNR = BELNR
    AND BUKRS = BUKRS
    AND BUZEI = BUZEI.
    ENDFUNCTION.
    Step 2:-
    Then create the Function Modules as below:-
    Z_LINE_ITEMS_GET_SGTXT (Copy of SAMPLE_INTERFACE_00001650)
    FUNCTION Module Z_LINE_ITEMS_GET_SGTXT.
    ""Local Interface:
    *" IMPORTING
    *" VALUE(I_POSTAB) LIKE RFPOS STRUCTURE RFPOS
    *" EXPORTING
    *" VALUE(E_POSTAB) LIKE RFPOS STRUCTURE RFPOS
    Initialize Output by using the following line
    E_POSTAB = I_POSTAB.
    E_POSTAB = I_POSTAB. "<-- important
    CALL FUNCTION 'Z_GET_SGTXT'
    EXPORTING
    BELNR = I_POSTAB-BELNR
    BUKRS = I_POSTAB-BUKRS
    BUZEI = I_POSTAB-BUZEI
    GJAHR = I_POSTAB-GJAHR
    IMPORTING
    SGTXT = E_POSTAB-SGTXT
    EXCEPTIONS
    OTHERS = 1.
    ENDFUNCTION.
    Step3:-
    Transaction FIBF:-
    Settings -> Products -> of a Customer
    SGTXT Text in Line Item Display Active
    Settings -> P/S Module -> of a Customer
    00001650 SGTXT Z_LINE_ITEMS_GET_SGTXT
    Step 4:-
    Create the layout for FBL*N with display of the TEXT.
    Regards,
    Gaurav

Maybe you are looking for

  • After replacement of my hard drive iPhoto is no longer compatible with my lion software - why ?

    after replacement of my hard drive iPhoto is no longer compatible with my lion software - why ? any suggestions on how to fix this ?

  • Implementing Outer join Views in creating Generic datasource

    Guys, Iam bringing the Purchase document level data from R/3  into BW.I have couple of other Ztables also from which i need to collect the information.So iam going to create a generic datasource based on the view. In case of Database view it is takin

  • A question for my jar file

    When using the jar command, do I have to specify any imported classes that I have downloaded from the net to use in my main class?

  • Multiple input currencies for a single entity

    My client must support multiple currencies for any given Entity.  For instance, Spanish Company #1 must be able to record transactions (sales and purchases/costs) in both Euros and in British Pounds, since both currencies are used by this entity.  Si

  • Mac or PC as monitor

    Ok for the tons of you that have been asking if it is possible to use your mac or pc as a second monitor, here is a link to an article for a new program that might do what you want: http://www.macnn.com/articles/07/05/28/screenrecycler.10/ Glor