11g af|table padding

Hi,
if I set
.AFTableCellPadding:alias {
padding-right: 10px;
data cells work as expected, but header cells remain as they were, resulting in a broken alignment of header and data cells.
(Why does af table renders two html tables, btw???)
How can I properly set padding for af-table?
Thanks

I've just came up with this:
af|table th {
padding-left:12px !important;
af|column::data-cell {
padding-left:10px !important;
Brief testing looks ok. Could be problematic with font scaling. I have no idea why th in the header table has to have a larger number, I came to this numbers with trial and error. Also note !important directive for th: it has explicit style with padding:0, !important overrides it.
Oracle, this should be considered a bug, as it does not behave according to the documentation!

Similar Messages

  • Oracle 11g - External Table/SQL Developer Issue?

    Oracle 11g - External Table/SQL Developer Issue?
    ==============================
    I hope this is the right forum for this issue, if not let me, where to go.
    We are using Oracle 11g (11.2.0.1.0) on (Platform : solaris[tm] oe (64-bit)), Sql Developer 3.0.04
    We are trying to use oracle external table to load text files in .csv format. Here is our data look like.
    ======================
    Date1,date2,Political party,Name, ROLE
    20-Jan-66,22-Nov-69,Democratic,"John ", MMM
    22-Nov-70,20-Jan-71,Democratic,"John Jr.",MMM
    20-Jan-68,9-Aug-70,Republican,"Rick Ford Sr.", MMM
    9-Aug-72,20-Jan-75,Republican,Henry,MMM
    ------ ALL NULL -- record
    20-Jan-80,20-Jan-89,Democratic,"Donald Smith",MMM
    ======================
    Our Expernal table structures is as follows
    CREATE TABLE P_LOAD
    DATE1 VARCHAR2(10),
    DATE2 VARCHAR2(10),
    POL_PRTY VARCHAR2(30),
    P_NAME VARCHAR2(30),
    P_ROLE VARCHAR2(5)
    ORGANIZATION EXTERNAL
    (TYPE ORACLE_LOADER
    DEFAULT DIRECTORY P_EXT_TAB_D
    ACCESS PARAMETERS (
    RECORDS DELIMITED by NEWLINE
    SKIP 1
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' LDRTRIM
    REJECT ROWS WITH ALL NULL FIELDS
    MISSING FIELD VALUES ARE NULL
    DATE1 CHAR (10) Terminated by "," ,
    DATE2 CHAR (10) Terminated by "," ,
    POL_PRTY CHAR (30) Terminated by "," ,
    P_NAME CHAR (30) Terminated by "," OPTIONALLY ENCLOSED BY '"' ,
    P_ROLE CHAR (5) Terminated by ","
    LOCATION ('Input.dat')
    REJECT LIMIT UNLIMITED;
         It created successfully using SQL Developer
    Here is the issue.
    It is not loading the records, where fields are enclosed in '"' (Rec # 2,3,4,7)
    It is loading all NULL value record (Rec # 6)     
    *** If we remove the '"' from input data, it loads all records including all NULL records
    Log file has
    KUP-04021: field formatting error for field P_NAME
    KUP-04036: second enclosing delimiter not found
    KUP-04101: record 2 rejected in file ....
    Our questions
    Why did "REJECT ROWS WITH ALL NULL FIELDS" not working?
    Why did Terminated by "," OPTIONALLY ENCLOSED BY '"' not working?
    Any idea?
    Thanks in helping.

    I don't think this is a SQLDeveloper issue. You will get better answers in the Database - General or perhaps SQL and PL/SQL forums.

  • Oracle 11g - External Table/Remote File Issue?

    Oracle 11g - External Table/Remote File Issue?
    =============================
    I hope this is the right forum for this issue, if not let me, where to go.
    We are using Oracle 11g (11.2.0.1.0) on (Platform : solaris[tm] oe (64-bit)), Sql Developer 3.0.04
    We are not allowed to put files on the CSV file system (Server A), where DB instance is running. We are able place CSV files on another server(Server B), where DB instance is not running.
    We are trying to use oracle external table to load text files in .CSV format.
    How do we create a Directory (Create Directory) on Server A DB to point to File system of Server B?
    Is it feasible?
    Any idea?
    Thanks in helping.

    The Solaris DBA should be able to mount the filesystem for you. Either that or you have to get creative transferring the file like this;
    http://www.linkedin.com/groups/Getting-creative-external-table-preprocessor-140609.S.50474382?qid=ba673ce4-c4bb-40c5-8367-52bd2a2dfc80&trk=group_search_item_list-0-b-ttl&goback=%2Egmp_140609
    Cheers
    David

  • Oracle 11g - External Table Issue SQL - PL/SQL?

    Oracle 11g - External Table Issue?
    =====================
    I hope this is the right forum for this issue, if not let me, where to go.
    We are using Oracle 11g (11.2.0.1.0) on (Platform : solaris[tm] oe (64-bit)), Sql Developer 3.0.04
    We are trying to use oracle external table to load text files in .csv format. Here is our data look like.
    ======================
    Date1,date2,Political party,Name, ROLE
    20-Jan-66,22-Nov-69,Democratic,"John ", MMM
    22-Nov-70,20-Jan-71,Democratic,"John Jr.",MMM
    20-Jan-68,9-Aug-70,Republican,"Rick Ford Sr.", MMM
    9-Aug-72,20-Jan-75,Republican,Henry,MMM
    ALL NULL -- record
    20-Jan-80,20-Jan-89,Democratic,"Donald Smith",MMM
    ======================
    Our Expernal table structures is as follows
    CREATE TABLE P_LOAD
    DATE1 VARCHAR2(10),
    DATE2 VARCHAR2(10),
    POL_PRTY VARCHAR2(30),
    P_NAME VARCHAR2(30),
    P_ROLE VARCHAR2(5)
    ORGANIZATION EXTERNAL
    (TYPE ORACLE_LOADER
    DEFAULT DIRECTORY P_EXT_TAB_D
    ACCESS PARAMETERS (
    RECORDS DELIMITED by NEWLINE
    SKIP 1
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' LDRTRIM
    REJECT ROWS WITH ALL NULL FIELDS
    MISSING FIELD VALUES ARE NULL
    DATE1 CHAR (10) Terminated by "," ,
    DATE2 CHAR (10) Terminated by "," ,
    POL_PRTY CHAR (30) Terminated by "," ,
    P_NAME CHAR (30) Terminated by "," OPTIONALLY ENCLOSED BY '"' ,
    P_ROLE CHAR (5) Terminated by ","
    LOCATION ('Input.dat')
    REJECT LIMIT UNLIMITED;
    It created successfully using SQL Developer
    Here is the issue.
    It is not loading the records, where fields are enclosed in '"' (Rec # 2,3,4,7)
    It is loading all NULL value record (Rec # 6)
    *** If we remove the '"' from input data, it loads all records including all NULL records
    Log file has
    KUP-04021: field formatting error for field P_NAME
    KUP-04036: second enclosing delimiter not found
    KUP-04101: record 2 rejected in file ....
    Our questions
    Why did "REJECT ROWS WITH ALL NULL FIELDS" not working?
    Why did Terminated by "," OPTIONALLY ENCLOSED BY '"' not working?
    Any idea?
    Thanks in helping.
    Edited by: qwe16235 on Jun 11, 2011 11:31 AM

    I'm not sure, but maybe you should get rid of the redundancy that you have in your CREATE TABLE statement.
    This line covers all fields:
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"'
    {code}
    So I would change the field list to:
    {code}
    DATE1 CHAR (10),
    DATE2 CHAR (10),
    POL_PRTY CHAR (30),
    P_NAME CHAR (30),
    P_ROLE CHAR (5)
    {code}
    It worked on my installation.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Oracle 11g - External Table Issue?

    Oracle 11g - External Table Issue?
    =====================
    I hope this is the right forum for this issue, if not let me, where to go.
    We are using Oracle 11g (11.2.0.1.0) on (Platform : solaris[tm] oe (64-bit)), Sql Developer 3.0.04
    We are trying to use oracle external table to load text files in .csv format. Here is our data look like.
    ======================
    Date1,date2,Political party,Name, ROLE
    20-Jan-66,22-Nov-69,Democratic,"John ", MMM
    22-Nov-70,20-Jan-71,Democratic,"John Jr.",MMM
    20-Jan-68,9-Aug-70,Republican,"Rick Ford Sr.", MMM
    9-Aug-72,20-Jan-75,Republican,Henry,MMM
    ------ ALL NULL -- record
    20-Jan-80,20-Jan-89,Democratic,"Donald Smith",MMM
    ======================
    Our Expernal table structures is as follows
    CREATE TABLE P_LOAD
    DATE1 VARCHAR2(10),
    DATE2 VARCHAR2(10),
    POL_PRTY VARCHAR2(30),
    P_NAME VARCHAR2(30),
    P_ROLE VARCHAR2(5)
    ORGANIZATION EXTERNAL
    (TYPE ORACLE_LOADER
    DEFAULT DIRECTORY P_EXT_TAB_D
    ACCESS PARAMETERS (
    RECORDS DELIMITED by NEWLINE
    SKIP 1
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' LDRTRIM
    REJECT ROWS WITH ALL NULL FIELDS
    MISSING FIELD VALUES ARE NULL
    DATE1 CHAR (10) Terminated by "," ,
    DATE2 CHAR (10) Terminated by "," ,
    POL_PRTY CHAR (30) Terminated by "," ,
    P_NAME CHAR (30) Terminated by "," OPTIONALLY ENCLOSED BY '"' ,
    P_ROLE CHAR (5) Terminated by ","
    LOCATION ('Input.dat')
    REJECT LIMIT UNLIMITED;
         It created successfully using SQL Developer
    Here is the issue.
    It is not loading the records, where fields are enclosed in '"' (Rec # 2,3,4,7)
    It is loading all NULL value record (Rec # 6)     
    *** If we remove the '"' from input data, it loads all records including all NULL records
    Log file has
    KUP-04021: field formatting error for field P_NAME
    KUP-04036: second enclosing delimiter not found
    KUP-04101: record 2 rejected in file ....
    Our questions
    Why did "REJECT ROWS WITH ALL NULL FIELDS" not working?
    Why did Terminated by "," OPTIONALLY ENCLOSED BY '"' not working?
    Any idea?
    Thanks in helping.
    Edited by: qwe16235 on Jun 10, 2011 2:16 PM

    The following worked for me:
    drop table p_load;
    CREATE TABLE P_LOAD
    DATE1 VARCHAR2(10),
    DATE2 VARCHAR2(10),
    POL_PRTY VARCHAR2(30),
    P_NAME VARCHAR2(30),
    P_ROLE VARCHAR2(5)
    ORGANIZATION EXTERNAL
    (TYPE ORACLE_LOADER
    DEFAULT DIRECTORY scott_def_dir1
    ACCESS PARAMETERS (
    RECORDS DELIMITED by NEWLINE
    badfile scott_def_dir2:'p_load_%a_%p.bad'
    logfile scott_def_dir2:'p_load_%a_%p.log'
    SKIP 1
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' LDRTRIM
    MISSING FIELD VALUES ARE NULL
    REJECT ROWS WITH ALL NULL FIELDS
    DATE1 CHAR (10) Terminated by "," ,
    DATE2 CHAR (10) Terminated by "," ,
    POL_PRTY CHAR (30) Terminated by "," ,
    P_NAME CHAR (30) Terminated by "," OPTIONALLY ENCLOSED BY '"' ,
    P_ROLE CHAR (5) Terminated by ","
    LOCATION ('Input.dat')
    REJECT LIMIT UNLIMITED;
    Note that I had to interchange the two lines:
    MISSING FIELD VALUES ARE NULL
    REJECT ROWS WITH ALL NULL FIELDS
    Just to get the access parameters to parse correctly.
    I added two empty lines, one in the middle and one at the end - both were rejected.
    In the log file, you will see the rejectiions:
    $ cat p_load_000_9219.log
    LOG file opened at 07/08/11 19:47:23
    Field Definitions for table P_LOAD
    Record format DELIMITED BY NEWLINE
    Data in file has same endianness as the platform
    Reject rows with all null fields
    Fields in Data Source:
    DATE1 CHAR (10)
    Terminated by ","
    Enclosed by """ and """
    Trim whitespace same as SQL Loader
    DATE2 CHAR (10)
    Terminated by ","
    Enclosed by """ and """
    Trim whitespace same as SQL Loader
    POL_PRTY CHAR (30)
    Terminated by ","
    Enclosed by """ and """
    Trim whitespace same as SQL Loader
    P_NAME CHAR (30)
    Terminated by ","
    Enclosed by """ and """
    Trim whitespace same as SQL Loader
    P_ROLE CHAR (5)
    Terminated by ","
    Enclosed by """ and """
    Trim whitespace same as SQL Loader
    KUP-04073: record ignored because all referenced fields are null for a record
    KUP-04073: record ignored because all referenced fields are null for a record
    Input Data:
    Date1,date2,Political party,Name, ROLE
    20-Jan-66,22-Nov-69,Democratic,"John ", MMM
    22-Nov-70,20-Jan-71,Democratic,"John Jr.",MMM
    20-Jan-68,9-Aug-70,Republican,"Rick Ford Sr.", MMM
    9-Aug-72,20-Jan-75,Republican,Henry,MMM
    4-Aug-70,20-Jan-75,Independent
    Result:
    SQL> select * from p_load;
    DATE1 DATE2 POL_PRTY P_NAME P_ROL
    20-Jan-66 22-Nov-69 Democratic John MMM
    22-Nov-70 20-Jan-71 Democratic John Jr. MMM
    20-Jan-68 9-Aug-70 Republican Rick Ford Sr. MMM
    9-Aug-72 20-Jan-75 Republican Henry MMM
    Regards,
    - Allen

  • 11g Physical Table Properties: "Parallel" misses "no selection"

    Hi,
    in 4.0.0.833 the generated SQL for a table has no "NOPARALLEL" clause, if you select "NO" in the 11g Physical Table Properties.
    I think it should be empty/yes/no (like e.g. "logging") and generated the clauses accordingly.
    See parallel_clause in the docs.
    Best regards,
    Blama

    Hi Blama,
    The NOPARALLEL clause is not normally generated as it is the default.
    If you set the "Include default settings in DDL" option in the Data Modeler/DDL Preferences, the NOPARALLEL clause will be generated.
    LOGGING is treated differently as it does not have such a well-defined default.  If the LOGGING or NOLOGGING clause is not specified for a Table, it defaults to the Logging specified for the relevant Tablespace.
    The "empty" option here indicates use the default for the Tablespace.
    Regards,
    David

  • Table padding not giving the desired effect?

    On our page we have a table that we don't want the text to be on the left side so close to the edge. In the past adding padding to the table has worked when using GOLIVE, now that I've switched to Dreamweaver it does not give the spacing like before. So... how can I achieve the same padding effect without making the tables whack, using DW? I assume this could be done through CSS, but am unsure of how to go about it or if I'm even correct?
    The page is here http://174.132.166.66/~gatorboy/auto-restoration/index.html  where it says "Auto restoration" and the text below that we want it to look like this http://www.jefflilly.com/musclecars/ see the spacing between the text and the table where it says "muscle cars"
    Thanks for any help!
    -Shera

    The class name that you have applied to your table td cell should be "tableFrontpage" (see below) NOT "tableFrontpage style1" as it is now.
    <td width="567" height="1001" class="tableFrontpage">
    Make the change as above then add the new css selectors (below) to your css style sheet:
    .tableFrontpage h3 {
    padding: 10px 0px 0px 15px;
    margin: 0;
    .tableFrontpage p {
    padding: 10px 15px 0px 15px;
    margin: 0;

  • OBIEE 11g additional table in the generated sql

    Hi gurus,
    In OBIEE 11g RPD, we have a fact table whose source table is consisted by table A, B, C. Table A joins to table C while table B joins to tables C. And in the content tab, table C is used to filter out some records . If we select a column of A(The aggregation rule of this column is SUM) in the answers only, then table A, B, C are in the generated sql. If we remove the aggregation rule of this column, then there're only table A, C in the generated sql. We're wondering why this happened, but can't figure out.
    In this case, the relationship between table B and C is many to one. So additional table B in the generated sql may cause wrong sum. And we need the aggregation rule to sum the number. On the other hand, we can't remove the join between table B and C, since other reports need the join.
    Could anyone please provide a solution to remove the additional table B in the generated sql?
    Thanks & regards!
    shell

    Are you using in one report data from tables A, B, C at the same time? If not:
    1) Try separating the logical schema by:
    - Create an alias table for A and B in the physical layer. Then join these 2 tables. No create another Alias table for B (with a slightly different name) and one Alias table for C. Join these 2 tables (B+ and C)
    - Then put everything in your BMM and presentation layer.
    - Test your results. Take into account that if you are working with data in tables A and B you have to use the "fact table" B but if you use data in table C, use instead fact table from table B+.
    Your logical schema would be like A-->B B+-->C
    J.

  • 11g - pivot table bug?

    hi, experts,
    I have run the utility to migrate 10g dashboard to 11g.
    after the migration, I found that there is problem in a pivot table report,
    the report contains 3 columns:
    brand , subbrand, quantity
    brand and subbrand are dimension
    quantity is fact.
    when brand and subbrand are placed in ROWS, quantity in MEASURES, Measure Labels in Columns, the pivot table gives correct result.
    however, when brand is placed in ROWS, quantity in MEASURES, subbrand and Measure Labels in Columns,
    the pivot table gives incorrect result,
    some rows are duplicated.
    how to solve?

    Hi,
    Yes, we too faced this issue in 1.5 (seems a bug), but ultimately we had to make the application work for the column heading.
    Use left and Right Indent accordingly to make the text appear to your requirement. We specified left indent 20 for our reports for making it centered, so you can try a value which will align for your requirement.
    And thus meeting the requirement :)
    Hope this answered.
    Regards
    MuRam
    Edited by: MuRam on Jun 1, 2012 7:04 AM

  • 11g Pivot Table Prompt Totals

    I've created a pivot table in which I have two columns listed in the Pivot Table Prompts area (formerly known as the pages area in 10g).
    When editing the pivot table, the Layout section shows a summation icon beside the words Pivot Table Prompts. I've clicked that icon, and selected before.
    The dropdown list for the first-listed (leftmost) column in the Pivot Table Prompts now shows an entry of All Values above the detail values, as it should.
    However, the dropdown list for the other column does NOT have an All Values entry.
    Furthermore, selecting the All Values entry for the first column HIDES the dropdown list for the second column entirely, and the pivot table shows a grand total of all values for the second column.
    This makes no sense. I want to see All Values for my first column, and still be able to select individual values for my second column, or perhaps select an All Values for the second column.
    There is zero documentation on this feature, as the OBIEE 11g User Guide does not contain the string Pivot Table Prompts.
    Has this been reported as a bug?

    Well, I'll be darned. You are exactly right. 10g behaves exactly the same way when using two page dropdowns.
    So yes, it was inherited from 10g. But then again, I inherited high blood pressure from my parents. That doesn't make it a desirable trait.
    And there IS an obvious workaround: just create an ALL VALUES calculated member for each of those dimensions.
    Thanks for the reply. Credit given for the correct answer.

  • Oracle Database Express Edition 11g Database; Tables bigger than 11 GB

    Dear all,
    is it possible to make a part of big Tables (14 GB) visible in Oracle Database Express Edition 11g Database?
    If yes, it would be nice to get the correct development.
    Thanks in advance.
    Regards
    Peter

    972703 wrote:
    Does impdp application have any parameters for it See documentation library for regular editions, the Database Utilities manual covers Data Pump import and export tools
    or maybe there is another software which can import only specified number of rows/bytes? Then you would need to export according to "another software" rules/format as well.
    As the table is not that big, one could copy the table, delete selected rows large enough, and export from that table copy instead.
    If it's not possible, could you please be so kind and provide the full test-version of Oracle database without 11GB limitation?Oracle provides, under the OTN downloads license, SE and EE editions. See http://www.oracle.com/technetwork/indexes/downloads/index.html

  • 11g child table update locking

    Hi,
    I'm posting this question after searching on multiple places and trying to understand 11g locking mechanism.
    I've a table TXN1 transaction and has FKs to 3 different tables Account, customer, country and currency. ALL FKs are indexed (bitmap). I am updating TXN1 of amount column about 10,000 rows. (SID 1) As expected, it has taken lock type 3 SX on TXN1. But it has taken on lock type 4 (share) on Account, customer and country. Committing every 10k rows.
    At the same time sid 2 is inserting into another TXN2 table which has FK to the same dimensions account, customer and currency. Only FK on ac_id is bitmap indexed. The inserts have taken SX lock(type 3) on tXN2 table (expected). But it is trying to take SX type 3 lock on account, customer, currency tables. typ3 lock taken on CCY but waiting on CST. But It is blocked by sid 1. It has resulted into Enque-TM contention and resulted into anywhere 60-300 secs wait time..
    I understand update/delete in parent table results into locking of SX of child tables and need the FKs to be indexed to avoid etc. I didn't understand the following and appreciate if someone can help me.
    1. Why is SID1 taking shared lock on the parent tables Account,customer,country and currency tables? The update statement is not updating any of those FK columns nor referring them in where clause(if it matters!). Is it to ensure that the parent rows are not deleted?
    2. Why is SID2 taking SX lock on the dimension tables? Why is it not taking RS lock type 2 on parent rows? Why is SID1 taking shared lock type 4, but not 2?
    Thanks
    Ram
    Edited by: rkuppa on May 24, 2013 2:24 PM
    Edited by: rkuppa on May 24, 2013 2:25 PM
    Edited by: rkuppa on May 24, 2013 2:26 PM
    Edited by: rkuppa on May 24, 2013 2:33 PM
    Edited by: rkuppa on May 26, 2013 4:49 PM

    Table TxN(ac_id, cs_id, amt, amt_dollar), PK on ac_id,cs_id. constraint FK on ac_id to Table AC_DIM (ac_id, acctname), FK on cs_id to Table CST_DIM(cs_id, custname). These FK are bitmap indexed.
    Update qry: update TXN set amt_dollar =amt/1.1 where rownum<1000; commit; (sid 308)
    Table TXN2(ac_id, cs_id,ccy_id, amt, amt_dollar), PK on ac_id,cs_id,ccy_id. constraint FK on ac_id to Table AC_DIM (ac_id, acctname), FK on cs_id to Table CST_DIM(cs_id, custname), CCY_DIM(ccy_id). Only ac_id FK in the TXN2 table is indexed to bitmap.
    At the same time, another transaction is inserting into TXN2 1000 rows. (sid 127)
    SELECT l.sid, s.blocking_session blocker, SUBSTR(s.event,1,20),
    l.type, l.lmode, l.request, o.object_name, o.object_type
    FROM v$lock l, dba_objects o, v$session s
    WHERE UPPER(s.username) =  'MY_USER'
    AND l.id1 = o.object_id (+)
    AND l.sid = s.sid
    ORDER BY sid, type;
    SID     BLOCKER     SUBSTR(S.EVENT,1,20)     TYPE     LMODE     REQUEST     OBJECT_NAME     OBJECT_TYPE
    308          db file scattered re     AE     4     0     ORA$BASE     EDITION
    308          db file scattered re     TM     4     0     AC_DIM             TABLE
    308          db file scattered re     TM     4     0     CST_DIM             TABLE
    308          db file scattered re     TM     3     0     TXN             TABLE
    127     308     enq: TM - contention     AE     4     0     ORA$BASE     EDITION
    127     308     enq: TM - contention     TM     3     0     CCY_DIM             TABLE
    127     308     enq: TM - contention     TM     0     3     CST_DIM             TABLE
    *<< I don't see type 3 lock on AC_DIM for sid 127>>*
    SELECT
      S.SID,
      S.PROGRAM,
      S.SQL_HASH_VALUE,
      L.REQUEST,
      L.ID1,
      L.ID2,
      L.LMODE,
      L.TYPE,
      L.BLOCK
    FROM
      V$LOCK L,
      V$SESSION S
    WHERE
      (L.ID1, L.ID2, L.TYPE) IN
      (SELECT
        ID1,
        ID2,
        TYPE
      FROM
        V$LOCK
      WHERE
        REQUEST > 0)
      AND L.SID=S.SID;
    SID     PROGRAM                                      SQL_HASH_VALU REQUEST     ID1     ID2     LMODE     TYPE     BLOCK
    308     SQL Developer                            1733825831     0     509281     0     4     TM     1
    127     db-load.impl.n64@aittsmwp2 (TNS V1-V3)    4097376515     3     509281     0     0     TM     0Edited by: rkuppa on May 24, 2013 6:58 PM
    Edited by: rkuppa on May 24, 2013 7:12 PM
    Edited by: rkuppa on May 24, 2013 7:16 PM
    Edited by: rkuppa on May 26, 2013 4:42 PM
    Edited by: rkuppa on May 26, 2013 4:47 PM
    Edited by: rkuppa on May 26, 2013 4:55 PM

  • 11g sort table programmatically

    Hi, I am using a table in 11g. In the vo query i added 'order by date desc' - which should display the table rows sorted with latest date. To insert new row i am using a popup in which the table also displayed. On click of a button i need to open the popup and add a new row using input text box then save - this is not db commit. The new row will be available only in the Iterator, VO & not in DB. So when ever i click the button in the popup the table has to be displayed with sorting of latest updated row at the top of the table. But i am not able to sort it with latest date. I used iterator refresh, executeQuery, sortCriteria but not working. Kindly help me to solve this.
    Thanks,
    Sankari K

    Hi Sankari,
    I've been having the same issue when i try to sort the af table component using its SortCriteria whenever i want to also include cache data in the sorting.
    The workaround i did for this (which you can place either in ViewObject Class, AppModule Class or Bean) is get the viewobject and set its sortBy method.
    This article helped me with the issue:
    [In-Memory Sorting|http://database.in2p3.fr/doc/oracle/Oracle_Application_Server_10_Release_3/web.1013/b25947/bcadvvo005.htm]
    The only problem would be that the sort functionality in the af table component will not react to this, so you'll have to implement your own action buttons to apply the sorting.

  • How to move excluded items into Measures in OBIEE 11g Pivot Table

    Hi All,
    Need your help. Previously I have about 25 facts in my pivot table as rows. Now I need to add about 10 more. Adding new criteria only put the items into Excluded section. How can I move all these new items at once to the end of the existing facts? What I can do now is moving them one by one, and in the middle of existing facts, then move it again, because I can point my cursor to the end of them directly.
    Thanks a lot,
    Gajah.

    I've tried to drag the fact heading, but I can't point my cursor to the end of existing list of facts (unfortunately they are all in the same fact group name). Do you have any suggestion on how to put the new facts at the end of the list?
    Thanks.

  • ADF 11g Input Table createinsert operation - can I manipulate?

    Hi,
    I am an ADF newbie, and trying to figure out how to best approach this, any help appreciated.
    I am using JDeveloper 11.1.1.3.0 with ADF BC.
    I want to create/delete from a table from UI. I followed 23.3 Creating an Editable Table and 23.4 Creating an Input Table from Fusion Dev Guide.
    Basically, I:
    - Created an entity object, call it xxEO
    - Created a view object based on this entity object, call it xxEOVO
    - Dropped xxEOVO from data control palette as ADF table, and added createinsert, delete, commit operations to toolbar.
    This works great.
    But now I am trying to prepopulate one of the fields on every new row creation when createinsert is clicked. Basically, I dont want the user to be able to change this value, i want it to just show a read-only value in the new row when they hit the createinsert button.
    Is there an easy way to do this? What are my options? I dont see any generated code where I can plug my value in..
    Thanks!
    Kalp

    user514831 wrote:
    Thank you for your reply.
    The existing ActionListener JDeveloper created for me when I dropped CreateInsert as a button is : #{bindings.CreateInsert.execute}.
    So is it that if I want to do anything more complicated than showing all table columns and updating all table columns, I cannot use this and have to replace by custom code like the one you have provided?
    Yes!
    I guess, you want to make only few columns that you have defaulted to be read only & not the entire row.
    If so, make these columns as readOnly
    <af:column sortProperty="Jan" sortable="false"
    headerText="#{bindings.Results.hints.Jan.label}" id="c2">
    <af:inputText value="#{row.bindings.Jan.inputValue}"
    label="#{bindings.Results.hints.Jan.label}"
    readOnly="true"
    required="#{bindings.Results.hints.Jan.mandatory}"
    columns="#{bindings.Results.hints.Jan.displayWidth}"
    maximumLength="#{bindings.Results.hints.Jan.precision}"
    shortDesc="#{bindings.Results.hints.Jan.tooltip}"
    id="it3">
    <f:validator binding="#{row.bindings.Jan.validator}"/>
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.Results.hints.Jan.format}"/>
    </af:inputText>
    </af:column>
    Thanks,
    Navaneeth

Maybe you are looking for

  • Problems searching with INPATH

    hi, i want to search in a table by INPATH where i saved my xml files as blobs. searching with the contains query operator works fine, but the problem is, that i don't get any results if i try to search using INPATH in the contains query. do i need sp

  • Where is my serial number for InDesign CC?

    I paid for the CC membership and never got an email with the subscription number! This is absolutely the worst!!!

  • 0MAT_PLANT load is running from a ling time

    Hi All, I have triggered a 0MAT_PLANT info package. It is running from last 2 hours with same number of records. No of records is not increasing. Please let me know the reason and solution. Thanks in advance. Ashwin

  • Migration and upgarde

    What is the difference between a migration and upgrade in Oracle? Please explain

  • My ipod has been took . how to track it

    somebody stole my ipod , && i would like to track it . how can i ?