Place in the center the column texts

Hi BW knowledge broadcasters,
I am looking for the method to place in the center the column texts. It seems it could be in the css implemented in the WAD web template. But I don't know neither for the queries built directly with the Query Designer.
Thanks in advance.
Geo

One problem you will encounter is that the column headers and the rows have the same class associated to them and if you set this to center, your rows will also be centered.  You will need to either use the Table API to change the class of just the column headers or possibly with javascript.  To find the class, run the query in the web, right-click and select view source, search for the text in the columns and find the associated class referenced in the HTML. 
Here is a link to all of the styles in the standard BWReports.css:
<a href="http://help.sap.com/saphelp_bw33/helpdata/en/3f/ca453afbf37b54e10000000a11402f/content.htm">http://help.sap.com/saphelp_bw33/helpdata/en/3f/ca453afbf37b54e10000000a11402f/content.htm</a>
This is specific to BW 3.x.  In 2004s, the styles are now driven from the Portal theme. 
Thanks,
Jeff

Similar Messages

  • How to change the column text of an ALV in WD?

    Hiya,
    I have an ALV and it displays this in the column headings:
    I'd like to change 'Name 1' to 'Name' and 'Boolean' to 'Selection', but I can't seem to figure out how to do this in the maze of all the classes and methods...
    Could someone give me a few pointers please.
    Thanks in advance!

    Hi ,
    We can change the column heading through if_salv_wd_column_settings interface. Please check the following code for changing the same.
    data: l_ref_cmp_usage type ref to if_wd_component_usage.
      l_ref_cmp_usage =   wd_this->wd_cpuse_alv( ).
      if l_ref_cmp_usage->has_active_component( ) is initial.
        l_ref_cmp_usage->create_component( ).
      endif.
      data l_salv_wd_table type ref to iwci_salv_wd_table.
      l_salv_wd_table = wd_this->wd_cpifc_alv( ).
      data l_table type ref to cl_salv_wd_config_table.
      l_table = l_salv_wd_table->get_model( ).
      data l_column type ref to cl_salv_wd_column.
      l_column = l_table->if_salv_wd_column_settings~get_column( 'Name_1' ).
      data l_header type ref to cl_salv_wd_column_header.
      l_header = l_column->get_header( ).
      l_header->set_prop_ddic_binding_field(
        property =  if_salv_wd_c_ddic_binding=>bind_prop_text
        value = if_salv_wd_c_ddic_binding=>ddic_bind_none ).
      l_header->set_text( `Name` ).
      l_column = l_table->if_salv_wd_column_settings~get_column( 'Boolean' ).
      data l_header type ref to cl_salv_wd_column_header.
      l_header = l_column->get_header( ).
      l_header->set_prop_ddic_binding_field(
        property =  if_salv_wd_c_ddic_binding=>bind_prop_text
        value = if_salv_wd_c_ddic_binding=>ddic_bind_none ).
      l_header->set_text( `Selection` ).
    Regards,
    Harsha

  • The column names is not being displayed in maintenance view...

    Hello experts,
    I created a maintenance view for my custom table and I am wondering on why does the columns
    have no names? It is just displayed with a '+'. Help would be appreciated. Thanks a lot
    guys and take care!

    Hi,
      Check whether is any description for the corresponding data element...
      Otherwise you can go to SE51 to change the column text..
      If you are adding text to the data element generate the screens again..
    Thanks,
    Naren

  • How to Change Column text of Iview HCM Process Overview

    ECC Ehp4 sps7
    Portal 7.01 sps7
    Please Help,
    I am trying to globally personalize the Copy of the Iview HCM Process Overview . The column texts have titles such as Object Type and Object Key. I want to rename them Person ID etc.
    I was able to "Hide" some columns in the Iview but when I change the text in the "Settings for Current Configuration" it does not Appy or change the Display.
    I am in the Portal Content Administrator, with Admin priveledges. I am opening the Iview objecyt then using Preview.
    I then Right cntl click to bring up the Settings for Current Configuration. I am looking at the View UI Element Tree and opening the Grouping of UI Elements. I see the text for the column "Object  Key" I change the text but when I save it does not change the Iview text. When I open the "Settings for Current Configuration again the changed text is still there but the Iview has not changed
    Any help on this matter would be appreciated.
    thank you,
    Sarah

    Yes,
    I have opened the Role object, edited the Work Overview Page inside the role, selected / clicked on the Iview HCM Process Overview, opened the IView  HCM Process Overview, previewed it, cntl right click for Settings for current configuration,
    Selected the UI Element "Object Type" TEXT and made my changes
    Sarah

  • Column Text in Tree

    How to change the column text in a tree? when the column length is very small, it should show the Heading from the Data Element.As the column length increases, column header should be Short Label,Medium Label,and long field label??

    Hi Nikhil,
       Which class are you using to create the tree?
    what i feel is when you change the column length at the same time you can update the internal table which you are passing for tree display with the field labels.
    and then call the refresh tree method.
    i dont think there is a direct method of doing the same where in the text gets auto updated, this happens only in case of screen elements.
    Hope this helps.
    regards,
    kinshuk

  • How can I create a document with two columns in which the text in the left hand column flows to the left column on page 2,3 etc, and doesn't interfere with the text I want to place in the right? Pages 5.

    I'm using pages 5 and want to comment in a right hand column, on a (latin) text which I wish to place in a left hand column.
    Ideally I'd like to be able to copy and paste the latin text and see it flow over into the left hand column on multiple pages.
    At the moment it is impossible for me to keep the text only in the left hand column Any help!?
    B

    Columns do what columns do, flow from the bottom of the left hand column to the top of the right hand next column. So won't do what you want.
    Your tag says you are using OS X 10.5.8 but you say you are using Pages 5 so one or the other is not correct.
    If you migrated up to Pages 5 what did you do with your previous Pages '08 or '09?
    Because Pages 5 is missing over 100 features, one of which is Textbox linking, that would allow to flow down through a series of Textboxes set up like columns.
    What you can do is run the Latin text down a narrow document to the left and add individual Textboxes to the right and put your English translations in those. The Latin will flow but the English will not.
    Peter

  • How to align text {center/left/right} in  the column of ALV grid

    Hai all,
    I am displaying one check box in the ALV grid, but default it is coming left align in the column,
    how can i assign it to the center of the column.
    Thanks,
    SREEVATHSAVA.G
    Edited by: SREE on Aug 14, 2009 7:53 AM

    Hi,
    DATA:
      lr_model type ref to cl_salv_wd_config_table,
      lr_col type ref to cl_salv_wd_column.
    lr_col = lr_model->if_salv_wd_column_settings->get_column( 'EMPID' ).
    lr_col->SET_H_ALIGN(value = CL_WD_TABLE_COLUMN=>E_H_ALIGN- CENTER).
          AUTO TYPE WDY_UIE_LIBRARY_ENUM_TYPE VALUE '00', " TableColumnHAlign.auto
          CENTER TYPE WDY_UIE_LIBRARY_ENUM_TYPE VALUE '01', " TableColumnHAlign.center
          FORCED_LEFT TYPE WDY_UIE_LIBRARY_ENUM_TYPE VALUE '04', " TableColumnHAlign.forcedLeft
          END_OF_LINE TYPE WDY_UIE_LIBRARY_ENUM_TYPE VALUE '05', " TableColumnHAlign.endOfLine
          FORCED_RIGHT TYPE WDY_UIE_LIBRARY_ENUM_TYPE VALUE '06', " TableColumnHAlign.forcedRight
          BEGIN_OF_LINE TYPE WDY_UIE_LIBRARY_ENUM_TYPE VALUE '07', " TableColumnHAlign.beginOfLine
    Regards,
    Lekha.

  • 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

  • In Pages, the column in the table won't flow onto the second page. The text is hidden. Please help!

    In Pages, the column in the table won't flow onto the second page. The text is hidden. Please help!

    Thank you for your reply,
    When I click 'view' , I can "show inspector". From the table tab, I can pull up the "Format". [See below]. I don't see the "Arrange" or "Object Placement Move with Text"
    Right now I have the Wrap Text On. When I take it off, It messes up my rows [see second image].
    All I want is for my column to flow onto the second page.
    Your assistance is genuinely appreciated.
    Thank you again.

  • Can the Finder "Kind" column text be configured?

    When a Finder folder window is in List-View, a description of each file item is given in the column labeled "Kind."  Is this text description configurable someplace, or is this text somehow hard-coded into the Finder?  If it is configurable somehow (and I realize that it would not be a normal user requirement to do this, at least for most users), how would these descriptions be changed or configured?
    Thanks for any information on this.

    > You never answered the question, what are you trying to accomplish by
    > changing what is shown in the kind field?  For example if a file is a JPG
    > image what would you have the finder display as the kind?
    What would I want the Finder to display as the "kind"?
    The short answer is: anything that I want!
    For example, for the file extensions (these are just examples):
    file-extrension          Finder-kind-description
    JPG                        "Mickey Mouse"
    TXT                         "Donald Duck"
    PNG                         "Superman"
    I think that should clear up what I would like to do?
    My original question again is: Can the Finder be configured somehow to put in arbitrary text descriptions for the kind of file it is listing?
    A derivative question might he: can new Finder descriptions for new file types be added somehow?
    This would be somewhat akin to providing customized descriptions in UNIX for the "file" (and related) commands by
    supplying customized "magic" files (located in certain places depending on the utility or middleware facility being used).
    The answer so far is that these "kind" descriptions are basically hardcoded into the Finder someplace
    deeply within the compiled code, and cannot be changed by just changing some file or database someplace.
    Is there a better answer than this?  I would have originally assumed so; that it could be customized with some sort of database (file or otherwise) change, but who knows, maybe Apple did hard-code these descriptions into the Finder program after all.

  • How can i get the correct text from a string like it show in the original source with the quotation marks in the right place ?

    The text is in hebrew so the problem is that sometimes the quotation marks not in the right place.
    For example i have this text: תווית
    על בגד: ''תן לאישה לכבס. זה תפקידה''
    This is the source original text you can see the quotations marks and they are not in the right place and all i did is copy paste.
    And this is a screenshot of how this text looks like in the website in the original:
    You can see now where the quotations marks should be.
    Now this is how i'm using the text in my program:
    First of all i'm using a webclient to download the page from the website and i'm also encoding it to windows-1255 since it's in hebrew.
    using (var webClient = new WebClient())
    webClient.Headers.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)");
    byte[] myDataBuffer = webClient.DownloadData("http://rotter.net/scoopscache.html");
    page = Encoding.GetEncoding("windows-1255").GetString(myDataBuffer);
    Then i'm extracting the places i need by reading the html file lines and parsing the right text and it's link.
    string loc;
    List<string> metas = new List<string>();
    List<string> metas1 = new List<string>();
    List<string> lockedLinks1 = new List<string>();
    string text = "";
    string mys = "";
    public List<string> LockedThreads(string filename)
    lockedThreads = new List<string>();
    lockedLinks = new List<string>();
    Regex textRegex = new Regex("ToolTip.*?(?=','<)");
    string[] fall = File.ReadAllLines(filename);
    for (int i = 0; i < fall.Length; i++)
    if (fall[i].Contains("http://rotter.net") && fall[i].Contains("locked")||
    fall[i].Contains("locked_icon_general") ||
    fall[i].Contains("locked_icon_anchor") ||
    fall[i].Contains("icon_anchor") ||
    fall[i].Contains("locked_icon_fire") ||
    fall[i].Contains("locked_icon_sport") ||
    fall[i].Contains("locked_icon_camera") ||
    fall[i].Contains("locked_icon_movie"))
    Regex linkParser = new Regex(@"\b(?:https?://|www\.)\S+\b", RegexOptions.Compiled | RegexOptions.IgnoreCase);
    foreach (Match m in linkParser.Matches(fall[i + 2]))
    if (m.Value.Contains("><b"))
    loc = m.Value.Replace("\"><b", string.Empty);
    lockedLinks.Add(loc);
    string txt = fall[i - 1];
    string text = textRegex.Match(txt).Value.Replace("ToolTip','", String.Empty);
    if (text.Contains("&rsquo;"))
    text = text.Replace("&rsquo;", string.Empty);
    lockedThreads.Add(text);
    Already here on the List lockedThreads you can see the quotation marks not in the right place as in the original:
    After i'm parsing the text and links and adding them to the Lists in another class i'm doing a comparison using this Lists:
    foreach (List<string> l_branch in ListsExtractions.responsers)
    TreeNode l_node = treeView1.Nodes.Add(l_branch[l_branch.Count - 1]);
    if (ListsExtractions.lockedThreads.Contains(l_node.Text))
    l_node.ImageIndex = 0;
    l_node.SelectedImageIndex = 0;
    for (int l_count = 0; l_count < l_branch.Count - 1; l_count++)
    TreeNode l_subnode = l_node.Nodes.Add(l_branch[l_count]);
    if (ListsExtractions.lockedThreads.Contains(l_subnode.Text))
    l_subnode.ImageIndex = 0;
    l_subnode.SelectedImageIndex = 0;
    The problem is in the line:
    if (ListsExtractions.lockedThreads.Contains(l_node.Text))
    When it's getting to the line with the quotation marks it's never equal.
    Now there are more quotation marks.
    In general the problem when comparing both text if it's having quotation marks it's not the same.
    So i have two options:
    1. To fix it somehow so the quotation marks will be the same in both variables when comparing and also the same like in the original as they show in the html page.
    2. To remove the quotation marks from both variables.
    What should i do ? And how ? I was prefer to use the original quotation marks like in the original since they have a meaning in the place they should be. The question is how can i do it ?
    This is example of the block from the html file where the text with the quotation marks is:
    <TD ALIGN="RIGHT" VALIGN="TOP">&nbsp;<font size=-1 color=#ff9933><b>9418</b></font>&nbsp;</TD></TR><TR BGCOLOR="#eeeeee">
    <TD ALIGN="RIGHT" VALIGN="TOP">
    <body onmousemove="overhere()">
    <a onmouseover="EnterContent('ToolTip','תווית על בגד: &rsquo;&rsquo;תן לאישה לכבס. זה תפקידה&rsquo;&rsquo;','<u><span style=color:#000099;>כתב: Spook בתאריך: 08.03.15 שעה: 22:11</span></u><br>מחאת טוויטר קמה בעקבות תוויות שוביניסטיות שהדפיסה חברת אופנה באינדונזיה לפיהן תפקיד הכביסה מוטל על האישה. החברה התנצלה אך כנראה רק עשתה רק יותר נזק לע...'); Activate();" onmouseout="deActivate()" href="javascript:void(0)">
    <img src="http://rotter.net/forum/Images/new_locked_icon_general.gif" border="0"></a></TD><TD ALIGN="right" VALIGN="TOP" WIDTH="55%">
    <FONT CLASS='text15bn'><FONT FACE="Arial">
    <a href="http://rotter.net/cgi-bin/forum/dcboard.cgi?az=read_count&om=189696&forum=scoops1"><b>
    <font color="898A8E">תווית על בגד: ''תן לאישה לכבס. זה תפקידה''</b>
    </a></font></TD>

    Ok, it is unclear on what is happening here.
    Are you saying that when the webclient gets the data that it is not honoring the quote characters? Or the processing of the data buffer is causing issues?
    This is what I see the of your example text which is trying to be parse out:
    <a onmouseover="EnterContent('ToolTip','תווית על בגד: &rsquo;&rsquo;תן לאישה לכבס. זה תפקידה&rsquo;&rsquo;','<u><span style=color:#000099;>כתב: Spook בתאריך: 08.03.15 שעה: 22:11</span></u><br>מחאת טוויטר קמה בעקבות תוויות שוביניסטיות שהדפיסה חברת אופנה באינדונזיה לפיהן תפקיד הכביסה מוטל על האישה. החברה התנצלה אך כנראה רק עשתה רק יותר נזק לע...'); Activate();">";
    It appears to me that the  escapes `&rsquo;` does not have matching `&ldquo;` anywhere within the tooltip. So it appears that the page properly places left quotes in when processing the page, but the raw html has broken text.
    Hence a garbage in, garbage out situation.
    William Wegerson (www.OmegaCoder.Com)

  • ID CS3 - text wrap doesn't work at the end of a long multi-columned text frame

    Did a search - don't think this specific issue has been addressed:
    We design large graphics often used on walls. When working with a text frame that that was 11 feet long and had 8 columns, text wrap would not work on an image placed in the last column. The same image with the same text wrap applied will work fine anywhere else in the text frame. I found that if I shortened the width of the text frame a little bit at a time eventually it would work, but there doesn't seem to be a specific cut-off width - sometimes the last column won't text wrap when the frame is 115 inches wide and sometimes it doesn't work when the frame is only 80 inches wide. Again, all of the other columns work fine. I have tried all of the obvious stuff, the only variable between the columns that wrap and the one that doesn't is it's position at the end of the text frame.
    We have gotten around this issue by using multiple threaded frames instead of one long frame with multiple columns, but I am curious if anyone else has run into this or might know what the issue is.
    thanks

    Did a search - don't think this specific issue has been addressed:
    We design large graphics often used on walls. When working with a text frame that that was 11 feet long and had 8 columns, text wrap would not work on an image placed in the last column. The same image with the same text wrap applied will work fine anywhere else in the text frame. I found that if I shortened the width of the text frame a little bit at a time eventually it would work, but there doesn't seem to be a specific cut-off width - sometimes the last column won't text wrap when the frame is 115 inches wide and sometimes it doesn't work when the frame is only 80 inches wide. Again, all of the other columns work fine. I have tried all of the obvious stuff, the only variable between the columns that wrap and the one that doesn't is it's position at the end of the text frame.
    We have gotten around this issue by using multiple threaded frames instead of one long frame with multiple columns, but I am curious if anyone else has run into this or might know what the issue is.
    thanks

  • How to find the ID of the text item of the column in an tabular form

    Hello,
    I have created a tabular form report on emp table and made ONE OF THE COLUMN department_id as an text item using APEX_ITEM.TEXT APIs.
    My select query is
    select
    "EMPLOYEE_ID",
    "EMPLOYEE_ID" EMPLOYEE_ID_DISPLAY,
    "FIRST_NAME",
    "LAST_NAME",
    "HIRE_DATE",
    "JOB_ID",
    "SALARY",
    "MANAGER_ID",
    APEX_ITEM.TEXT(3,department_id,20,50,'readonly=true') department_id
    from "#OWNER#"."OEHR_EMPLOYEES"
    now how can i find the item ID?
    one more thing is that how would i reference this item in an javascript function.
    anyone plz help me out with this.
    thanks.

    Hi,
    Firstly, your link must include "this" to ensure that any javascript knows which link has been clicked. So, change:
    onclick="javascript:report();"to
    onclick="javascript:report(this);"Next, your javascript code must take this value and find the related DEPTNO item on the same row. The URL must pass to the popup page the name of the ID that needs to be updated - this is held in the f10 variable in the following script. This means that you popup page must be able to receive this value so that it can use it to update the DEPTNO item when a value is selected. Your popup page seems to be page number 4, so I will assume that you have a P4_ITEM_ID hidden item on that page for this purpose. So, the javascript on the main page would be something like:
    function report(x)
    var f10;
    var p = x.parentNode;
    while (p.tagName != "TR")
      p = p.parentNode;
    var inputs = p.getElementsByTagName("INPUT");
    var zz;
    for (zz = 0; zz < inputs.length; zz++)
      if (inputs[zz].name = 'f10')
       f01 = inputs[zz].id;
    var url;
    url = 'f?p=&APP_ID.:4:&APP_SESSION.::::P4_ITEM_ID:' + f10;
    var w = open(url,"winLov","Scrollbars=1,resizable=1,width=450,height=600");
    if (w.opener == null)
       w.opener = self;
    w.focus();
    }So, when the user clicks a link, the report() function is called and the object clicked is passed as a parameter. The script then starts from this object and goes up to the TR tag that the link is on. From here, it finds all INPUT items and then looks at those to find one that has a name attribute of "f10". When it finds it, it stores the ID of that in the "f10" variable. It then constructs a URL using this variable which is set into the P4_ITEM_ID hidden item on the popup page.
    I don't know what your javascript is on the popup, but it would need to get the value out of P4_ITEM_ID to see which main page item needs updating. This could be something like:
    function passBack(val)
      var id = $v('P4_ITEM_ID');
      opener.document.getElementById(id).value = val;
      window.close();
    }This script looks in the P4_ITEM_ID hidden item and gets its value - this will be the ID of the item to update on the main page. It then does the update and closes the popup.
    Andy

  • How can i  change the column label text in a alv table display

    how can i change the column label text in a alv table display??
    A similar kinda of question was posted previuosly where the requirement was the label text was needed and following below code was given as solution :
    <i>*  declare column, settings, header object
    DATA: lr_column TYPE REF TO cl_salv_wd_column.
    DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings.
    DATA: lr_column_header type ref to CL_SALV_WD_COLUMN_HEADER.
    get column by specifying column name.
    lr_column = lr_column_settings->get_column( 'COLUMN_NAME1' ).
    set Header Text as null
    lr_column_header = lr_column->get_header( ).
    lr_column_header->set_text( ' ' ).</i>
    My specific requirement is i have an input field on the screen and i want reflect that value as the column label for one of the column in the alv table. I have used he above code with slight modification in the MODIFYVIEW method of the view since it is a process after input. The component gets activated without any errors but while run time i get an error stating
    <i>"The following error text was processed in the system CDV : Access via 'NULL' object reference not possible."</i>
    i have checked in debugging and the error occured at the statement :
    <i>lr_column = lr_column_settings->get_column( 'CURRENT_YEAR' ).</i>Please can you provide me an alternative for my requirement or correct me if i have done it wrong.
    Thanks,
    Suri

    I found it myself how to do it. The error says that it is not able to find the reference object i.e  it is asking us to refer to the table. The following piece of code will solve this problem. Have to implement this in WDDOMODIFYVIEW method of the view. This thing works comrades enjoy...
      DATA : lr_cmp_usage TYPE REF TO if_wd_component_usage,
             lr_if_controller  TYPE REF TO iwci_salv_wd_table,
             lr_cmdl   TYPE REF TO cl_salv_wd_config_table,
             lr_col    TYPE REF TO cl_salv_wd_column.
      DATA : node_year  TYPE REF TO if_wd_context_node,
             elem_year  TYPE REF TO if_wd_context_element,
             stru_year  TYPE if_alv_layout=>element_importing,
             item_year  LIKE stru_year-i_current_year,
             lf_string    TYPE char(x),
      DATA: lr_column TYPE REF TO cl_salv_wd_column.
      DATA: lr_column_header TYPE REF TO cl_salv_wd_column_header.
      DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings.
    Get the entered value from the input field of the screen
    node_year  = wd_context->get_child_node( name = 'IMPORTING_NODE' ).
    elem_year  = node_year->get_element( ).
      elem_year->get_attribute(
       EXPORTING
        name = 'IMPORT_NODE-PARAMETER'
       IMPORTING
        value = L_IMPORT_PARAM ).
      WRITE L_IMPORT_PARAM TO lf_string.
    Get the reference of the table
      lr_cmp_usage  =  wd_this->wd_cpuse_alv( ).
      IF lr_cmp_usage->has_active_component( ) IS INITIAL.
        lr_cmp_usage->create_component( ).
      ENDIF.
      lr_if_controller  = wd_this->wd_cpifc_alv( ).
      lr_column_settings = lr_if_controller->get_model( ).
    get column by specifying column name.
      IF lr_column_settings IS BOUND.
        lr_column = lr_column_settings->get_column( 'COLUMN_NAME').
    set Header Text as null
        lr_column_header = lr_column->get_header( ).
        lr_column_header->set_text( lf_string ).
    endif.

  • Column text cuts in the printable view

    I have a af:table inside a af:panelCollection. Some columns in the table contains clickable links. Since it should also support printable behavior I have defined table like this.
    <af:table value="#{someBean.data}"
    var="row" rowBandingInterval="0" id="t1"
    summary="Table"
    columnStretching="column:c1"
    styleClass="AFStretchWidth"
    rowSelection="multiple"
    binding="#{someBean.tablel}"
    selectionListener="#{someBean.onSelectionChange}"
    contentDelivery="lazy"
    inlineStyle="#{adfFacesContext.outputMode eq 'printable' ? 'width:auto;height:auto;' : ''}">
    <af:column headerText="Name"
    id="c1"
    rowHeader="#{adfFacesContext.outputMode eq 'printable' ? '' : 'unstyled'}">
    <af:commandLink text="#{row.someName}"
    shortDesc="#{row.someName}"
    partialSubmit="true" id="ot4"
    rendered="#{adfFacesContext.outputMode ne 'printable'}"/>
    <af:outputText value="#{row.someName}"
    shortDesc="#{row.someName}" id="ot1"
    rendered="#{adfFacesContext.outputMode eq 'printable'}" noWrap="false"/>
    </af:column>
    </af:table>
    1) I see the column ("Name") being truncated in the printable mode. I have set the noWrap= false. But that doesnt seem to work.
    2) How can I set the width and height in printable mode so that table takes the entire browser window to stretch.
    Edited by: user10136456 on Feb 8, 2012 1:20 AM

    Hi,
    try something similar to
    #{adfFacesContext.outputMode == 'printable'? 'width:200px' : ''}
    to set the inline style property or width of the column
    Frank

Maybe you are looking for

  • Is it better to make multiple arrays of data or one big array and access it many times?.

    I am going to acquire up to 5 samples per second of 50 channels over 30 minutes then average ten of the channels and generate a report.  There are other bits of information needed to complete my task and graphs.  Would it be "faster" for the PC to ha

  • Materail Document not seen in the MSEG table

    Hi ALL, Can anyone help in finding a solution for the following problem. PO has PO history tab view where we can see the GR, IR details. But when we try to open the material document the error message is "Document - does not exist in calendar year 20

  • Sort file by date

    hi guys, i have a problem with sorting my files here. this is what my code look like. but i could sort it if any one knows please help me           for ( count = 0; count < dirList.length; count++ )           //return the character after the ('.')   

  • How to get a list of deleted VMs

    Hi Everyone, I am trying to generate a list of all VMs that have been deleted/removed in a particular SCVMM Cloud within a specific period of time (i.e. YTD).  For example, I use a PowerShell Script to generate a list of all VMs that have been provis

  • Help needed from abapers working on fi module reports(urgent)

    hi all, i am developing a report for Asset Retirement. in that i am not getting that where is the 1.Ret. Book Value is stored 2. Ret. Depreciation is stored 3. where the loss/ profit field is stored. i have followed the standard report RAABGA01. but