ADF: coloring the complete header section of table

Hi Everyone,
im using Jdev 11G.
I have created ADF Read only table on the page.
The table cosists of 15 columns.
To color the column heading and to make it bold i usesd the below script in the source of my page:
<f:facet name="header">
<f:verbatim>
<table cellspacing="0" cellpadding="0"
border="0" width="100%"
style="background-color:#CPD8A1; width:100.0%; height:inherit;">
<tr>
<td width="100%" style="font-weight:bold;">Name </td>
</tr>
</table>
</f:verbatim>
</f:facet>
Now the problem is:
one of the column in my table is: "Customer's current residential address".
Now when i redused the space for this column the heading splited to two parts one on the top of other.
so the height of the header section for the table has increased so the background color is coming only for text not for the complete header part.
For suppose the first column is SNO then the background color is for only till SNO but the header height has increased so the remaining space it is coming hasbackgraound white.
Now i want the same background color for the complete header section without any white color.
I think im clear with my requirement...
Any ideas wil be really helpful.
Thank you.

One more hint, Oracle ADF has a skin editor which greatly helps you with your task. Depending on you JDev version you cna use the build in version (11.1.2.x) or use the stand alone version which you can donwload from http://www.oracle.com/technetwork/developer-tools/adf/downloads/index.html (bottom of the page and make sure you read the instructions+).
Timo

Similar Messages

  • How to insert a button on the column header of a table in webdynpro java

    Hi
    Can anyone tell me how to insert a button on the column header of a table in webdynpro java?
    regards
    sunit

    Hi sunit,
    Instead of adding button in the column header , in the column
    add a fixed top cell.
        right click on the column
        Insert FixedTopCell
        Right click on the fixedTopCell
        insert Editor.
       select button.
    then button will be only in the top most row.
    Hope it will satisfy ur requirement
    Regards
    Smitha

  • How to delete the complete contents of database table ? should be empty !!

    Hi Guys,
    I have requirement where i have delete the contents of database table..i have make it empty (no records at all) and then i have to fill it with the records from the excel sheet.
    I can upload data from the excel sheet.
    Please tell me how to delete the complete contents of the database table ??
    Regards
    Rahul

    hi ,
    just write like this,
    delete from <database table>.
    commit work.
    sample code, here edpar is database table.
    delete from edpar." FROM TABLE g_tab_delete.
      call function 'DB_COMMIT'.
      loop at g_tab_edpar into g_wa_edpar.
        insert into edpar values g_wa_edpar.
        if sy-subrc  eq 0.
          move-corresponding g_wa_edpar to g_wa_edpar1.
          append g_wa_edpar1 to g_tab_edpar1.
        else.
          move-corresponding g_wa_edpar to g_wa_edpar2.
          append g_wa_edpar2 to g_tab_edpar2.
        endif.
      endloop.
    that's all it works.
    reward points if helpful.
    regards,
    seshu.

  • Suppress the Page Header section on a specific Section

    Hello,
    I have a single page word document I want to append to the end of a report I have, so I placed it in Report Footer b. The word document fits perfectly on a single page without any header. I tried simply supressing the Page Header on the last page but because of the length of the the word document it gets cut in half, so the 2nd to last page includes a header and forces the word document onto 2 pages (one with a header and one without). I tried supressing the Page header the last and 2nd to last page, but that results in the printing of an extra page as the word document without a header only takes up one page.
    Is there some way to supress a section based on what section is currently printing ie.
    WhilePrintingRecords;
    Section "Report Footer b"
    I am open to any suggestions on how to simply add a report footer section without a page header.
    Thanks

    Unfortunately that also suppresses on the 1st report footer section (RFa)
    I tried adding an additonal conditon
    OnLastRecord AND Pagenumber >= TotalPageCount - 1
    However, this results in the addition of an extra blank page, which changes the page count to 1+ what it should be. This may confuse some users.
    Can I specify a specific record? How would I go about doing that?

  • Show DFF in the Notification Header Section

    Hi,
    I was able to extend the Requisition Lines RN and display line level DFF attributes under Requisition Lines section of approval notification. This region is simplified JRAD and product specific, hence I could find the VO and change the query to display custom attributes.
    Now, the users want custom DFF Header Attributes under the Header Section of Notification, along with Description, Requisiton Total and Estimated Tax.
    Anybody extended Header section and displayed DFF attributes? These are 'Message Attributes' and I can see them from Workflow Builder. But I'm not able to find how the values are generated? How to display DFF values in the Header Section? If I define, new Message Attribute and somehow assign values in the workflow procedures, how would they display in the Nortificaiton Header as this is OA page.
    Your inputs are really helpful.
    Thanks,
    Ram

    http://winrichman.blogspot.com/

  • Change the HTML header section of the response ?

    Dear All
    I have a issue regarding running WDA on a very small screen (240x320).
    In IE the application is very small and I need to zoom every time to see it.
    I know that the command i HTML like this would do the trick (if this i placed i the head section)
    meta name="MobileOptimized" content="width"`
    meta name="viewport" content="width=240, height=320"`
    But what can I do so that this "commands" will be passed on to the html response of my WDA application ?
    Please help me
    Best regards
    Lars Bregnedal

    You are not allowed access to the HTML payload or headers in Web Dynpro.  Web Dynpro represents a closed rendering environment.  Nor does Web Dynpro ABAP support mobile devices/browsers.

  • How to get the complete definition of a table using SQL?

    How to get the complete definition code of a table using SQL?

    Something like this ?
    SQL> set long 10000
    SQL> set pages 200
    SQL> select dbms_metadata.get_ddl('TABLE','EMP') from dual;
    DBMS_METADATA.GET_DDL('TABLE','EMP')
      CREATE TABLE "SCOTT"."EMP"
       (    "EMPNO" NUMBER(4,0),
            "ENAME" VARCHAR2(10),
            "JOB" VARCHAR2(9),
            "MGR" NUMBER(4,0),
            "HIREDATE" DATE,
            "SAL" NUMBER(7,2),
            "COMM" NUMBER(7,2),
            "DEPTNO" NUMBER(2,0),
             CONSTRAINT "PK_EMP" PRIMARY KEY ("EMPNO")
      USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "USERS"  ENABLE,
             CONSTRAINT "FK_DEPTNO" FOREIGN KEY ("DEPTNO")
              REFERENCES "SCOTT"."DEPT" ("DEPTNO") ENABLE
       ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "USERS"
    SQL>Amardeep Sidhu

  • Why is the Rows Fixed in a Table in Smartforms?

    Hi,
    I am new to smartforms. This one particular Smartform has a Table defined in the Main Window. In the “Data Tab” of the Table under the “Loop” heading an internal table is used to pass information to the Table. There is no Loop defined. Only the Table is defined in the Main Window. The funny part is when the SamrtForm is run 15 rows get displayed. The program that populates the SmartForm always sends 15 rows to the SmartForm. I tried to send the actual number of rows, then nothing gets displayed in the SmartForm. It seems that some where in the SmartForm the 15 rows is doing some spooky things. How to solve this?
    Thanks,
    Kishan

    Kishan,
    The TABLE node in SmartForms automatically loops through the table specified inthe "Data" tab. The data passed through the TABLES paramater are defined with reference to Table Types. They have no header line. So in the "Data" tab, you must also define a work area for the TABLE node to loop into.
    That is why in the "Data" tab, you see in the Loop section, a INTO (or ASSIGNING) operand. You need to pass the record into a work area. When you are displaying the data, just like in a normal ABAP program, you use the work area.
    Not sure what you mean by "I tried to send the actual number of rows, then nothing gets displayed in the SmartForm".
    Hope this helps.
    Cheers,
    Pat.

  • What if I want the Report Header on every page?

    Is there a way to tell Report Builder to have the main report header show up on every page in CF Report Builder 9? There doesn't seem to be any property in the property viewer when you select the main header that tells it to do that. The secondary header shows on every page but I can't seem to find anything in that set of properties that is set any different than the main header section is.
    Any help would be appreciated.
    Thanks.

    If you see lots of views but no answers, you can assume that either your question was too difficult or that nobody likes you.

  • Is there a limit to amount of code that can be added to the HTML Header?

    I've got several javascript functions in the HTML Header section of the page attributes. I recently added another function and now receive an HTTP 404 Not Found error at runtime when navigating to the page. When I remove the function the error is gone. I don't think there is anything wrong with the function because even when I copy and rename an existing working function, this error occurs...as if I've exceeded some size limit. Any ideas?

    I now have a better understanding after reading this thread: Javascript as static file or on filesystem?
    As the post indicates, there are essentially two ways of including a .js file:
    1) upload as static file to the workspace or application and refer to it using the #APP_IMAGES# or #WORKSPACE_IMAGES# tag.
    2) put it on the webserver as a file on the filesystem under the images directory and refer to it using the #IMAGE_PREFIX# tag.
    For now (since I don't have permissions to the file server directory) I have created a .js file and uploaded it as a static file in Shared Components. I referenced the file as below, but when I go the page at runtime, none of my functions are being utilized. Is it because the web server is not using this static file yet because of caching? Does it need to be restarted in order to start using the uploaded js file?
    <script type="text/javascript" src="#WORKSPACE_IMAGES#apex_selection_criteria_page.js">
    </script>

  • Drag and drop column header in a table

    Hi all,
    I need to drag the Column header in a table dynamically. When I drag the column
    out of the table, The table should be rearranged accordingly
    NOTE: The output is displayed in the form of XML(XSL).
    Pls help me solve the problem .
    Thanks in advance,
    Ganesh

    You can implement DropTargetListener, DragSourceListener, DragGestureListener like the following:
    public class MyTree extends JTree
                implements DropTargetListener, DragSourceListener, DragGestureListener {
        public void dragEnter (DropTargetDragEvent event) {
            event.acceptDrag (DnDConstants.ACTION_MOVE);
        public void dragExit (DropTargetEvent event) {
            //System.out.println( "dragExit");
        public void dragOver (DropTargetDragEvent event) {
        public void drop (DropTargetDropEvent event) {
            // place your code for action after drop
        public void dropActionChanged ( DropTargetDragEvent event ) {
        public void dragGestureRecognized( DragGestureEvent event) {
        public void dragDropEnd (DragSourceDropEvent event) {  
        public void dragEnter (DragSourceDragEvent event) {
            //System.out.println( " dragEnter");
        public void dragExit (DragSourceEvent event) {
            //System.out.println( "dragExit");
        public void dragOver (DragSourceDragEvent event) {
            //System.out.println( "dragExit");
        public void dropActionChanged ( DragSourceDragEvent event) {
            //System.out.println( "dropActionChanged");
    }Hope this can help.

  • SQL expression field is not displayed on the page header if no records

    Hello
    I'm creating a quite simple report. In this report I've got a SQL expression field which returns a DateTime
    I display this field on the page header section.
    Everything is working fine except when my principal query doesn't return any records my SQL expression field is not displayed. It doesn't seem to be evaluated.
    So, I would display this field even if my Details Section doesn't contains any record.
    I hope you understand what I mean.
    Can someone help me?
    thanks

    Hello,
    I thought about creating a formula but the value I need is stored in a database.
    So i created a simple SQL expression field.
    SELECT CONVERT(DATE,j_1) FROM VW_STD_DATEFIXING
    And this expression doesn't have any dependencies.

  • Exporting WEBI to Excel - Dropping Header Section entirely

    When I am saving a BIR2 WEBI report to Excel it  drops the entire header section and just saves the detail.  Does anyone have any ideas?

    Hi Becko,
    Is this XI R2 or XI 3.x ?
    Also, have you tried exporting the report from different viewers. Different viewer types can be chosen from Preferences page in Infoview.
    Thanks,
    Subhodeep

  • Opportunity Header and Item tables

    I am looking at the keys on the Opportunity Header and Item table which are GUIDs.
    I have the following scenario.
    1. My source table contains the Opportunity Header GUID
    2. My target table requires all the fields from the source table and some Opportunity Header and Item attributes
    I can write WHERE clause logic for my Opportunity Header attributes
    For my Opportunity item attributes I was going to introduce a count - this is not possible with Item GUID unless a part of the GUID is incremental for each line by 1 or there is a maintained field otherwise as part of the Opportunity Item which is a number representation for each line.
    Can someone advise
    Thanks

    Hi,
    In the CRMD_ORDERADM_H table you have the Opportunity GUID as well as the Object ID which is the opportunity id.  In the CRMD_ORDERADM_I table, you have the GUID and also the NUMBER_INT which is the item number.  See if you can use the item number.
    Thanks.

  • How include an extra image in page header section.

    Hi,
    I need to include a new image in the blue header section of the page. There is already one corporate branding image in that header. The requirement is to include one more image in the middle of the header section.
    Any thoughts please?
    Abdul Wahid

    Thanks keerthi,
    Though I already tested this approach. The problem with this option was that its multi linugual and the two languages are English and Arabic and both are written in opposite direction...but image remains one directional..
    smiling..
    In other thread (https://forums.oracle.com/message/11258546#11258546)I could bring two images in header by adding an image child and setting its css properties in controller. However, I want this controller to be available on all the pages so that it can bring the image on all the pages.Thats why I thought to attach the controller to the footer region. But I think new item inclusion using personalization is not working in standard footer.
    Thanks bro..

Maybe you are looking for

  • Error while crawling LOB contents. ( Access denied by Business Data Connectivity. )

    Hi, When I execute Incremental or Full Crawl I get 17000 error and only 1 success. The error is: Error while crawling LOB contents. ( Access denied by Business Data Connectivity. ) I went to Central Admin > Security > Specify Web application Policy >

  • Confirmation CUF field

    Hello Friend We use SRM Server5.5 with classic scenario. We have the following process for GR. 1.     Buyer creates PO in MM. 2.     Vendor request GR in SRM 3.     Buyer approve the requested GR We need additional field for confirmation in SRM. So w

  • Are sequence structures the right approach here?

    Hi everyone, The attached VI shows the endmembers in case structure form of a relatively simple task I need to perform.  It takes a bank of 6 digital outputs and toggles between true and false logic.  Between the endmembers, I need to change the logi

  • Latest Photoshop CC issue

    Fab, all I did was change the drawing mode to basic of Photoshop CC and now I'm getting prompted that I have a trial version?  Or is that a typo and it's just the agreement for them to collect data?

  • 5700Ultra-3-TD128 reports insufficient power

    Hi, I have an MSI MS-6758 ATX motherboard and an MSI fx5700Ultra running on a Hiper HPU-3S525 525w PSU. I have a 17" TFT monitor on the VGA and a 15" TFT running on the DVI port using the supplied VGA/DVI adapter. Whenever I start up, I get an error