Gap between table rows

Hi all,
I have displayed a table in smartform.    now i need to have a gap between each of the table row..
So how to display a blank line between each of the table row?
Regards,
Shanthi

Hi,
    May be this will help you.
1. Create one extra coloumn in the internal table.But don't populate any values in that column.
2. For each column you will fill o/p options with line type right. for this column fill with line type  LINE2 in output options.
LINE1 is common which generally you are using.
3. create that that Line type LINE2 with table lenght and single column.
4. don't put this extra coumn in header of the table.
let me know if any issues.
reward points if helpful
Thanks,
suma

Similar Messages

  • How do I remove a gap between table rows in InDesign?

    I need help in figuring out how to remove gaps between table rows.  I have tried Table Spacing under Table Set-up, but it doesn't work.
    Here's what I'm working on:
    As you can see there are gaps above the first row and below last row under the header Business Management Technology.  I cannot select that gap.  How do I remove it, so that the first class, 31058, is flush with the black header?  (and the last class, 32675, is flush with the Chemistry header?)
    Any advice would be greatly appreciated.
    Thanks,
    Sarah 

    SRiegel wrote:
    ...it may be that the black bar is created with a paragraph rule instead of cell color.
    I hadn't considered that, and your example is proof-of-concept. However, now that you made me look closer, I still don't think that's the OP's case, seeing as the text in the OP's header rows appears to span more than one column, belying what I suppose must be merged cells.* The column strokes in the "gap" appear to disqualify it (the gap) as part of a row with merged cells.
    *There is still another possibility that someone "made pictures" of tables with merged cells by overlaying text frames to make the header rows. I've run across all kinds of such "carpentry;" especially when the file may have originated at the desk of someone who avoids or resists use of tables. They find ways to fake them and/or their features.
    [still looking]

  • How Can I Tighten the Space Between Table Rows?

    I am trying to reproduce the resume I created in a different word processing application several years ago. I have created a table that lists all the work for a given employer with each row representing a different employer. I do want a little more space between text rows when I jump from one employer to the next (one row in the table to the next), but not as much as it is creating. Is there a way to tighten this?
    I like the amount of space between lines within a row just as it is.
    Martin
    OS 10.9.5
    Pages v. 5.2 (1860)

    That looks to be the idea, but adjusting the Text Inset is giving me inconsistent results from row to row. The first attached image shows the table (I've included grid lines here to help illustrate) with the default Text Inset of 4 for all cells.
    Note the consistent spacing before and after each row. Here is the same document with a Text Inset of 0 on all cells:
    Note the large gap between the first and second rows (OWN and Investigative etc.) and the extremely tight gap between the second row and third (Investigative etc. and CNBC). Then a big gap, a tight gap, two big gaps, a tight gap and a big in subsequent rows.
    I keep looking to see if I have some sort of other inconsistent formatting going on, but I can't find one. All cells have the Text set (in the style tab) to "Align text to the top of a table cell."
    Martin

  • How to maintain gap between table and graph in a report

    HI,
    I have a report in which a graph is placed below a table  and data in the table gets increased with time , then how to maintain the gap as constant between table and the graph ?? Like i have 50 rows in a table and then next day 10 rows are added but then i want maintain same gap between the table and graph???

    >Right click on chart.
    >Open the property and go to the relative position.
    >Select the distance of the upper left point of the chart in relation to another report element by entering - the number of pixels; the part of the tavfrom which youble want to measure the pixels (in the first drop-down list); the report element from which you want to measure the pixels (in the second drop-down list).
    >Repeat this for the distance of the lower left point of the chart.
    Hope this will help you out.

  • Remove gaps between tables in dreamweaver CC

    I'm new to Dreamweaver so please be patient with me. I have created 2 stacked tables and for some reason there is a slight gap between them even though padding and spacing is set at 0. Can anyone let me know how to remove this gap.
    Thanks in advance

    I had never noticed it in the past until I started using the html5 doctype, hmm...
    One sec...
    I just tested a simple 2 column 2 row default table and tossed in an image with text and an image without text into two separate rows. The padding is not there in HTML4 Trans or XHTML Trans (which is what I used in the past most often). It only shows up on the image that is added with text for those two doctypes. When I convert it to html5, it shows up for both, here test this code and see if I'm crazy (preview the below, then change the doctype to html5 and preview again, the descender padding on the bottom image is not present in XHTML or html4 and pops up in html5)...
    <!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" xml:lang="en-us" lang="en-us">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style>
    table {
        border:none;
        margin:0px;
        padding:0px;
        border-collapse:collapse;
    </style>
    </head>
    <body>
    <table width="200" border="1">
      <tbody>
        <tr>
          <td> </td>
          <td> </td>
        </tr>
        <tr>
          <td> </td>
          <td>hi<img src="images/dots-anim.gif" width="62" height="32" alt="" />there</td>
        </tr>
        <tr>
          <td><img src="images/dots-anim.gif" width="62" height="32" alt="" /></td>
          <td> </td>
        </tr>
      </tbody>
    </table>
    </body>
    </html>

  • Find gap between two dates from table

    Hello All,
    I want to find gap between two dates ,if there is no gap between two dates then it should return min(eff_dt) and max(end_dt) value
    suppose below data in my item table
    item_id    eff_dt           end_dt
    10         20-jun-2012     25-jun-2012
    10         26-jun-2012     28-jun-2012 There is no gap between two rows for item 10 then it should return rows like
    item_id eff_dt end_dt
    10 20-jun-2012 28-jun-2012
    item_id    eff_dt           end_dt
    12         20-jun-2012     25-jun-2012
    12         27-jun-2012     28-jun-2012 There is gap between two rows for item 12 then it should return like
    item_id eff_dt end_dt
    12 20-jun-2012 25-jun-2012
    12 27-jun-2012 28-jun-2012
    I hv tried using below query but it giv null value for last row
    SELECT   item_id, eff_dt, end_dt, end_dt + 1 AS newd,
             LEAD (eff_dt) OVER (PARTITION BY ctry_code, co_code, item_id ORDER BY ctry_code,
              co_code, item_id) AS LEAD,
             (CASE
                 WHEN (end_dt + 1) =
                        LEAD (eff_dt) OVER (PARTITION BY ctry_code, co_code, item_id ORDER BY ctry_code,
                         co_code, item_id, eff_dt)
                    THEN '1'
                 ELSE '2'
              END
             ) AS new_num
      FROM item
       WHERE TRIM (item_id) = '802'
    ORDER BY ctry_code, co_code, item_id, eff_dtI m using oracle 10g.
    please any help is appreciate.
    Thanks.

    Use start of group method:
    with sample_table as (
                          select 10 item_id,date '2012-6-20' start_dt,date '2012-6-25' end_dt from dual union all
                          select 10,date '2012-6-26',date '2012-6-26' from dual
    select  item_id,
            min(start_dt) start_dt,
            max(end_dt) end_dt
      from  (
             select  item_id,
                     start_dt,
                     end_dt,
                     sum(start_of_group) over(partition by item_id order by start_dt) grp
               from  (
                      select  item_id,
                              start_dt,
                              end_dt,
                              case lag(end_dt) over(partition by item_id order by start_dt)
                                when start_dt - 1 then 0
                                else 1
                              end start_of_group
                        from  sample_table
      group by item_id,
               grp
      order by item_id,
               grp
       ITEM_ID START_DT  END_DT
            10 20-JUN-12 26-JUN-12
    SQL> SY.

  • How to adjust gap between tilelist items?

    Hi,
    I have a tilelist which uses a custom item renderer component
    to render its items. I am seeing a gap between the rows of items
    (no gap between columns). I cannot seem to find a property of
    tileList which lets you adjust this gap.
    Can anyone help?
    Thanks

    Easy tracy. I didnt make as big of a fuss as you are making
    comenting about my response. Perhapse you could've used that time
    to answer someones question?
    Also, the solution I mentioned actually only solved part of
    the problem:
    By setting the paddingtop and paddingbottom, I can adjust the
    gap between the row, but paddingleft and padding right on the
    tileList control has no affect on the gap between the columns
    (horizontal gap between items)?
    Thanks to anyone taking their time to help :)

  • Difference between current row and previous row in a table

    Hi All,
    I am having a problem with the query. Can some of please help me?
    I need to get difference between current row and previous row in a table. I have a table, which have data like bellow.
    TABLEX
    ================
    Name Date Items
    AAA 01-SEP-09 100
    BBB 02-SEP-09 101
    CCC 03-SEP-09 200
    DDD 04-SEP-09 200
    EEE 05-SEP-09 400
    Now I need to get output like bellow...
    Name Date Items Diff-Items
    AAA 01-SEP-09 100 0
    BBB 02-SEP-09 101 1
    CCC 03-SEP-09 200 99
    DDD 04-SEP-09 200 0
    EEE 05-SEP-09 400 200
    Can some one help me to write a query to get above results?
    Please let me know if you need more information.
    Thanks a lot in advance.
    We are using Oracle10G(10.2.0.1.0).
    Thanks
    Asif

         , nvl (items - lag (items) over (order by dt), 0)like in
    SQL> with test as
      2  (
      3  select 'AAA' name, to_date('01-SEP-09', 'dd-MON-rr') dt,  100 items from dual union all
      4  select 'BBB' name, to_date('02-SEP-09', 'dd-MON-rr') dt,  101 items from dual union all
      5  select 'CCC' name, to_date('03-SEP-09', 'dd-MON-rr') dt,  200 items from dual union all
      6  select 'DDD' name, to_date('04-SEP-09', 'dd-MON-rr') dt,  200 items from dual union all
      7  select 'EEE' name, to_date('05-SEP-09', 'dd-MON-rr') dt,  400 items from dual
      8  )
      9  select name
    10       , dt
    11       , items
    12       , nvl (items - lag (items) over (order by dt), 0)
    13    from test
    14  ;
    NAM DT             ITEMS NVL(ITEMS-LAG(ITEMS)OVER(ORDERBYDT),0)
    AAA 01-SEP-09        100                                      0
    BBB 02-SEP-09        101                                      1
    CCC 03-SEP-09        200                                     99
    DDD 04-SEP-09        200                                      0
    EEE 05-SEP-09        400                                    200
    SQL>

  • How to create a table with the spaces between the row..

    Hello,
    I am using jdev 11.1.1.6 and I need to insert the spaces between the rows. How this can be done?
    Thanks and Regards,
    Tarun Agrawal

    Hi Tarun,
    This css rule is useful to set the padding on each cell:
    .AFTableCellPadding:alias {
      padding: 10px 0px 10px 0px;
    }But if you want to insert a real space between the rows (property "cellspacing") you can do something like this:
    af|table > div + div > table {
      border-collapse: separate;
      border-spacing: 0px 5px;
    }AP

  • Add new row in table between two rows - OATableBean

    Hi,
    I have a requirement where I need to add a new row between two rows. Lets say I have a table with 5 rows. I am envisioning having an icon (table switcher) on the row #1, which when clicked will insert/create a new row between rows #1 and #2 like #1.5, something that can be achieved in core forms. In core forms, when we click the add button, it immediately creates a new row before the current row ( and pushes other rows down). Is that possible with OATableBean. Please let me know if you have any ideas.
    Thanks,
    Ravi.

    Hi,
    I used following code to insert the row in the end
    public void createNewRow()
    XXEGASRLinesVOImpl vo =getXXEGASRLinesVO1();
    Row row1 ;
    int i;
    Row row[] = vo.getAllRowsInRange();
    row1 = vo.createRow(); //vo.createRowSet("10");
    vo.insertRowAtRangeIndex(row.length,row1);//.insertRow();
    row1.setNewRowState(Row.STATUS_INITIALIZED);
    Check if it works for you, you have to modify it to meet your requirement.
    Regards,
    Reetesh Sharma

  • I need to retrieve the a set of rows in between two rows from a table.

    consider employees table and primary key employee_id.
    With out using EMPLOYEE_ID column in the where clause or between clause, I need to get the records between 104 and 116 or a set of records between two rows.
    Can any one help me in this... i know this is simple but am just a fresher to oracle development... help me grow....
    Thanks,
    Arun

    ya at last i got the out put... thank guys for thinking with me....
    SELECT rownum, employee_id FROM (SELECT rownum, employee_id FROM employees ORDER BY employee_id)
    WHERE ROWNUM <=8
    MINUS
    SELECT rownum, employee_id FROM (SELECT rownum, employee_id FROM employees ORDER BY employee_id) WHERE ROWNUM <= 4

  • Why there is a huge difference between a row size on a disk based table and a row size in memoptimized table of SQL 2014?

    Hi All,
    I have two table with similar structure and data, one is on disk and the other is in memory. I somehow calculated the difference between a row size of on disk and in memory table and found that the row size of in memory is 700 Bytes more than the disk based
    tables.
    aa

    As others mentioned, memory optimized tables and disk based tables have different structures in SQL Server 2014.
    For memory optimized tables, the number of indexes on table also contribute to the size. You can calculate the exact size of rows and thus the table size using the formula given in the below articles
    Table and Row Size in Memory-Optimized Tables
    Estimate the Size of a Table
    Krishnakumar S

  • Insert table in between two rows of the table in Web dynpro abap.

    Hi All,
    I have a requirment like this,
    while click on a hide/show button from the first row and last column of the table, want to display  a table(or add some rows to insert data) in between the  rows of the table and insert data in the new table .
    please help me wheather it is possible or not?
    Thanks,
    Raju.

    hi raju....
           if you want to insert rows.... then read the index of the row clicked and then read the node that is bound to the table and insert an empty row at that index and bind it back again....
           if you want another table then make use of table popin.
    --regards,
      alex b justin

  • Unwanted gaps between images in Internet Explorer

    I have sliced a image web page in Photoshop and exported it
    to .html and images. It looks perfect in IE7 and Firefox. Then
    brought it into Dreamweaver and deleted the large image in the
    content area and inserted a table into the content area. Now when I
    preview it in IE7 there is a gap between the top image and the two
    images on either side of the content area. Borders for all three
    images is set to zero as are cell padding etc. It displays
    correctly in Firefox and Dreamweaver but IE7 places a gap between
    the images. How do I remove the gap using HTML tables?

    >I have sliced a image web page in Photoshop and exported
    it to .html and
    > images.
    That's a bad start. The HTML written by graphics apps (and
    indeed by any
    'wizard') is fragile, and unsuitable for any use other than
    prototyping.
    > Now when I preview it in IE7 there is a gap between the
    top image
    > and the two images on either side of the content area.
    This is precisely the symptom of having used a graphics app
    to write your
    HTML. Why? You have changed the ground rules (i.e., the shape
    of the
    content) by deleting the large image and replacing it with a
    table. When a
    wizard writes your HTML, it writes it to EXACTLY reproduce
    the shape you
    have given it. Change that shape and you change the way the
    fragile code
    adapts - resulting in a breakage of your layout.
    The principal culprit is the use of col- and rowspans by
    these wizards -
    ... colspan="3">
    You can read more about this here -
    http://apptools.com/rants/spans.php
    The solution is to bite the bullet and learn enough HTML that
    you can create
    your own layouts without relying on a graphics app. Otherwise
    you will
    have this problem continuously.
    1. When I need to merge cells...
    a. If they are horizontally adjacent, instead of merging
    them, I end
    the current table, and 'stack' a new one underneath it with
    the desired cell
    configuration.
    b. If they are vertically adjacent, then I end the current
    table at the
    row ABOVE the row where the need for merging begins. I then
    start a new
    table with two cells in one row, and place a properly
    structured inner table
    in each of those two cells.
    2. When I need to split cells, I just insert a nested table
    with the proper
    cell configuration into the cell I would otherwise split.
    The goal here is to completely avoid merging or splitting
    cells (i.e., using
    col- or rowspan attributes in your table markup), since
    that's what makes
    Layout mode's tables (and any wizard's tables) so fragile.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Clark9" <[email protected]> wrote in
    message
    news:[email protected]...
    >I have sliced a image web page in Photoshop and exported
    it to .html and
    > images. It looks perfect in IE7 and Firefox. Then
    brought it into
    > Dreamweaver
    > and deleted the large image in the content area and
    inserted a table into
    > the
    > content area. Now when I preview it in IE7 there is a
    gap between the top
    > image
    > and the two images on either side of the content area.
    Borders for all
    > three
    > images is set to zero as are cell padding etc. It
    displays correctly in
    > Firefox
    > and Dreamweaver but IE7 places a gap between the images.
    How do I remove
    > the
    > gap using HTML tables?
    >
    > <html>
    > <head>
    > <title>African Chamber of Commerce of
    Texas</title>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1">
    > <style type="text/css">
    > <!--
    > .style1 {font-family: Arial, Helvetica, sans-serif}
    > .style2 {
    > font-family: Arial, Helvetica, sans-serif;
    > font-size: 18px;
    > }
    >
    > </style>
    > </head>
    > <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0"
    marginwidth="0"
    > marginheight="0">
    > <!-- ImageReady Slices (ACCT.psd) -->
    > <table id="Table_01" width="935" height="810"
    border="0" cellpadding="0"
    > cellspacing="0">
    > <tr>
    > <td height="212" colspan="3"><img
    src="images/index_01.gif" alt=""
    > width="935" height="212" border="0" usemap="#Map">
    > <map name="Map">
    > <area shape="rect" coords="100,182,157,206"
    href="index.html">
    > <area shape="rect" coords="188,185,270,207"
    > href="about_us.html">
    > <area shape="rect" coords="305,183,378,208"
    > href="benefits.html">
    > <area shape="rect" coords="413,183,486,208"
    > href="members.html">
    > <area shape="rect" coords="518,184,594,209"
    > href="events.html">
    > <area shape="rect" coords="618,183,705,208"
    > href="application.html">
    > <area shape="rect" coords="740,181,832,208"
    > href="contact_us.html">
    > </map></td>
    > </tr>
    > <tr>
    > <td rowspan="2" align="left" valign="top"><img
    src="images/index_02.gif"
    > alt="" width="94" height="600" border="0"
    align="top"></td>
    > <td height="501" valign="top"><table
    width="747" height="269" border="0"
    > cellpadding="8" cellspacing="0">
    > <tr>
    > <td width="211" valign="top"><p
    class="style1">
    > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
    > Transitional//EN">
    > <br>
    > <em><strong>United We Stand; Divided We
    Fall.</strong></em>
    > </p>
    > <p class="style1">With your participation in ACCT,
    you become
    > one
    > of the contributors toward the building and advocacy of
    the &ldquo;Trade
    > Not
    > Aid&rdquo; movement.</p></td>
    > <td width="250" valign="top"><div
    align="center">
    > <p><span class="style2">
    > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
    > Transitional//EN">
    > <br>
    > </span><span
    class="style2"><strong>What ACCT can do for
    > you?</strong></span> </p>
    > </div>
    > <ul>
    > <li> <span class="style1">Networking and
    Exposure<br>
    > Referrals</span></li>
    > <li class="style1">Cultural center</li>
    > <li class="style1"> Newsletters</li>
    > <li class="style1"> Welcome and orientation
    program</li>
    > <li class="style1"> Assistance in business
    outreach
    > programs</li>
    > <li class="style1"> Training and continuing
    education in
    > small business start-up and management</li>
    > <li class="style1"> ACCT office
    facilities</li>
    > <li class="style1"> Legal assistance</li>
    > <li class="style1"> ACCT will be there for you,
    all the
    > way.
    > </li>
    > </ul></td>
    > <td width="238" valign="top" class="style1">
    > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
    Transitional//EN">
    > <br>
    > <strong>ACCT</strong> believes that lasting,
    meaningful
    > furtherance of economic development efforts is
    predicated on the
    > equitable
    > sharing of world resources, along with the preservation
    and maintenance
    > of a
    > healthy and fair business environment. Furtherance of
    economic
    > opportunities
    > in a global economy also requires an informed and
    involved public where
    > everyone participates in decisions which affect the
    common good for
    > self-reliance, sustainability and prosperity. The
    cornerstone of ACCT is
    > &ldquo;<strong>Trade Not
    Aid&rdquo;.</strong></td>
    > </tr>
    > </table></td>
    > <td rowspan="2" align="left" valign="top">
    > <img src="images/index_04.gif" alt="" width="94"
    height="600" border="0"
    > align="texttop"></td>
    > </tr>
    > <tr>
    > <td height="97" valign="top"><img
    src="images/index_05.gif" width="747"
    > height="97" alt=""></td>
    > </tr>
    > </table>
    > <!-- End ImageReady Slices -->
    > </body>
    > </html>
    >

  • View a single table-row as multiple rows in a GridControl

    Hi,
    is it possible to distribute the entries of a single row of a table/RowSetInfo over multiple lines of a GridControl?
    I've seen an example on the Internet (http://www2.gol.com/users/tame/swing/examples/JTableExamples4.html) which does this without database connection but it seems as if it's necessary to replace the default JTable, TableModel and UI by customized ones. As far as I've seen it's not possible to replace the JTable which is used by a GridControl? So is there any other way to do this? (A modification of the JTable-UI itself doesn't suffice as the JTable yields wrong row- and column-numbers on mousclick-events and therefore the components of the second row are not enabled properly).
    Thanks in advance
    null

    |I've seen an example on the Internet |(http://www2.gol.com/users/tame/swing/exampl|es/JTableExamples4.html) which does this |without database connection but it seems as |if it's necessary to replace the default |JTable, TableModel and UI by customized |ones.
    You wont be able to replace the JTable. But you can change all the attributes on the internal table which the grid uses (see getTable() method). The datamodel for the grid is impemented by oracle.dacf.control.swing.GridDataSource. You can possibly extend this class. You can also change the Table column model and the renderers used by the Table.
    |So is there any other way to do this? (A |modification of the JTable-UI itself doesn't |suffice as the JTable yields wrong row- and |column-numbers on mousclick-events and |therefore the components of the second row |are not enabled properly).
    Could you expain how the mapping between cell renderer and the table (row, col) is done in the extended JTable - which class ?.
    (http://www2.gol.com/users/tame/swing/exampl|es/JTableExamples4.html)
    null

Maybe you are looking for

  • Trying to buy in app purchase but says it cannot be completed

    Bought in game purchase this morning I've tried to do it again but now it says could not complete and refers me to support page

  • Items from Exchange calendar do not appear in print

    Hi, I've subscribed to an Outlook calendar which lives on an Exchange server. Within iCal (Calendar) this calendar appears in the Exchange group and its items display fine. However, when I print next week's schedule, the Exchange items are not includ

  • Remove DRM from early itunes store purchases

    The itunes help screen says, "If you already have iTunes Store purchases that are now available as iTunes Plus downloads, you may upgrade your existing purchases. To do so, visit the iTunes Store and follow the onscreen instructions." If there are 'o

  • CONNECT and ALTER statements in a Procedure. COPY command in SQL*Plus

    Hi people, Is it possible to use the SQL commands, "CONNECT" and "ALTER TABLE" in a procedure, function or trigger? In one of my audit procedures, I need to connect to a financial database (FROM the applications database), and then proceed to alter a

  • RCU-6092:Component Selection validation failed

    hi am in step 5 installing  rcu (custom variable) am having this error RCU-6092:Component Selection validation failed. Please refer to log at C:\oracle\Middleware\rcuHome\rcu\log\logdir.2013-11-08_09-09\rcu.log for details. Value of Custom Variable W