More lines in Table-Headers

Hello,
I have an application developed with Netbeans and running under Glassfish using MySQL. All in the newest versions and running finr. But I have a design-question. Table-Headers normaly look like the following Screen-Shot:
http://twi.homeip.net/bilder/java/Soll.jpg
But in another Table I need some Headers with more Rows of text. Even the column-number is dynamical. So I have to create the Table on the fly. This works fine. Except for the Table-Header and the Backgroun of the text. I force the Row-Change with a "
"-tag inside the StaticText wich I insert as Header in the Column. But the Header looks like the following Screen-Shot:
http://twi.homeip.net/bilder/java/Ist.jpg
My problem is the Background of the Headers. I want that the background looks the same all over the table. How can I do this?
Thanks and regards,
Thomas

Hello,
thanks for the answer. That is not exactly what I want. I Don't want spanned Table-Headers. I just want a table with some 1-line Headers and som 3-line headers and all should have the same Background. As you can see in my Screenshot they don't have the same background.
Regards,
Thomas

Similar Messages

  • Copy more lines in the Table Control

    Hi ,
    I have created a table control in one of my mod pool programs,
    I have to paste lines from Excel (for instance) to this table control, but it copies only to the lines in the table control which I see in the screen. if I have more lines to copy than the lines which I see in the screen, it doesn't copy it.
    plz help me in this regard.......
    Thanx
    SHOAIB REHMAN

    Hi, Shoaib
    I think you have to Program for this in Special Button like in Select-Option's (EXTENSION) Button Window you have an Button Upload from Clipboard (Shift + F12) just left side of the Cancel button.
    For Copy data from Clipboard Check the Bellow Sample Code. (Copy data and Run the Bellow Code)
    TYPES:  BEGIN OF ty_char256,
            line TYPE c LENGTH 256,
            END OF ty_char256.
    DATA: it_data TYPE STANDARD TABLE OF ty_char256,
          wa_data LIKE LINE OF it_data,
          length TYPE i.
    CALL METHOD cl_gui_frontend_services=>clipboard_import
      IMPORTING
        data                 = it_data[]
        length               = length
      EXCEPTIONS
        cntl_error           = 1
        error_no_gui         = 2
        not_supported_by_gui = 3
        OTHERS               = 4.
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT it_data INTO wa_data.
      write: wa_data-line.
    ENDLOOP.
    Please Reply if any Confusion.
    Thanks and Regards,
    Faisal

  • Not able to view more than two line in table control

    Hi all,
    I am not able to see more than two lines in table control. Although my table control height is 21...
    Please see attached pic and suggest me what to do.

    hi,
    You have to set the LINES property of the table control In the PBO of your screen, to the number of entries in the internal table.
    data: lv_line type i.
    DESCRIBE TABLE  gt_table LINES lv_line.
    table_control-lines = lv_line + 1.
    or else
    You can do two thing in table control properties check horizontal and vertical scroll options plus in PBO you can based on number of lines in internal table assign it to TC_ABC-LINES if no lines are there then add by default 20..10.. any number of lines as you want.

  • Layout issue - More than one table sections on report?

    Hello all
    I am wondering if any of you know if there is a way to have more than one table or table field on a report.
    I'm asking this because I'd like to include a large number of fields in one report, but then that makes the report hard to read (everything is on one long line).
    I am wondering if there is a way to have more than one table section on a report so I could have the address information at the top of the report than have other additional information below the address. Basically I'm interested in making things easier to read for the user.

    Use Pivot tables to isolate the columns you want in each table in your report.
    Mike L

  • End line of table in XML Publsiher Report in EBS

    We report the invoice lines in a table with the row separator (horizontal) lines hidden. When there are more number of lines and this table goes for next page, then bottom line of table border doesn’t appear in the current page. It appears only once in the page where the table ends. We need this in each page. Any help?

    Got the modified template from you Kavipriya. It works.
    The solution is to add <?table-footer:?> at the end of the table.
    Thanks a lot.

  • How can I use more lines to show a field of a row in a report?

    How can I use more lines to show a field of a row in a report? Table A have two columns: (c1 number(5),c2 varchar2(1000)).When I show the table on a report,the column c2 show itself in one row.So the width of html page is very wide.How can I split the field c2 to many lines?
    Thanks for any help.

    I was wondering if an answer was found for this one.
    I have the same problem using the default "Look 4" template for the region. I have found in the CSS file where it is defined and it specifies "nowrap" in the style, which is why the long value is not being split over multiple lines.
    So, my question is, without modifying or creating templates, is there a way to override the "nowrap" attribute from within the item definition? e.g. in the Column Attributes.Column Formatting.CSS Style field. I had some success changing the display properties, such as background colour and font size but I can't seen to override the nowrap attribute!

  • How to view lines in table control after pressing vertical scroll bar

    Hi Experts, 
    I created table control in MPP, While design my layout I design table control with 12 lines(Fixed),  But I am moving my internal table values to table control. my internal table have more then 12 lines. My problem is I cant view my 13, 14th line in table control.  Could you help me in solve this issue?

    Please make sure that you have used the following code in the PBO
    DESCRIBE TABLE it_tab LINES tab_ctrl-lines.

  • Robohelp 9 does not generate table headers

    Hi all,
    the new table style mapping works, but is of no worth for me if Robohelp is not able to generate table headers in the Word output. Having headers in Word is also a prerequisite for the first line to repeat on each new page.
    Is there a way to output the first line as a header?

    Hi,
    I can partially confirm that. HTML does have the concept of table headers, captions, footers and content. When using a table that is set up correctly, most browsers will render the table header on every printed page:
    <table>
         <thead>
              <tr><th>First heading</th><th>Second heading</th></tr>
         </thead>
         <tbody>
              <tr><td>Value</td><td>Value</td></td>
         <tbody>
    </table> 
    RoboHelp does not use such tables. You can manually create these tables in HTML mode. When converting that to Word, the table headings are correctly converted to a Word table heading. In my default Word template, these headers correctly repeat after every pagebreak. But when you switch to Design view, RoboHelp then removes the structure information. The above table will be recreated as: 
    <table>
      <tr><th>First heading</th><th>Second heading</th></tr>
      <tr><td>Value</td><td>Value</td></td>
    </table> 
    This table will not have it's first row set as a header in Word. 
    As to what to do, I can think of two options:
      - You can write a script to quickly transform the tables in your project to have a table structure that works for printed documentation. Since RoboHelp will reset your tables, you will need to execute this script every time you want to generate your Word output. Also, because the structure of the tables will be changed, you probably need to amend your css. (The first table row uses th instead of td.)
      - Personally, I use default RoboHelp tables and I use the macro Peter mentioned. Peter's site contains several macro's that will greatly improve the quality of the RoboHelp Word output.
    Greet, 
    Willam

  • Outer join on more than 2 tables

    I have difficulties joining more than 2 tables with Oracle 8.1.7. How can I solve this problem?
    SQL> select
    2 G.NOM_GARE, F.VOIE
    3 FROM FIN_POSTE F, TYPE_GARE G,
    4 ( SELECT MATRICULE, RED_CPT1 FROM REDDITION,
    5 ( SELECT SUM( PRIX_TOTAL ) CR, MATRICULE FROM TRANSACTION
    6 GROUP BY MATRICULE
    7 ) CASH_REV
    8 WHERE
    9 R.MATRICULE = CASH_REV.MATRICULE(+)
    10 ) R
    11 WHERE
    12 F.ID_GARE = G.ID_GARE(+)
    13 AND
    14 TRUNC( F.DATE_DEBUT_POSTE, 'MI' ) >= TO_DATE( '20030623 05:00', 'YYYYMMDD HH24:MI' )
    15 AND
    16 TRUNC( F.DATE_DEBUT_POSTE, 'MI' ) <= TO_DATE( '20030624 08:00', 'YYYYMMDD HH24:MI' )
    17 ORDER BY G.NOM_GARE,
    18 F.VOIE,
    19 F.MATRICULE,
    20 F.DATE_DEBUT_POSTE;
    R.MATRICULE = CASH_REV.MATRICULE(+)
    Hiba a(z) 9. sorban:
    ORA-00904: nem megengedett oszlopn�v

    It appears that you are using R as a alias for one of the in-line views when it should probably be aliasing the reddition table ?
    R is currently being referenced inside the in-line view for which it is an alias, which doesn't look right.

  • I need in more lines of the Index some words in Bold text and some others in Kursiv text. How can i get it? It seems to me that either i can have all the Style in Bold Text or in Kursiv Text :(

    I need in more lines of the Index some words in Bold text and some others in Kursiv text. How can i get it? It seems to me that either I can edit a Style only in Bold Text or in Kursiv Text
    I make you an example to clear what I really need:
    Index
    Introduction
    I. Leonardo's Monnalisa
    II. Leonardo's Battaglia
    Bibliography
    Please HELP HELP HELP

    What version of Pages are you referring to?
    Basically if you are talking about the Table of Contents in Pages and want to have different character styles within paragraphs in the T.O.C. you will have to export the T.O.C. and bring it back in as text and change that.
    Peter

  • Trouble with Deleting Table Headers

    Hi NI community,
    I need your help with deleting the row headers of a table.
    The first time the program runs everything is OK.
    However, when the user sets a new number of tests and clicks the ‘Run Again’ button the old row headers not only are not being deleted but the new ones are appended under them.
    I would like the entire table, headers including, to be deleted and the new results to be displayed starting from the top of the table.
    I am attaching a sample program.
    Thank you in advance for your help.
    Solved!
    Go to Solution.
    Attachments:
    TableHeader.vi ‏40 KB

    You need to initialize your first shift register )inside the first sequence frame).
    Even better, simply use autoindexing to create the array, no shift register needed.
    Also note that writing the header does not belong in a loop, writing them once is sufficient. Use the proper datatypes. For example the number of trials is an integer. You have way too many unecessary local variables and sequence structures. most are not needed.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    Write Headers.png ‏6 KB

  • How to assign Line Number for Lines when click on Add More Lines

    Hello All,
    Kindly help me to assign line number for the lines which are added through Add More Lines button on an Advance table. If user clicks on the button Add More Lines then there are 5 lines get inserted at a time but I am not able to handle the line number for them.
    Similarly, if user delete any of the line then I need to re-order them.
    Kindly help and share if there is any sample code.
    Thanks,
    Sandy

    Hi,
    Check if this link helps you :
    Re: How to display serial numbers in the results table region
    --Sushant                                                                                                                                                                                                                                                           

  • Reducing space/lines between tables?

    Using 5.2 (1860), I have several tables on a document and more lines of spacing between each than I'd like. I place the cursor between each table and hit delete, though that does not do it. How do I do this?
    Thanks.

    Hi southwestform;
    Select the table and make some manipulation in its Text Wrap under Move with Text tab.
    By default, Text Wrap is Inline With Text.
    Change it to other than Inline With Text, i.e., Above and Below and so on.
    Now try to add line spaces as needed.
    Regards,

  • How to delete the double records connected to one or more than one tables in SQL 2008?

    Hi
    Can anyone please help me with the SQL query. I Im having a table called People with columns names: personno., lastname, firstname and so on. The personno. is having duplicate records,so all the duplicate records i have written with "double" in
    the beginning of the numbers. I tried deleting these double records but they are linked to one or more than one tables. I have to find out, all the tables blocking the deleting of double person. And then create select statements which creates update statements
    in order to replace the current id of double person with substitute id. (The personno. is in the form of id's in the database)
    Thanks

    You should not append "double" in the personno. When we append it will not be able to join or relate to other table. Keep the id as it is and use another field(STATUS) to mark as duplicate. Also we will require another field(PRIMARYID) against
    those duplicate rows i.e the main or the primary personno.
    SELECT * FROM OtherTable a INNER JOIN
    (SELECT personno, status, primaryid FROM PEOPLE WHERE status = 'Duplicate') b
    ON a.personno = b.personno
    UPDATE OtherTable SET personno = b.primaryid
    FROM OtherTable a INNER JOIN
    (SELECT personno, status, primaryid FROM PEOPLE WHERE status = 'Duplicate') b
    ON a.personno = b.personno
    NOTE: Please take backup before applying the query. This is not tested.
    Regards, RSingh

  • Update Profit Center Field in CO Line item tables

    Hi,
    We are working on ECC6.0 NewGL with Real-time CO-FI integration for Cross Company Code and Cross Pofit Center.
    For those CO internal documents (like activity confirmation at production order) where there is no cross company code or cross profit center postings, no FI document is generated and hence table FAGLFLEXA is not updated. So, we wanted to take data from CO table COEP / COVP for these internal CO documents. However, there is no Profit Center field in CO line item tables COEP / COVP. We don't want to refer to Object Number (OBJNR) of COEP / COVP tables and take profit center from master table of cost centers, IOs etc..,as Profit center in the cost center, IO masters may get changed latter.
    I tried to generate a new report through report painter from structure CCSS, but Profit center is not defined as Charactericts there. Hence of no use.
    Can we append Profit Center field in CO line item tables COEP / COVP and update tatabase at the time of posting? Is there any risk?
    Please suggest any other alternative...
    Thanks,
    Bijay

    Hi,
    As per the standard process we can't derive PC from CO-internal Object...as per my knowledge.
    Better you can derive from IO-CC master PC ....if your question that it will change frequently then -no control can make.
    Regd,
    Kha

Maybe you are looking for

  • Network Security Requirement : Confidential - Not Enforced

    I am having a perplexing problem with the network security requirement feature in SJSAS 8 Update 1. In deploytool, under my WAR, in the security tab, for my only SecurityConstraint, I set the Network Security Requirement to CONFIDENTIAL. This should

  • DVI video switch for MB Pro

    I would like to watch movies and Netflix that a stream on my computer to my regular TV instead of my monitor. I was wondering if a product existed that allowed me to come out of the Computer (DVI) into a splitter or switch of some sort and then out t

  • Pdf output problem in ALV Block Display

    Hi , I have z custom report of ALV BLOCK LIST DISPLAY which creates Spool using ABAP submit statement and then this spool is feed to FM CONVERT_ABAPSPOOLJOB_2_PDF to create PDF file . PDF file generates but output is coming on two pages. I want to di

  • IPad and iPhone can't connect to my wifi network

    10/1/13 - Last week updrade my software on my Imac and set up ICloud - could be unrelated to my problem. 1. My iMac and Apple are connect to my Belkin wifi system okay. 2. My two iphones and Ipad cant access my wifi - 'Unable to join network message'

  • Searching metadata added in a Custom Panel

    Hello, I have created a Custom Panel. Only problem is that when I try to do a search through the File Browser, it does not seem to search any of the data I entered into the custom fields. Any thoughts? thanks! -Alicia