Clear contents between tables

Hi everyone,
I need some help with a macro im doing.
I have some documents with 150 pages with tables each and some text between them. 
Basicly i need a macro to do this:
Delete the text between tables (Except for the paragraphs with just "ABC" or "DEF");
Delete the text between table and the paragraphs with "ABC" or "DEF"; 
Format (fill with Grey the first row) the tables after "ABC" and keep the format the tables after "DEF"
I don´t know if its possible, but i think it might be :)
I hope someone can help me :)
Many thanks!
PS: I did an example but i can´t show it until you are able to verify my account. 

I was thinking that the statement FREE MEMORY might help, but no, it does not clear all of the internal tables.  The only way I suppose is this.
report zrich_0002.
data: it0011 type table of t001.
data: it0012 type table of t001.
data: it0013 type table of t001.
select * into table it0011 from t001.
select * into table it0012 from t001.
select * into table it0013 from t001.
refresh: it0011, it0012, it0013.
Regards,
Rich Heilman

Similar Messages

  • Drag and Drop of cell content between 2 tables

    Hi Guys,
    Iam into implementing drag and drop of cell contents between 2 different tables,say Table1 and Table2.(Iam not dragging and dropping rows or cells,Just copying the content of one cell to another).
    Have extended the java tutorial class "TableTransferHandler" and "StringTransferHandler" under http://java.sun.com/docs/books/tutorial/uiswing/examples/dnd/index.html#ExtendedDndDemo to satisfy my needs.
    The drag is enabled for Table1 and table2 as follows.
    jTable1.setDragEnabled(true);
    jTable1.setTransferHandler(new TableTransferHandler());
    jTable2.setDragEnabled(true);
    jTable2.setTransferHandler(new TableTransferHandler());
    Dont be taken aback with the code I have put.It just to show what I have done..
    My questions are put at the end of the post..
    //String Transfer Handler class.
    public abstract class StringTransferHandler extends TransferHandler {
        protected abstract String exportString(JComponent c);
        protected abstract void importString(JComponent c, String str);
        protected abstract void cleanup(JComponent c, boolean remove);
        protected Transferable createTransferable(JComponent c) {
            return new StringSelection(exportString(c));
        public int getSourceActions(JComponent c) {
            return COPY_OR_MOVE;
        public boolean importData(JComponent c, Transferable t) {
            if (canImport(c, t.getTransferDataFlavors())) {
                try {
                    String str = (String)t.getTransferData(DataFlavor.stringFlavor);
                    importString(c, str);
                    return true;
                } catch (UnsupportedFlavorException ufe) {
                } catch (IOException ioe) {
            return false;
        protected void exportDone(JComponent c, Transferable data, int action) {
            cleanup(c, action == MOVE);
        public boolean canImport(JComponent c, DataFlavor[] flavors) {
              JTable table = (JTable)c;         
             int selColIndex = table.getSelectedColumn();
            for (int i = 0; i < flavors.length; i++) {
                if ((DataFlavor.stringFlavor.equals(flavors))&& (selColIndex !=0)) {
    return true;
    return false;
    }//TableTransferHandler classpublic class TableTransferHandler extends StringTransferHandler {
    private int[] rows = null;
    private int addIndex = -1; //Location where items were added
    private int addCount = 0; //Number of items added.
    protected String exportString(JComponent c) {
    JTable table = (JTable)c;
    rows = table.getSelectedRows();
    StringBuffer buff = new StringBuffer();
    int selRowIndex = table.getSelectedRow();
    int selColIndex = table.getSelectedColumn();
    String val = table.getValueAt(selRowIndex,selColIndex).toString();
    buff.append(val);
    return buff.toString();
    protected void importString(JComponent c, String str) {
    JTable target = (JTable)c;
    DefaultTableModel model = (DefaultTableModel)target.getModel();
    //int index = target.getSelectedRow();
    int row = target.getSelectedRow();
    int column = target.getSelectedColumn();
    target.setValueAt(str, row, column);
    protected void cleanup(JComponent c, boolean remove) {
    }Now I want to put in the following functionality into my program...
    [1]prevent dragging and dropping text in to the same table.That means I dont want to drag a cell content from Table1  and drop to another cell in Table1. Want to drag and drop cell content only from Table1 to Table2.
    [2]Change cursor on a un-defined Target. That means how to prevent a drag from a particular column in Table1.Also how to prevent a drop to a particular column in Table2. How to change the cursor to a "NO-DRAG" cursoror "NO-DROP" cursor.
    Could it be done using Drag Source Listener and drop Target Listener?.
    If yes,How can these listeners attached to the table and how to do it?
    If No,How Could it be done?
    [3]Want to change the background colour of the cell being dragged and also the background colour of the target cell where the drop is made...
    [4]Is there any out of the box way to make an undo in the target cell(where drop was made) so that the old cell value is brought back.
    How can I extend my code to take care of the above said things.
    Any help or suggestions is greatly appreciated.....
    Edited by: Kohinoor on Jan 17, 2008 10:58 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Hi Guys,
    Iam into implementing drag and drop of cell contents between 2 different tables,say Table1 and Table2.(Iam not dragging and dropping rows or cells,Just copying the content of one cell to another).
    Have extended the java tutorial class "TableTransferHandler" and "StringTransferHandler" under http://java.sun.com/docs/books/tutorial/uiswing/examples/dnd/index.html#ExtendedDndDemo to satisfy my needs.
    The drag is enabled for Table1 and table2 as follows.
    jTable1.setDragEnabled(true);
    jTable1.setTransferHandler(new TableTransferHandler());
    jTable2.setDragEnabled(true);
    jTable2.setTransferHandler(new TableTransferHandler());
    Dont be taken aback with the code I have put.It just to show what I have done..
    My questions are put at the end of the post..
    //String Transfer Handler class.
    public abstract class StringTransferHandler extends TransferHandler {
        protected abstract String exportString(JComponent c);
        protected abstract void importString(JComponent c, String str);
        protected abstract void cleanup(JComponent c, boolean remove);
        protected Transferable createTransferable(JComponent c) {
            return new StringSelection(exportString(c));
        public int getSourceActions(JComponent c) {
            return COPY_OR_MOVE;
        public boolean importData(JComponent c, Transferable t) {
            if (canImport(c, t.getTransferDataFlavors())) {
                try {
                    String str = (String)t.getTransferData(DataFlavor.stringFlavor);
                    importString(c, str);
                    return true;
                } catch (UnsupportedFlavorException ufe) {
                } catch (IOException ioe) {
            return false;
        protected void exportDone(JComponent c, Transferable data, int action) {
            cleanup(c, action == MOVE);
        public boolean canImport(JComponent c, DataFlavor[] flavors) {
              JTable table = (JTable)c;         
             int selColIndex = table.getSelectedColumn();
            for (int i = 0; i < flavors.length; i++) {
                if ((DataFlavor.stringFlavor.equals(flavors))&& (selColIndex !=0)) {
    return true;
    return false;
    }//TableTransferHandler classpublic class TableTransferHandler extends StringTransferHandler {
    private int[] rows = null;
    private int addIndex = -1; //Location where items were added
    private int addCount = 0; //Number of items added.
    protected String exportString(JComponent c) {
    JTable table = (JTable)c;
    rows = table.getSelectedRows();
    StringBuffer buff = new StringBuffer();
    int selRowIndex = table.getSelectedRow();
    int selColIndex = table.getSelectedColumn();
    String val = table.getValueAt(selRowIndex,selColIndex).toString();
    buff.append(val);
    return buff.toString();
    protected void importString(JComponent c, String str) {
    JTable target = (JTable)c;
    DefaultTableModel model = (DefaultTableModel)target.getModel();
    //int index = target.getSelectedRow();
    int row = target.getSelectedRow();
    int column = target.getSelectedColumn();
    target.setValueAt(str, row, column);
    protected void cleanup(JComponent c, boolean remove) {
    }Now I want to put in the following functionality into my program...
    [1]prevent dragging and dropping text in to the same table.That means I dont want to drag a cell content from Table1  and drop to another cell in Table1. Want to drag and drop cell content only from Table1 to Table2.
    [2]Change cursor on a un-defined Target. That means how to prevent a drag from a particular column in Table1.Also how to prevent a drop to a particular column in Table2. How to change the cursor to a "NO-DRAG" cursoror "NO-DROP" cursor.
    Could it be done using Drag Source Listener and drop Target Listener?.
    If yes,How can these listeners attached to the table and how to do it?
    If No,How Could it be done?
    [3]Want to change the background colour of the cell being dragged and also the background colour of the target cell where the drop is made...
    [4]Is there any out of the box way to make an undo in the target cell(where drop was made) so that the old cell value is brought back.
    How can I extend my code to take care of the above said things.
    Any help or suggestions is greatly appreciated.....
    Edited by: Kohinoor on Jan 17, 2008 10:58 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Relationship between tables

    HI all;
    I need to get the following fields into my ODS.
    1. cost center
    2. activity type
    3. version
    5. Fiscal year
    6. Posting Period
    7. Activity Qty1
    8. Activity Qty2
    9 Activity Qty12.
    I see these fields are stored in the following table
    1. CSKS
    2. COSL
    3. CSLA
    when I created a view there is no relationship exits between these tables. Please guide me through how to create the relationship if I have to include another table which is the appropriate one for my scenario.
    thank you.

    Hi,
    you also need to take into account the table cssl. This is the link between cost centers and activity types, so between csks and csla. Now have a look into the content of table cosl. I guess the objnr contains costcenter and activity type concatenated together with some other information, --> KL<co_area><cost_center><activity_type>.
    regards
    Siggi

  • The Relation between tables and views in oracle financial

    Dears
    I am work in oracle e business r12
    and i need to build report as xml
    when run my select its need big time to view data i have a huge of data so i need to clear the relation of this tables if there is miss and if there another technique in select statement
    this is my select statement
    select
    j_hdr.je_header_id je_header_id,
    hdr.VENDOR_NAME supplier,
    SEGMENT1||'-'||SEGMENT2||'-'||SEGMENT3||'-'||SEGMENT4||'-'||SEGMENT5||'-'||SEGMENT6||'-'||SEGMENT7||'-'||SEGMENT8||'-'||SEGMENT9 Account_number,
    hdr.gl_date gl_date,
    j_hdr.CURRENCY_CODE CURRENCY_CODE,
    inv_lin.DESCRIPTION DESCRIPTION,
    j_lin.ENTERED_DR ENTERED_DR,
    j_lin.ENTERED_CR ENTERED_CR,
    j_lin.ACCOUNTED_DR ACCOUNTED_DR,
    j_lin.ACCOUNTED_CR ACCOUNTED_CR,
    j_hdr.JE_SOURCE JE_SOURCE,
    j_hdr.DEFAULT_EFFECTIVE_DATE Transaction_DATE,
    hdr.INVOICE_NUM INVOICE_NUM,
    QUICK_PO_NUMBER PO_NUMBER,
    null ASSET_CATEGORY_ID,
    hdr.VENDOR_ID VENDOR_ID
    from gl_je_headers j_hdr,gl_je_lines_v j_lin,ap_invoice_distributions dist,ap_invoices_v hdr,ap_invoice_lines_v inv_lin
    where code_combination_id = DIST_CODE_COMBINATION_ID
    and hdr.invoice_id = inv_lin.INVOICE_ID
    and dist.invoice_id = inv_lin.INVOICE_ID
    and j_hdr.JE_HEADER_ID = j_lin.JE_HEADER_ID
    and j_hdr.status = 'P'
    and nvl(:P_SOURCE,'Payables') = 'Payables'
    and je_source = 'Payables'
    and j_lin.CODE_COMBINATION_ID between ( select CODE_COMBINATION_ID
    from gl_code_combinations_kfv
    where CONCATENATED_SEGMENTS = :P_FROM_COMBINATION_CODE)
    and ( select CODE_COMBINATION_ID
    from gl_code_combinations_kfv
    where CONCATENATED_SEGMENTS = :P_TO_COMBINATION_CODE)
    AND TRUNC(dEFAULT_EFFECTIVE_DATE) BETWEEN NVL(:P_FROM_DATE, DEFAULT_EFFECTIVE_DATE) AND NVL(:P_to_DATE, DEFAULT_EFFECTIVE_DATE)
    Thanks in advance

    Welcome to the world of complicated Oracle Application queries. Didn't fully understand your question, so a few guesses -
    I think that you are asking how to make your query faster? I would reference the FAQ section on how to post a question regarding performance.
    Your title indicates you want to understand the relationship between tables and views. In general, Oracle Applications uses views for 2 reasons - to join data from multiple tables for display, and to differentiate data from different organizations. (I am still on 11i and have heard organizations are handled differently in 12 so I can't speak to that for sure).
    To understand the relationship between tables in a view, you can access the view's source code, either through a development tool such as PL/SQL Developer or TOAD (I'm guessing Oracle's tool does this also, but have never used it), or by querying the source from the dba_source table.
    select * from dba_source where name = (name of view) and type = 'VIEW' order by line;without the ( ) just the view name, in all capital letters i.e. , 'GL_JE_LINES_V'
    Good luck!

  • Line appearing between tables?

    A line is appearing between tables that I can't get rid of. I
    can't seem to make the tables touch. I took a screen of it; I don't
    want that line to be there in the white:
    http://aycu19.webshots.com/image/26338/2005650946393136015_th.jpg

    You have a mistake here -
    <td width="170" height="150" valign="top"
    class="sidebar_buttons"><a
    href="index.html" onmouseout="MM_swapImgRestore()"
    onmouseover="MM_swapImage('Home','','global/nav/homebar_rollover.png',1)"><a
    href="index.html" onmouseout="MM_swapImgRestore()"
    onmouseover="MM_swapImage('Home','','global/nav/homebar_rollover.png',1)"><a
    href="index.html" onmouseout="MM_swapImgRestore()"
    onmouseover="MM_swapImage('Home','','global/nav/homebar_rollover.png',1)"><img
    src="global/nav/homebar_norm.png" alt="Home" name="Home"
    width="130"
    height="30" border="0" id="Home"
    /></a></a></td>
    Note the nested <a> tags ----------------^^^^^^^^
    That's wrong. Each <a> tag must be properly terminated
    <td width="170" height="150" valign="top"
    class="sidebar_buttons"><a
    href="index.html" onmouseout="MM_swapImgRestore()"
    onmouseover="MM_swapImage('Home','','global/nav/homebar_rollover.png',1)"><img
    src="global/nav/homebar_norm.png" alt="Home" name="Home"
    width="130"
    height="30" border="0" id="Home" /></a></td>
    In fact, two of them were redundant, and I deleted them.
    Perhaps your line is coming from the spacer row at the bottom
    of the top
    table?
    <tr><td height="1"><img src="spacer.png"
    alt="" width="170" height="1"
    /></td><td><img src="spacer.png" alt=""
    width="530" height="1"
    /></td><td></td></tr>
    </table>
    Change this by removing the entire row -
    </table>
    and see what happens.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "mbaboy" <[email protected]> wrote in
    message
    news:[email protected]...
    > Ok, here's the code. I'm a n00b, so my code is very
    inefficient. I barely
    > know
    > how to read code, so I apoligize in advance if I gave
    you too much.
    > Basically
    > there is a table on top with two cells for the banner,
    and one below it
    > for the
    > sidebar with a few cells. The problem comes between the
    two tables. Thanks
    > a
    > lot.
    >
    > <!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>CoreFitness Personal Training</title>
    > <link href="styles.css" rel="stylesheet"
    type="text/css" />
    > <script type="text/javascript">
    > <!--
    > function MM_swapImgRestore() { //v3.0
    > var i,x,a=document.MM_sr;
    for(i=0;a&&i<a.length&&(x=a
    )&&x.oSrc;i++)
    > x.src=x.oSrc;
    > }
    > function MM_preloadImages() { //v3.0
    > var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new
    Array();
    > var i,j=d.MM_p.length,a=MM_preloadImages.arguments;
    for(i=0;
    > i<a.length;
    > i++)
    > if (a.indexOf("#")!=0){ d.MM_p[j]=new Image;
    > d.MM_p[j++].src=a
    > }
    >
    > function MM_findObj(n, d) { //v4.01
    > var p,i,x; if(!d) d=document;
    >
    if((p=n.indexOf("?"))>0&&parent.frames.length) {
    > d=parent.frames[n.substring(p+1)].document;
    n=n.substring(0,p);}
    > if(!(x=d[n])&&d.all) x=d.all[n]; for
    (i=0;!x&&i<d.forms.length;i++)
    > x=d.forms[n];
    >
    for(i=0;!x&&d.layers&&i<d.layers.length;i++)
    > x=MM_findObj(n,d.layers
    .document);
    > if(!x && d.getElementById)
    x=d.getElementById(n); return x;
    > }
    >
    > function MM_swapImage() { //v3.0
    > var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new
    Array;
    > for(i=0;i<(a.length-2);i+=3)
    > if ((x=MM_findObj(a))!=null){document.MM_sr[j++]=x;
    if(!x.oSrc)
    > x.oSrc=x.src; x.src=a[i+2];}
    > }
    >
    > //-->
    > </script>
    > </head>
    >
    > <body
    >
    onload="MM_preloadImages('global/nav/homebar_rollover.png','global/nav/about_rol
    >
    lover.png','global/nav/contact_rollover.png','global/nav/trainers_rollover.png')
    > "><table width="100%" border="0" cellpadding="0"
    cellspacing="0"
    > class="banner">
    > <!--DWLayoutTable-->
    > <tr>
    > <td width="170" height="100" valign="top"
    class="sidebar_topend"><img
    > src="global/banner/logo_left.png" alt="CoreFitness"
    width="170"
    > height="100"
    > /></td>
    > <td width="530" valign="top"
    bgcolor="#6600FF"><img
    > src="global/banner/logo_right.png" alt="CoreFitness"
    width="530"
    > height="100"
    > /></td>
    > <td width="100%"
    valign="top"><!--DWLayoutEmptyCell--> </td>
    > </tr><tr><td height="1"><img
    src="spacer.png" alt="" width="170"
    > height="1"
    > /></td><td><img src="spacer.png"
    alt="" width="530" height="1"
    > /></td><td></td></tr>
    > </table>
    > <table width="170" border="0" cellpadding="0"
    cellspacing="0"
    > class="sidebar">
    > <!--DWLayoutTable-->
    > <tr>
    > <td width="170" height="150" valign="top"
    class="sidebar_buttons"><a
    > href="index.html" onmouseout="MM_swapImgRestore()"
    >
    onmouseover="MM_swapImage('Home','','global/nav/homebar_rollover.png',1)"><a
    > href="index.html" onmouseout="MM_swapImgRestore()"
    >
    onmouseover="MM_swapImage('Home','','global/nav/homebar_rollover.png',1)"><a
    > href="index.html" onmouseout="MM_swapImgRestore()"
    >
    onmouseover="MM_swapImage('Home','','global/nav/homebar_rollover.png',1)"><img
    > src="global/nav/homebar_norm.png" alt="Home" name="Home"
    width="130"
    > height="30" border="0" id="Home"
    /></a></a></td>
    > </tr>
    > <tr>
    > <td height="30" valign="top"
    class="sidebar_buttons"><a href="#"
    > onmouseout="MM_swapImgRestore()"
    >
    onmouseover="MM_swapImage('About','','global/nav/about_rollover.png',1)"><img
    > src="global/nav/about_norm.png" alt="About" name="About"
    width="130"
    > height="30" border="0" id="About"
    /></a></td>
    > </tr>
    > <tr>
    > <td height="30" valign="top"
    class="sidebar_buttons"><a href="#"
    > onmouseout="MM_swapImgRestore()"
    >
    onmouseover="MM_swapImage('Trainers','','global/nav/trainers_rollover.png',1)"><
    > img src="global/nav/trainers_norm.png" alt="Trainers"
    name="Trainers"
    > width="130" height="30" border="0" id="Trainers"
    /></a></td>
    > </tr>
    > <tr>
    > <td height="31" valign="top"
    class="sidebar_buttons"><a href="#"
    > onmouseout="MM_swapImgRestore()"
    >
    onmouseover="MM_swapImage('Contact','','global/nav/contact_rollover.png',1)"><im
    > g src="global/nav/contact_norm.png" name="Contact"
    width="130" height="30"
    > border="0" id="Contact" /></a></td>
    > </tr>
    > <tr>
    > <td height="300"
    class="sidebar_buttons"> </td>
    > </tr>
    > </table>
    > </body>
    > </html>
    >

  • Diff. between table and template in smartforms

    hi there,
    please tell me what the diff. between table and template options available in smartforms

    HI
    GOOD
    TABLES=>
    In forms of business procedures you usually want to list details such as open items of an invoice. You can use a Smart Form to display this data in a table. You can design the layout of the table independent of the number of lines it will contain. The size of the table depends on how much data the application program passes to the form at runtime (unlike with templates, where you specify the number of columns and lines explicitly). The table can cover one or more pages, depending on the number of lines. This is why you display tables in the main window.
    TEMPLATES=>
    Use node type Template to display a table whose layout and size (number of lines and columns) is determined before the runtime of the application program. For this reason, a template is also called a static table.
    To create a template, define a table layout to determine the cell structure for each line. The cells are used to display the contents of the inferior nodes of the template node. This allows you to position text and a graphic side by side (see Displaying Graphics in Templates).
    The template node is also suited for label printing.
    GO THROUGH THIS LINK
    http://help.sap.com/saphelp_nw04/helpdata/en/4b/83fb4edf8f11d3969700a0c930660b/content.htm
    THANKS
    MRUTYUN

  • Huge spaces between tables

    I cannot seem to eliminate the huge space between tables.  I have set the td to vertical align top but it seems to make no difference.  Example: http://blandheritage.org/GENEALOGY/numberingsystem.html

    There are no tables on that page.  Everything is either an absolutely positioned div, or a paragraph contained within an absolutely positioned div.  The huge space is caused by your (INLINE) positioning of the apDiv12 -
    <div id="apDiv12" style="position: absolute; left: 10px; top: 1016px; width: 994px; height: 1452px; z-index: 10">
    I count 90 such absolutely positioned elements on your page, which could be the poster child for why one shouldn't use absolute positioning as a primary layout method (http://www.apptools.com/examples/pagelayout101.php).  Just use your browser text size controls to increase the browser's display of text a couple of ticks and see what happens to your layout (in Safari I just use Command-+).  Two ticks, and the contents have overlapped so much that the page becomes unreadable.  I recognize it my be too late to inform you of this fundamental mistake in your approach on this page, but if I were you, I'd fix it.  Who would ramp up the text size like this?  Anyone with vision problems who may have their browsers already set at a large text display for readability - you have no control over that....
    The good news is that this is the only page I see on your site that is built this way - all other pages are table-based, and while that approach is also uber-retro, at least it doesn't suffer from this potential overlapping problem.

  • What is difference between table space and shchema

    what is difference between table space and shchema ?

    784633 wrote:
    so each user has it own space of tables - schema ?yes, but let's clarify a bit ....
    The "schema" is the collection of all objects owned by a particular user. So if user SCOTT creates two tables, EMP and DEPT, and a view EMP_RPT, and a procedure GET_MY_EMP, those objects (tables, views, procedures) collectively make up the SCOTT schema.
    Those objects will be physically stored in a tablespace.
    A tablespace is a named collection of data files. So tablespace USERS will be made up of one or more data files. A specific datafile can belong to one and only one tablespace. If a tablespace has more than one data file, oracle will manage those files as a collection invisible to the application - much like the OS or disk subsystem handles striping across multiple physical disks.
    A specific object in the SCOTT schema can exist in only one tablespace, but not all objects of the schema have to be in the same tablespace. Likewise a tablespace can contain objects from multiple schemas.
    and can one user to access tables of other users?As others have said - FRED can access tables belonging to SCOTT as long has SCOTT has granted that access to FRED.

  • How to clear data in Table Control.

    hi! all
    How to clear the data in table control.
    i have a Table control which displays column A data from the previous screen and allows to enter column B and column C and i have a button CLEAR, when i click CLEAR button the Data displaying in table control has to be cleared. how to do it.
    Regards,
    Nagulan

    Hi,
    Loop over the internal table of table control & clear data from table control.
    loop at tctab.
    clear tctab.
    modify tctab.
    endloop.
    Best regards,
    Prashant

  • HT202213 My wife and I have different iTune accounts.  How do we share purchaed content between our ipads and iphones?

    My wife and I have different iTune accounts.  How do we share purchaed content between our ipads and iphones?

    iTunes- How to share music between different user accounts on a single computer
    You cannot merge two separate libraries across user accounts. Photos does not have the function of merging different Photos.library files. If you have Aperture then you can merge the two before migrating over to Photos.

  • 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 remove all content between two tags using Find/Replace regular expressions?

    This one is driving me bonkers...  I'm relatively new to regular expressions, but I'm trying to get Dreamweaver to remove all content between two tags in an XML document.  For example, let's say I have the following XML:
    <custom>
    <![CDATA[<p>Some text</p>
    <p>Some more text</p>]]>
    </custom>
    I'd like to do a Find/Replace that produces:
    <custom>
    </custom>
    In essence, I'd like to strip all of the content between two tags.  Ideally, I'd like to know how to strip the CDATA content as well, to return the following:
    <custom>
    <![CDATA[]]>
    </custom>
    I'd much appreciate any suggestions on accomplishing this.
    Many thanks!

    Thanks much for your response.  I found David's article to be a little thin with respect to examples using quantifiers in coordination with the wildcard metacharacters; however, I was able to cobble together a working expression through trial and error using the information he presented.  For posterity, here’s the solution:
    Find:
    <custom>[\d\D]*?</custom>
    Replace:
    <custom>
    <![CDATA[]]>
    </custom>
    I believe this literally translates to:
    [] = find anything in this range/character class
    \d = find any digit character (i.e. any number)
    \D = find any non-digit character (i.e. anything except numbers)
    *? = match zero or more times, but as few times as possible (i.e. match multiple characters per instance, but only match one instance at a time, or none at all)
    I’m still not sure how to effectively utilize the . wildcard.  For example, the following expression will not find content that ends with a number:
    <custom>.*?[\D]*?</ custom >
    I'm presuming this is because numbers aren't included in the \D metacharacter; however, shouldn't numbers be picked up by the .*? expression?

  • Import/Export Portal Content between EP6 6.20 and 6.40

    Hi there,
    We are about to setup a second portal in Europe on 6.40, while the US portal will still be a EP6 SP2 on 6.20 for some time.
    I was wondering about the possibilities to share portal content between those 2 installations, especially iViews and pages (not using remote iViews). As long as the name of the related PAR files (code link) are the same, this should work.
    On the other hand, iViews and pages will have a different set of parameters like "Allow Client-Side Caching" or "Use API of Tray" based on different portal versions. What will happend when importing/exporting these objects from 6.20 to 6.40 or the other way around?
    Thanks,
    Florian

    Ivo, thank you for your reply.
    But I think mapping ports doesn't solve our problem.
    WAS 6.20:
    Just the context path will be send in the header field 'location' to the browser (located in the internet).
    In case of a redirect the browser mixes the server name of the sender (the reverse proxy) and the context path and sends the request to the reverse proxy. The reverse proxy forwards the request to the WAS 6.20 intranet server.
    WAS 6.40:
    The header field 'location' contains now the whole URL (with the server name of the WAS 6.40 system, which is only accessible from our intranet).
    In case of a redirect the browser takes the content of the header field 'location' and sends the request to the not accessible WAS 6.40 intranet server. Of course that doesn't work.
    So it it depends on the content of the header field 'location'.
    What can we do in WAS 6.40, so that the header field 'location' contains only the context path as it has done in WAS 6.20?
    Regards,
    Uwe

  • 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.

  • Need content in table cell to scroll

    I Need content in table cell to scroll, so the window stays a constant height. Help.

    Google for 'scrollable DIV' or 'iframe'. Scrollable DIVs are better.

Maybe you are looking for

  • Depreciation is not getting calculated correctly

    Dear All, I have an issue with Issue with Cut off key. I have created cut off key with 10% scrap value and chosen scrap value deduction from Base value and maintained the same in Depreciation Key. I have done some acquisitions of Rs 1,00,000. Now, Wh

  • Hey CL, Audigy 2ZS need beta drivers/Crackling problem fixed t

    :angry: Owners of Audigy 2ZS need beta driver and or fix for the crackling and popping audio problems to. My system is: ASUS A8V with latest official BIOS, ATI x850 Pro, WD SATA 250GHD, AMD A64 3700, 2x52 twinx Corsair matched memory, Antech true pow

  • Network connection very slow, lot of drops

    Hello! On my network, there's an ADSL modem; an AirPort Extreme is connected to it and all my computers are connected to that AirPort Extreme. Initially, I had set the AirPort Extreme as a bridge and the modem was in PPPoE. However, I had weird troub

  • Can't sign in to my psn error code ce-33987-0

    ive been trying to sign into psn for the past hour and keep getting this error code tried its suggested actions and checked my isp but there telling me its all ok there end and its the psn network can any one help me on this

  • Games for the zeen

    Does anyone know if there are games out there for the zeen (photosmart c510)