Tables not having PK.

Guys,
I'm looking for a SQL query to get the list of all tables that doesn't have Primary Key.
Btw, I'm not able to select from "information_schema" dictionary view. Could someone help me with an alternate qery please?
-Bugs

Hi, Bugs,
Bugs wrote:
Guys,
I'm looking for a SQL query to get the list of all tables that doesn't have Primary Key.Here's one way:
ELECT     owner, table_name
FROM     all_tables
    MINUS
SELECT     owner, table_name
FROM     all_constraints
WHERE     constraint_type     = 'P'
;The first half of this (the part before the MINUS) is all the tables you have privileges on.
The second half (after the MINUS) is all the tables with a primary key.
If you have privileges on dba_tables and dba_constraints, you can use them instead of all_tables and all_constraints.
Btw, I'm not able to select from "information_schema" dictionary view. Could someone help me with an alternate qery please?What is information_schema?

Similar Messages

  • Joining Tables not having any Common Fields

    Dear Gurus,
    I know how to join the tables having common fields through T-CODE: SQVI,  but do not know how to join the tables not having any common fields.
    kindly provide me the step by step procedure to handle this, so that I can generate the Reports.
    Wishes,
    Abhishek

    Check following link. I feel it might of some assistance for you:
    SAP Query - illegal Join condition
    Regards
    J Prakash

  • Configure CDC on tables not having Primary Key

    Hi,
    On one of our client majority of tables in their huge database are not having primary key. While starting journaling ODI-15021 error is being thrown. Is there any way to configure CDC on those tables. Even we are not in a situation to create logical primary key on ODI level. Client is asking for an oracle document which talks about such restriction. Kindly help me out. I've gone through documentation as well metalink. I'm not able to find any information regarding it.
    Regards,
    Shashi Ranjan

    Hi,
    Thanks a lot for your prompt reply. Let me describe my situation bit more clearer. I've configured ODI CDC on one schema which contains 1200 tables. I tried to configure primary key on each data store in source model but being an integrator, I'm not the right person to decide primary key on tables so, I reverted back to client to create primary key on tables or suggest what should be primary key. Now, client is asking for an oracle document stating that primary key is mandatory. They have such 20 schema with similar huge number of tables. I've gone through various documents and meta-links but no luck. Need urgent help on it.
    Regards,
    Shashi Ranjan

  • Tables not having joins

    hi
    i have the following two queries with me
    SELECT   SUM (  (  (NVL (j.opn_value, 0) * NVL (j.item_price, 0))
                     - (  NVL (j.opn_value, 0)
                        * NVL (j.item_price, 0)
                        * (NVL (j.dis_per, 0) / 100)
                  - (  (NVL (e.ser_dis_per, 0) / 100)
                     * NVL ((  (NVL (j.opn_value, 0) * NVL (j.item_price, 0))
                             - (  NVL (j.opn_value, 0)
                                * NVL (j.item_price, 0)
                                * (NVL (j.dis_per, 0) / 100)
                            0
                  - NVL (e.ser_dis_value, 0)
                 ) netvalue
        FROM xxnp_opn_joblog_001 e, xxnp_opn_joblog_res_005 j
       WHERE e.opn_job_desc = 'K/D/HH35/BG739/958/D/0211/1'
         AND e.MANUAL = 'N'
         AND e.opn_joblog_001_id = j.opn_joblog_001_id
    GROUP BY e.opn_job_desc
    /* Formatted on 2011/09/22 11:51 (Formatter Plus v4.8.0) */
    SELECT SUM (h.slurry_vol_actual) totalsum
      FROM xxnp_opn_joblog_slurry_003 h, xxnp_opn_joblog_001 j
    WHERE h.job_number = 'K/D/HH35/BG739/958/D/0211/1'
       AND h.opn_joblog_001_id = j.opn_joblog_001_idi require Netvalue/totalsum
    but i am not able to as the tables xxnp_opn_joblog_slurry_003 h and xxnp_opn_joblog_res_005 j have no common columns
    kindly guide as to how to obtain this
    thanking you

    The result will most certanily be different since the ID's for opn_joblog_001_id that exist in the "h" table when joined to "e" and "j" will either increase or decrease the result.
    What happens when you join on the ID as follows?
    select sum
                     (nvl (j.opn_value, 0) * nvl (j.item_price, 0))
                   - (nvl (j.opn_value, 0) * nvl (j.item_price, 0) * (nvl (j.dis_per, 0) / 100))
                     (nvl (e.ser_dis_per, 0) / 100) * nvl (
                                                            (  (nvl (j.opn_value, 0) * nvl (j.item_price, 0))
                                                             - (nvl (j.opn_value, 0) * nvl (j.item_price, 0) * (nvl (j.dis_per, 0) / 100))
                                                           ,0
                  -  nvl (e.ser_dis_value, 0)
            sum(h.slurry_vol_actual) as Net_Over_Total_Value
    from 
             xxnp_opn_joblog_001        e
            ,xxnp_opn_joblog_res_005    j
            ,xxnp_opn_joblog_slurry_003 h
    where
             e.opn_job_desc          = 'K/D/HH35/BG739/958/D/0211/1'
    and      e.MANUAL                = 'N'
    and      e.opn_joblog_001_id     = j.opn_joblog_001_id
    and      j.opn_joblog_001_id     = h.opn_joblog_001_id
    and      e.opn_job_desc          = h.job_number
    group by
             e.opn_job_desc

  • DBAdapter Creating Relations between tables not having PF-FK relationship

    I am writing a process which has to pull data from three tables.
    SELLER_HEADER (inv_Num is Primary Key)
    SELLER_LINE_ITEMS ( no PK but has inv_num and line_number which together are unique)
    BUYER_LINE_ITEMS (no PK but has cust_num, cust_PO_num and line_num that are unique)
    I want to create a DB Adapter which would take in an invoice number, customerNumber and customerPONumber
    and fetch me data whose XSD is roughly in this structure
    One Node of Type Header
    ---- Column 1 of the Header Table
    ---- Column 2 of the Header Table
    ---- Column 3 of the Header Table
    ... and so on
    Multiple Nodes of
    ---- Column 1 of the Seller Table
    ---- Column 2 of the Seller Table
    ---- Column 3 of the Seller Table
    and
    ---- Column 1 of the Buyer Table
    ---- Column 2 of the Buyer Table
    ---- Column 3 of the Buyer Table
    I tried some combinations and found that if you have a 1:M mapping for Header - Seller Line Item
    and a 1:1 mapping between Seller Line Item and Buyer Line Item then i get the desired XSD
    So, I created a 1:M relation between header and Seller lineItems. However i cannot create a one to one mapping between Seller Line Items and Buyer line items. Nor can i create a 1 :M mapping between Seller Header and Buyer Line Items. That is why the generated XSD shows
    <SomeCollectionName>
    <SellerHeader>
    <BuyerLineItems>
    <SellerLineItems>
    </SomeCollectionName>
    Any pointers for this? How do i make a relation based on the input values to the DBAdapter

    Does the CORE_BUSINESS schema have REFERENCES and SELECT privileges on the table you are trying to reference with the foreign key constraint?

  • How to create entity for the table which is not having the primary key

    Hi,
    Is it possible to create an entity for the table which is not having the primary key.
    I have to write a method in my session bean and that method must use this entity.
    any websites for this.

    If you are talking about processes launched from a JVM (running outside), Process is available.
    If you are talking about processes already running outside of a JVM, you could roll-your-own class to provide similar functionality as Process. This approach would be platform dependent, backed by the platform's I/O scripting and therefore limited to what the platform supports for process manipulation, e.g. Linux/Unix capabilities far exceed Windows.

  • Extended Classic Scenario - SHC: Buffer table not up to date

    Hello all,
    I'm working in SRM_SERVER 550, SAPKIBKT11, and having issues using BACKEND PURCHASING ORGANISATIONS and the Extended Classic Scenario.
    According to SAP note 944918 the following indicator should not be required to be set:
    Supplier Relationship Management>SRM Server>Cross-Application Basic Settings>Activate Extended Classic Scenario --> extended classic scenario active.
    I did set the Backend Purch. Grps Responsible indicator, and I did create organizational units specifically for the backend purch. grps.
    We need to set the main part of all SHCs to ECS, but when I do set the indicator in customizing to "extended classic scenario = active", I get a dump in my web environment: 'buffer table not up to date'.
    What is causing this failure in my SHC?
    I tried to implement BAdI "BBP_EXTLOCALPO_BADI" (method DETERMINE_EXTPO) like described below here: without the line bbp_extpo_gl-bbpexpo = 'X'., I can continue and create the SHCs. Problem is though: all SHCs will get marked as Classic Scenario. So, to make sure the SHCs will always get marked as ECS, I have added this line in the BAdI. Unfortunately this immediately results in the 'buffer table not up to date' error in the SHC itself, as soon as I try to open the details of the new item.
    Hope you help me out here?? It doesn't seem to be related to the BAdI, but somehow the system doesn't allow me to mark SHC items as ECS.
    Thanks & Regards,
    Berend Oosterhoff
    SRM Consultant Accenture Technology Solutions - The Netherlands.
    BAdI BBP_EXTLOCALPO_BADI:
    method IF_EX_BBP_EXTLOCALPO_BADI~DETERMINE_EXTPO.
    data definition----------------------------------------------------*
      DATA:    wa_mattype     TYPE BAPIMATDOA,
               wa_char18      TYPE MATNR,
               attrib_tab     TYPE TABLE OF bbp_attributes,
               wa_attrib_tab  TYPE bbp_attributes,
               wa_value       TYPE om_attrval,
               wa_product_id  TYPE comt_product_id.
        bbp_extpo_gl-bbpexpo = 'X'.
    from here I did the specific selection for the SC, but that's not relevant here.

    Hi Prashant,
    Thanks for your quick reply!
    Note 1085700 is about Short Dumps when creating or changing a contract. I am trying to create a Shopping Cart, without a reference to a contract. BAdI BBP_DOC_CHANGE_BADI is not active in our system.
    Any other thoughts?
    Regards,
    Berend

  • Table not found error while importing table defintion in PI 7.1?

    Hi Guys,
    I am trying to import the table structure from DB2 as an external defintion but i am getting the error table not found.
    There are no connection issues with the DB2 and CC is good. Are there any additional settings i need to perform to import the table?
    any help or suggestions would be really appreciated
    Thanks,
    Srini

    Hi Srinivas,
    I think you want to do JDBC lookup.. you must have created the JDBC receiver communication channel. As your communication channel is correct and still you are getting Table not found error.. Check following steps.
    - Check that your Communication channel is activated and working fine.
    - Check that the ID which you are using in JDBC receiver is having proper authorization to import the table definition.
      Just check with all authorization.
    I think the problem is with insufficient authorization to User ID used on JDBC communication channel.
    Thanks,
    Bhupesh.

  • Mat. for Initial Download: Table not supported by function "C_"

    Hi All,
    We are in SRM 5.0 & ECC 6.0 with Classic scenario. While uploading the MATERIAL through R3AS, we have the "Mat. for Initial Download: Table not supported by function C_" & "No product ID determined for material number ... of logical system" error in SMW01.
    In SMQ2 in SRM, Queue is blocked with "Error in Mapping (Details: transaction SMW01)"
    For your information RFC Users at both the ends have SAP_ALL authorisation. SAP Notes 720819, 420980 & 432339 are implemented.
    Please guide me to resolve this issue.
    Regards
    Ashutosh

    hi,
    How was the issue resolved , i am having the same problem.
    can somebody provide with clue
    regards

  • BSP error when clicking on line item in SUS :Buffer table not up to date

    Hi Experts,
    I'm having a problem in SUS Portal. When i click on a line item of a PO to display the actual line item or see more details, i get a buffer table out of date error. I saw a thread with a similar issue where it says problem resolved but haven't had any luck getting a response from the poster, so I'm putting this question out there to everyone.
    Related Post
    Buffer table not up to date in SUS
    More details on error...
    Exception Class CX_BBP_PD_ABORT
    Error Name 
    Program SAPLBBP_PDH
    Include LBBP_PDHU08
    Line 81 
    Long text Buffer table not up-to-date {}
    Regards,
    JD
    Edited by: julian.k. drummond on Apr 13, 2010 6:46 PM

    Hi Julian,
    Please give the system some time and try again. It should work.
    Thanks
    Hari

  • How can I find out which tables are having DDL locks?

    I can see related information by querying DBA_DDL_LOCKS view, but it doesn't give me the information which tables are having DDL locks.
    Is there a way I can find out which tables are having DDL locks?
    Thanks!

    Here's a long script written back in 2001. Still works:
    BREAK on sid on serial# on username
    COL sid        for 9999
    COL serial#    for 99999
    COL username   for a20
    COL type       for a20    trunc
    COL lmode      for a5     trunc
    COL lrequest   for a4     trunc
    COL detail     for a75    trunc
    SELECT   s.sid
           , s.serial#
           , s.username
           , DECODE(
                  l.TYPE
                -- Long locks
                , 'TM', 'dml/data enq (TM)'
                , 'TX', 'transac enq (TX) '
                , 'UL', 'pls usr lock (UL)'
                -- Short locks
                , 'BL', 'buf hash tbl (BL)'
                , 'CF', 'control file (CF)'
                , 'CI', 'cross inst f (CI)'
                , 'CU', 'cursor bind (CU) '
                , 'DF', 'data file (CF)   '
                , 'DL', 'direct load (DL) '
                , 'DM', 'mount/strtup (DM)'
                , 'DR', 'reco lock (DR)   '
                , 'DX', 'distrib tran (DX)'
                , 'FI', 'sga opn file (FI)'
                , 'FS', 'file set (FS)    '
                , 'IN', 'instance num (IN)'
                , 'IR', 'instce recvr (IR)'
                , 'IS', 'get state (IS)   '
                , 'IV', 'libcache inv (IV)'
                , 'JQ', 'job queue (JQ)   '
                , 'KK', 'log sw kick (KK) '
                , 'LS', 'log switch (LS)  '
                , 'MM', 'mount def (MM)   '
                , 'MR', 'media recvry (MR)'
                , 'PF', 'pwfile enq (PF)  '
                , 'PR', 'process strt (PR)'
                , 'RW', 'row wait (RW)    '
                , 'RT', 'redo thread (RT) '
                , 'SC', 'scn enq (SC)     '
                , 'SM', 'smon lock (SM)   '
                , 'SN', 'seqno instce (SN)'
                , 'SQ', 'seqno enq (SQ)   '
                , 'ST', 'space transc (ST)'
                , 'SV', 'seqno value (SV) '
                , 'TA', 'generic enq (TA) '
                , 'TD', 'dll enq (TD)     '
                , 'TE', 'extend seg (TE)  '
                , 'TS', 'temp segment (TS)'
                , 'TT', 'temp table (TT)  '
                , 'UN', 'user name (UN)   '
                , 'WL', 'write redo (WL)  '
                , 'TYPE = ' || l.TYPE) AS type
           , DECODE(l.lmode, 0, 'none', 1, 'null', 2, 'RS', 3, 'RX', 4, 'S', 5, 'SRX', 6, 'X', TO_CHAR(l.lmode)) A
    S lmode
           , DECODE(l.request, 0, 'none', 1, 'null', 2, 'RS', 3, 'RX', 4, 'S', 5, 'SRX', 6, 'X', TO_CHAR(l.request
    )) AS lrequest
           , DECODE(
                  l.TYPE
                , 'JQ', 'Job #' || j.job || ' (' || j.what || ') owned by: ' || j.username
                , 'MR', DECODE(s.user_type, 'BG', 'DICTIONARY OBJECT', LOWER(obj.owner) || '.' || LOWER(obj.name))
    || ' (' || LOWER(obj.TYPE) || ')'
                , 'RT', 'thread #' || LOWER(l.id1)
                , 'RW', 'file#' || LOWER(SUBSTR(l.id1, 1, 3)) || ', block#' || LOWER(SUBSTR(l.id1, 4, 5)) || ', ro
    w#' || LOWER(l.id2)
                , 'TD', 'object: ' || LOWER(obj.owner) || '.' || LOWER(obj.name) || ' (' || LOWER(obj.TYPE) || ')'
                , 'TM', 'object: ' || LOWER(obj.owner) || '.' || LOWER(obj.name) || ' (' || LOWER(obj.TYPE) || ')'
                , 'TS', DECODE(l.id2, 0, 'enqueue', 'new block allocation')
                , 'TX', DECODE(
                             lo.object_name
                           , NULL, 'rbs #' || TRUNC(l.id1 / 65536) || ', slot #' || LOWER(l.id1)
                           , 'rbs #' || TRUNC(l.id1 / 65536) || ', slot #' || LOWER(l.id1) || ', object: ' || LOWE
    R(lo.object_name))
                , 'UL', 'lock name: ' || la.name || ', expiration date: ' || TO_CHAR(la.expiration, 'DD-MON-RR HH2
    4:MI:SS')
                , 'WL', 'redo log file#' || LOWER(l.id1)
                , 'id1 = ' || l.id1 || ', id2 = ' || l.id2) AS detail
        FROM sys.v_$lock l
           , (SELECT a.sid
                   , a.serial#
                   , NVL(a.username, 'SYS (' || LOWER(b.name) || ')') AS username
                   , DECODE(a.username, NULL, 'BG', 'USER') AS user_type
                FROM sys.v_$session a
                   , sys.v_$bgprocess b
               WHERE a.paddr = b.paddr(+)) s
           , (SELECT o.obj#
                   , u.name AS owner
                   , o.name
                   , DECODE(
                          o.type#
                        , 0, 'NEXT OBJECT'
                        , 1, 'INDEX'
                        , 2, 'TABLE'
                        , 3, 'CLUSTER'
                        , 4, 'VIEW'
                        , 5, 'SYNONYM'
                        , 6, 'SEQUENCE'
                        , 7, 'PROCEDURE'
                        , 8, 'FUNCTION'
                        , 9, 'PACKAGE'
                        , 11, 'PACKAGE BODY'
                        , 12, 'TRIGGER'
                        , 13, 'TYPE'
                        , 14, 'TYPE BODY'
                        , 19, 'TABLE PARTITION'
                        , 20, 'INDEX PARTITION'
                        , 22, 'LIBRARY'
                        , 23, 'DIRECTORY'
                        , 24, 'QUEUE'
                        , 28, 'JAVA SOURCE'
                        , 29, 'JAVA CLASS'
                        , 30, 'JAVA RESOURCE'
                        , 32, 'INDEXTYPE'
                        , 33, 'OPERATOR'
                        , 34, 'TABLE SUBPARTITION'
                        , 35, 'INDEX SUBPARTITION'
                        , 39, 'LOB PARTITION'
                        , 40, 'LOB SUBPARTITION'
                        , 43, 'DIMENSION'
                        , 44, 'CONTEXT'
                        , 47, 'RESOURCE PLAN'
                        , 48, 'CONSUMER GROUP'
                        , 51, 'SUBSCRIPTION'
                        , 52, 'LOCATION'
                        , 'UNDEFINED') AS type
                FROM sys.obj$ o
                   , sys.user$ u
               WHERE o.owner# = u.user#) obj
           , (SELECT vlo.xidusn
                   , vlo.xidslot
                   , vlo.xidsqn
                   , vlo.process
                   , o.owner || '.' || o.object_name AS object_name
                FROM sys.v_$locked_object vlo
                   , sys.dba_objects o
               WHERE vlo.object_id = o.object_id) lo
           , (SELECT job
                   , schema_user AS username
                   , what
                FROM dba_jobs) j
           , sys.dbms_lock_allocated la
       WHERE l.sid = s.sid
         AND l.id1 = obj.obj#(+)
         AND l.id2 = j.job(+)
         AND TRUNC(l.id1 / 65536) = lo.xidusn(+)
         AND LOWER(l.id1) = lo.xidslot(+)
         AND l.id2 = lo.xidsqn(+)
         AND l.id1 = la.lockid(+)
         AND l.TYPE != 'MR'
    UNION ALL
                      /*** LATCH HOLDERS ***/
    SELECT   s.sid
           , s.serial#
           , s.username
           , 'latch'
           , 'X'
           , 'none'
           , h.name || ' addr=' || LOWER(RAWTOHEX(laddr)) AS object
        FROM sys.v_$process p
           , sys.v_$session s
           , sys.v_$latchholder h
       WHERE h.pid = p.pid
         AND p.addr = s.paddr
    UNION ALL
                      /*** LATCH WAITERS ***/
    SELECT   s.sid
           , s.serial#
           , s.username
           , 'latch'
           , 'none'
           , 'X'
           , name || ' latch=' || p.latchwait AS object
        FROM sys.v_$session s
           , sys.v_$process p
           , sys.v_$latch l
       WHERE latchwait IS NOT NULL
         AND p.addr = s.paddr
         AND p.latchwait = l.addr
    ORDER BY sid
           , serial#
           , username
           , 4
           , 5
           , 6
           , 7;

  • Buffer table not up to date in SUS

    Hello All,
    While I am trying to process Purchase order in SUS portal, when i try to confirm the Item, it is giving me error
    "Buffer table not up to date".
    Any idea about this problem?
    Thanks,
    Hetal

    We're having the same problem. Any word on how to resolve. It states also that its a BSP error in that it would not load the BSP page because of the buffer error. I tried using T_Code SWU_OBUF to perform the synchronization process, and still had no luck. Any help would be appeciared.
    JD

  • Buffer Table not up-to-date SUS System

    Hi Experts,
            I am working in classic decoupled scenario, where the RFx is published to SUS system.
    The bidder logs into SUS system and creates Response for RFx. In case of line items more than 10, the system is giving a dump.
    The Background program BBP_BID_INV_BACKGROUND_PROC is started and gives a dump in ST22.
    The job log shows :Buffer table not up-to-date. Below is the detailed ST 22 Error.
    The  exception, which is assigned to class 'CX_BBP_PD_ABORT' was not caught and therefore caused a runtime error. The reason for the exception is: Buffer table not up-to-date
    Information on where terminated
    The termination occurred in ABAP program "SAPLBBP_PDH", in "BBP_PD_ABORT". The main program was "BBP_BID_INV_BACKGROUND_PROC". In the source code, the termination point is in line 81 of (Include) program "LBBP_PDHU08".
    I went through other posts with the same error, but could not get any suitable resolutions. Please do let me know where to check for this.
    Regards,
    Krishna

    We're having the same problem. Any word on how to resolve. It states also that its a BSP error in that it would not load the BSP page because of the buffer error. I tried using T_Code SWU_OBUF to perform the synchronization process, and still had no luck. Any help would be appeciared.
    JD

  • Base table not found

    CF5 Newbie needs help.
    I am trying to create a webpage with a searchable access
    database that displays photos.
    I am getting the message ODBC Error Code = S0002 (Base table
    not found). I have verified my database.
    Maybe there is a problem with one of my initial files. I have
    the search, results and details querry set up am I missing an
    additional file here that would cause this problem?
    Thanks -any help is greatly appreciated,
    Jen

    Hi,
    pPerhaps one should explain some basics about privileges in the database.
    You connected as sysdba, named superdba.
    The table(s) you are looking for have been created by the user SAPAJ4DB.
    If a user creates a table, noone !!, really noone is allowed to select them except this owner.
    Not even the sysdba is allowed to select them.
    And it is good that it is like this. I personally do have some private info in tables and do NOT
    want to let them being seen by my boss being the sysdba of the db.
    If the owner wants to allow access to this table, he has to grant privileges to other users.
    There are select, insert, update, delete ( to name the DML-privileges ).
    If the owner of the table you are looking for, did not do this, the sysdba is not allow to see them.
    And then he will receive the error -4004.
    Yes, the table DOES exist. But for the user not having a privileges for this table,
    this table looks like not existing, causing this error to occur.
    Therefore: connect as the owner, select there what you want.
    And then think about your needs and grant the corresponding privileges to other users / the sysdba.
    Have a nice weekend,
      Elke

  • Tables not printing?

    I'm having problems with tables in my printed documentation.
    If I include my online header and footers (which are formatted as
    tables in the topic template), the conversion to Word works as it
    should. However, if I hide (use conditional build tags for) the
    online header and footers, any tables and any topic text that
    precedes the tables do not convert.
    Here's what I've done:
    1) I've generated Printed Documentation with no conditional
    build tags applied. Everything comes through, including tables. My
    styles map as they should. The only problem is that my online
    headers and footers (which are defined in the topic template) show
    up at the top and bottom of every converted topic, which is not
    what I want.
    2) To get rid of the online headers and footers, I marked
    them as "online" in my topic template. When I generate the printed
    document, I set the Conditional Build Expression to "NOT online."
    Again, the styles map as they should, but many topics are
    incomplete. I figured out that topics that include tables are
    converting incorrectly. Specificially, all topic text before a
    table is missing, all table text is missing, and any text after the
    table is unformatted. As soon as a new topic without a table
    appears in the Word file, the formatting is fine.
    3) To test whether the online header/footers were causing the
    problem, I removed the topic template from a topic that had a table
    and regenerated the printed documentation. Sure enough, the table
    in THAT one topic converted correctly.
    I suspect that the problem is stemming from some sort of
    nested table issue between the table in the header of my
    document(which I'm attempting to suppress with conditional text)
    and the tables in the body of my document. How can I get my topic
    tables to convert while still hiding the tables in my headers?

    I managed to resolve my dilemma late yesterday when I applied
    my online condition tag to just the rows in the table, not to the
    entire table (using View > Tag List). Leon, I suspect you were
    right that the conditional tag wasn't properly wrapped around the
    TR codes. As soon as I did that, I could generate the printed
    documentation correctly -- the online headers and footers did not
    appear and the tables and topic text converted correctly. But, for
    some reason, one of the 103 topics in the printed documentation
    still includes the online header and footer. I checked and it used
    the same template and there's nothing apparently odd about it--yet
    every time I convert, that one topic comes through with the online
    header/footer attached. Very odd.
    As for the other comments about online headers and footers
    not converting--I guess I'm just lucky! When creating the topic
    template, I simply used the View > Header and View > Footer
    menu options. The header consists entirely of a table (repeats the
    name of the book and our corporate logo at the top of each topic).
    The footer is just text (links to a standard copyright statement).
    While I was unintentionally able to convert to printed
    documentation, they ended up within the body of the Word
    document--not as the header and footer in Word. So there was no
    advantage to having them.
    Here's a copy of the HTML of my template heading. Peter, let
    me know the best way to send a sample project.
    <div placeholder
    id=header
    style="width: 100%; position: relative;">
    <!--(Table)=========================================================-->
    <table x-use-null-cells
    style="width: 100%;
    x-cell-content-align: Center;
    border-spacing: 0px;
    border-spacing: 0px;"
    cellspacing=0
    width=100%>
    <col style="width: 5%;">
    <col style="width: 95%;">
    <tr style="x-cell-content-align: center; height: 20px;"
    valign=middle>
    <td colspan=1
    rowspan=1
    style="width: 5%;
    padding-right: 10px;
    padding-left: 10px;
    x-condition: Online;"
    width=5%>
    <p style="text-align: right;"
    align=right><img
    src="!SkinSubFolder!/XP_Blue/logo.large.gif"
    x-maintain-ratio=TRUE
    style="border: none;
    width: 211px;
    height: 60px;
    float: none;
    border-style: none;
    border-style: none;"
    width=211
    height=60
    border=0></td>
    <td colspan=1
    rowspan=1
    style="width: 95%;
    padding-right: 10px;
    padding-left: 10px;
    x-condition: Online;"
    width=95%>
    <p class=DocTitle>Administration User's
    Guide</td></tr>
    <tr style="x-cell-content-align: center; height: 1px;"
    valign=middle>
    <td rowspan=1
    colspan=2
    style="width: 5%;
    padding-right: 10px;
    padding-left: 10px;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;"
    width=5%>
    <!--(HR)============================================================-->
    <hr style="float: aligncenter;
    height: 1px;
    margin-top: 0px;
    margin-bottom: 0px;
    color: #f1bb46;"
    align=center
    size=1
    color=#F1BB46>
    </td>
    <td_null></tr>
    </table>
    </div>
    (BTW, is there anyway to make "View > Tag List" the
    default view? It's incredibly useful for selecting just the right
    bit of text.)

Maybe you are looking for

  • Financial Reports with Date measures are showing data one day less

    Hello, I am running a financial report off of an ASO cube with type measures enabled. However, when i run the report in FR, that date data coming out is 1 day less...for eg 04/30/2012 comes out as 04/29/2012. however, when i run the same ad-hoc repor

  • Anyone else having problems setting up Facetime and Imessage?

    I have tried over and over again to set up my facetime and imessage but every time it says it has sent a verification email i dont get one. I double checked that I typed my email addresse right (which I have) and am now not sure what to do. And i rea

  • [Sun Studio 11] Classpath issue: com.mysql.jdbc.Driver not found

    Greetings !! I'm trying in an Applet to connect to a mysql database but the Applet fails everytime. It works perfectly in console environnement with the same javaconnector. I read this: +Classpath. Specifies the path to the classes that the IDE uses.

  • Solaris 8 07/01 installation : Fast Data Access MMU Miss

    hello, Because of a hardware crash of my 9.1Gb hard drive, I plugged a brand new 40Gb drive in my Ultra 10 workstation. I tried to re-install my release of Solaris 8 (06/00), but this release detect only a 5Gb hard drive (but the installation work).

  • Importing an application in apex 4.0.1.00.03 fails

    I recently upgraded my apex from 3.2 to 4.0.1.00.03 I exported an application from 4.0.1.00.03 and now trying to Import the same export file in apex 4.0.1.00.03. But the import fails with error: The requested URL /pls/apex_dev/wwv_flow.accept was not