Primary Index on CDHDR table not working

Hi Experts,
I am accessing the Table CDHDR with following fields in the WHERE clause of the SELECT Query (For All Enrteis).
OBJECTCLAS----
>'EINKBELEG'
OBJECTID----
>Here I am passing Purchase order No
TCODE----
>'ME21N'
CHANGE_IND----
>'I'
I haven't involved the field MANDANT which is also the one of the Key fields of this Table so do I need to involve this field also in WHERE Clause??
This SELECT Query is taking lot of time in production system.
Please suggest me.
Regards,
Jagesh

Hi Kartik,
Thanks for your so fast reply.
I asked for the MANDANT field inclusion in WHERE clause only becuase generally table Contains MANDT field  and Open SQL statements automatically include MANDT field = SY_MANDT and not MANDANT.
Thats why I was confused and I have check the fm ME_CHANGES_READ. it gives the Details of PO Changes and not PO creation.
I have used the table CDHDR for getting the Purchase order creation time for a Current day.
If I get the same from any other table then i can avoid CDHDR.
Please suggest.
Regards,

Similar Messages

  • Create Unique Index On Flow does not work for table names 23 characters

    I have a "create unique index on flow table" step that is dynamically generated by the IKM.
    The index name that is generated by the IKM is based on the table name except that the created index name is prefixed with "I$_" and ends with "_idx". Obviously, since Oracle table names can not exceed 30 characters in length, the index creation step will fail if the base table name exceeds 23 characters.
    I have tried to substring the index name generation step in the IKM so that it only uses the first 23 characters of the table name, but have not had any luck with using the "substring" command together with snpRef.getTable call.
    This is the section of the IKM that I desire to change:
    - <Field name="Txt" type="java.lang.String">
    - <![CDATA[
    create unique index      <%=snpRef.getTable("L","INT_NAME","W")%>_idx
    on          <%=snpRef.getTable("L","INT_NAME","W")%> (<%=snpRef.getColList("", "[COL_NAME]", ", ", "", "UK")%>)
    <%=snpRef.getUserExit("FLOW_TABLE_OPTIONS")%>
    ]]>
    </Field>
    I would like to change the above to something similar to the following (note the only change is the addition of substring(1,23))
    - <Field name="Txt" type="java.lang.String">
    - <![CDATA[
    create unique index <%=snpRef.getTable("L","INT_NAME","W")*.substring(1,23)*%_idx
    on          <%=snpRef.getTable("L","INT_NAME","W")%> (<%=snpRef.getColList("", "[COL_NAME]", ", ", "", "UK")%>)
    <%=snpRef.getUserExit("FLOW_TABLE_OPTIONS")%>
    ]]>
    </Field>
    Any help greatly appreciated. Thanks.

    As the index is temporary, just like the I$ talbel, the easiest way is to replace the table name with some unique identifier like the session is:
    bq. I$_&lt;%=odiRef.getSession("SESS_NO")%&gt;_idx
    If for some reason that is not unique enough, add the NNO:
    bq. I$_&lt;%=odiRef.getSession("SESS_NO")%&gt;&lt;%=odiRef.getSession("NNO")%&gt; \\ _idx                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • TRUNCATE TABLE NOT WORKING AFTER DROPPING CONSTRAINTS

    Hi,
    I have a table with a foreign key constraint. I know you can't truncate tables when there are foreign key constraints. So I drop the constraints before running the TRUNCATE TABLE command. But SQL Server is still stating there are foreign key constraints
    even after they have just been dropped.
    When I use SQL Server Management Studio to generate a drop & create script on this table or any other table with an FK consttaint, the generated script fails stating that there are still foreign key constraints??
    I have the same problem for every table that has FK constraints, for those without FK, TRUNCATE table works without issues.
    The end goal is to reset the identity value of the primary key. Since DBCC does not work on Azure, TRUNCATE TABLE is the only way left, especially if you can't even drop and recreate tables with FK constraints.
    What am I missing here?
    Peter

    Hi,
    Thanks for posting here.
    TRUNCATE TABLE is similar to the DELETE statement with no WHERE clause; however, TRUNCATE TABLE is faster and uses fewer system and transaction log resources.
    TRUNCATE TABLE removes all rows from a table, but the table structure and its columns, constraints, indexes, and so on remain. To remove the table definition in addition to its data, use the DROP TABLE statement.
    If the table contains an identity column, the counter for that column is reset to the seed value defined for the column. If no seed was defined, the default value 1 is used. To retain the identity counter, use DELETE instead.
    Restrictions
    You cannot use TRUNCATE TABLE on tables that:
    •Are referenced by a FOREIGN KEY constraint. (You can truncate a table that has a foreign key that references itself.)
    •Participate in an indexed view.
    •Are published by using transactional replication or merge replication.
    For tables with one or more of these characteristics, use the DELETE statement instead.
    TRUNCATE TABLE cannot activate a trigger because the operation does not log individual row deletions. For more information, see CREATE TRIGGER (Transact-SQL).
    Truncating Large Tables
    Microsoft SQL Server has the ability to drop or truncate tables that have more than 128 extents without holding simultaneous locks on all the extents required for the drop.
    Permissions--------------------------------------------------------------------------------
     The minimum permission required is ALTER on table_name. TRUNCATE TABLE permissions default to the table owner, members of the sysadmin fixed server role, and the db_owner and db_ddladmin fixed database roles, and are not transferable. However, you
    can incorporate the TRUNCATE TABLE statement within a module, such as a stored procedure, and grant appropriate permissions to the module using the EXECUTE AS clause.
    You cannot truncate a table which has an FK constraint on it.
    Typically my process for this is:
    Drop the constraints
    Trunc the table
    Recreate the constraints.
    Hope this helps you.
    Girish Prajwal

  • DB Adapter wizard – WHERE clause on parent and child tables not working.

    I have two tables, SECURITY and SECURITY_POSITIONS, where SECURITY has a 1:M relationship with SECURITY_POSITIONS. I used the DB-adapter wizard to create the relationship and the following WHERE clause expression which is looking at both the parent and the child tables;
    The expression builder looks like this:
    AND
    |--- 1. partitionKey EQUAL p_SearchKey
    |--- 2. securityType EQUAL “DBT”
    |--- 3. securityPositionsCollection.dealReference EQUAL “NA”
    The primary key on SECURITY = PARTITION_KEY and SECURITY_REFERENCE
    The foreign key from SECURITY_POSITIONS to SECURITY = PARTITION_KEY and SECURITY_REFERENCE
    securityType is on SECURITY table (master)
    securityPositionsCollection.dealReference is on SECURITY_POSITIONS table (child)
    The invoke on the database adapter is selecting a row in securityPositionsCollection for each child row, rather than just those with dealReference = “NA”!
    I turned on DEBUG logging in the BPEL console and I can see that there are 2 SELECT queries run (guess this is how Toplink does it!), where the 1st query appears to select the parent rows and the 2nd query selects the child rows.
    However the 2nd query is not working because it is failing to select only those child rows where dealReference = “NA”. Also, don’t know why the 2nd SELECT query needs to specify the child SECURITY_POSITIONS table twice in the FROM clause, because that seems to be causing the problem.
    1st query executed is as follows;
    SELECT DISTINCT t0.PARTITION_KEY, t0.SECURITY_REFERENCE, t0.SECURITY_TYPE
    FROM CENTRAL.SECURITY t0, CENTRAL.SECURITY_POSITIONS t1
    WHERE ((((t0.PARTITION_KEY = ?) AND (t0.SECURITY_TYPE = ?)) AND (t1.DEAL_REFERENCE = ?)) AND ((t1.SECURITY_REFERENCE = t0.SECURITY_REFERENCE) AND (t1.PARTIT
    ION_KEY = t0.PARTITION_KEY)))
    bind => [200706200000, DBT, NA]
    2nd query executed is as follows, where child table appears twice! ;
    SELECT DISTINCT t0.DEAL_REFERENCE, t0.PARTITION_KEY, t0.SECURITY_REFERENCE
    FROM CENTRAL.SECURITY_POSITIONS t0,
    CENTRAL.SECURITY_POSITIONS t2,
    CENTRAL.SECURITY t1
    WHERE ((((t0.SECURITY_REFERENCE = t1.SECURITY_REFERENCE) AND (t0.PARTITION_KEY = t1.PARTITION_KEY)) AND
    (((t1.PARTITION_KEY = ?) AND (t1.SECURITY_TYPE = ?)) AND
    (t2.DEAL_REFERENCE = ?))) AND
    ((t2.SECURITY_REFERENCE = t1.SECURITY_REFERENCE) AND
    (t2.PARTITION_KEY = t1.PARTITION_KEY)))
    bind => [200706200000, DBT, NA]
    Anyone experienced the same problem e.g. why is toplink making the query more complicated that it needs to be, because the query only needs to reference the SECURITY_POSITIONS table once, as follows;
    SELECT DISTINCT t0.DEAL_REFERENCE, t0.PARTITION_KEY, t0.SECURITY_REFERENCE
    FROM CENTRAL.SECURITY_POSITIONS t0,
    CENTRAL.SECURITY t1
    WHERE ((((t0.SECURITY_REFERENCE = t1.SECURITY_REFERENCE) AND (t0.PARTITION_KEY = t1.PARTITION_KEY)) AND
    (((t1.PARTITION_KEY = '200706200000') AND (t1.SECURITY_TYPE = 'DBT')) AND
    (t0.DEAL_REFERENCE = 'NA'))) AND
    ((t0.SECURITY_REFERENCE = t1.SECURITY_REFERENCE) AND
    (t0.PARTITION_KEY = t1.PARTITION_KEY)))

    Hello,
    It looks like you have configured your 1:M relationship to use batch reading. This causes the query to bring in the Security_Position table's objects to use the same selection criteria as was used on the initial query, with a join statement. This is more efficient in most cases as it ensures only the Security_positions needed for the Security objects to be fully built are read, in a single query.
    The selection criteria added is only used to filter out the Security objects. All referenced Security_Positions must be read in for the returned Security objects so that the data matches what is in the database. If you do not want the Security_Positions, you might try using indirection on the mapping which will delay the second query until you need the Security_Positions. Or, if you want only the Security_Positions with dealReference EQUAL “NA", you could do a query specifically to filter on them.
    Best Regards,
    Chris

  • Updating database table - not working

    Hi ,
              My database table 1 is having multiple data for a primary key
    example :
    table 1:
    GLOBMATNR  -> Primary key
    WERKS  --> non primary key -- multiple for globmatnr
    MBLNR --> non primary key -- multiple for globmatnr
    MBLPO--> non primary key --
    BUKRS --> non primary key -- multiple for globmatnr
    i m using below statement to make entry into the table.. but this insert is not working.. I stead of putting 30 entries its just inserting 1 entry..
    Can any one help me in this..?
    INSERT table1 FROM TABLE internal_table ACCEPTING DUPLICATE KEYS.
    Edited by: neha gupta on Oct 29, 2010 1:25 PM

    Hi,
    Hit F1 on ACCEPTING DUPLICATE KEYS. You will identify why it is inserting 1 line only. I hope the table is a custom table. For fields which can have multiple values, make it primary key.
    In your example table, GLOBMATNR, WERKS, MBLNR could be primary keys if WERKS is in one company code only. If not add BUKRS also
    Hope it helps
    Sujay

  • Index.jsp page is not working.

    hi
    i have created one simple webpage and save as index.jsp.
    when i upload this file and i check it with URL it gives me file not found.
    is there any mistake.
    I have used Netbeans 5.5..
    when i run this file in NetBeans it is working perfectly. But as i upload and then check on my Firefox browser it gives file not found.
    then i saved it as a index.html then it is working perfectly. but with .jsp extension it's not working..
    request you to give me suggestions..
    you can mail me also ... thanks
    thanks
    discuss
    ([email protected])

    hi...
    think its the problem with URL you have given in browser...
    if you have a page in your application named index.html, we can load the page by this URL.....
    http://localhost:8080/myapp/
    where myapp is the folder where u have index.html
    if u r saving it as index.jsp the URL should be like this.
    http://localhost:8080/myapp/index.jsp
    U have to give the full path of the file in URL...
    Hope this will work..

  • Dynamic Add table not working

    Hi,
    I have to  2 subforms,name table_subform[0] and table_subform[1] .
    To add a new table , i use script :
    var sSubformSOM = "xfa.form.form1.page1.table_subform";
    var oSubform = xfa.resolveNode(sSubformSOM);    
    var sParentSOM = oSubform.parent.somExpression;   
    var sManagerSOM = sParentSOM + "._" + oSubform.name+ "["+ 1 +"]"; ;  // Control the the new table location
    var oManager = xfa.resolveNode(sManagerSOM);
    oManager.addInstance(1);
    PROBLEM : , the this add table function "ADD THE NEW TABLE IN BETWEEN table_subform[0] and table_subform[1].
    REQUIREMENT : The new table should added next to the last table.
    SOLUTION 1 : var sManagerSOM = sParentSOM + "._" + oSubform.name + "["+ 1 +"]"; // index 1 to add the new table next to the second table
    var sSubformSOM = "xfa.form.form1.page1.table_subform";
    var oSubform = xfa.resolveNode(sSubformSOM);   
    var sParentSOM = oSubform.parent.somExpression;   
    var sManagerSOM = sParentSOM + "._" + oSubform.name+ "["+ 2 +"]"; ;  // Control the the new table location
    var oManager = xfa.resolveNode(sManagerSOM);
    oManager.addInstance(1);
    PROBLEM : NOW all my "new table" are added by reference to oSubform.name + "["+ 1 +"]";  OR oSubform.name[1]
                       Now the add table are working fine.
                        But this create an issue when deleting the table from the same subform.
                         If i click the "Delete table at "table_subform[1] - which index is used to create the rest of the tables" , it delete      table_subform[2],table_subform[3] in sequence.
    Anyone have any solution for this ????

    The removeInstance method requires an index so that it knows which subform to remove. If the button that you are pressing is part of the subform that you are removiing you can use the this.parent.index to return the index that you are on and as such the appropriate subform can be removed. Depending on your structure you may need to use the parent keyword to get back the level that you need. In many cases it gets confusing to know which subform is repeating so you can add this javascript command to the enter event of a field in the subform.
    app.alert(this.somExpression)
    This command will show you the complete somExpression of the field and as such you will know the somExpression for the rest of the subform. You may need to click on the field in a couple of different rows to understand the pattern that is emerging. This command is only for debugging ...you woudl remove it after you figure out your issue.
    Hope that helps
    Paul

  • DB Adapter Re Import Table Not working (JDev 11.1.1.6.0)

    I am trying to refresh the DB adapter tables after a few columns were added. Here is what I did.
    Adapter configuration wizard --> Import Tables --> Query table --> Move the same table from Available section to Selected Section --> Click OK.
    A message pops up to confirm 'Re-Import Table'. Click Yes.
    At this point it is suppose to refresh the table and add the new columns. But when I click next, it says there are new columns available in the table. The new columns are not added to the DB adapter query.
    Has any one faced this issue? Please suggest any ideas or work around to add the columns.
    Thanks
    Ismail M.

    Re-Import table did not work for me even after lot of struggle. I tried tampering with jca, wsdl etc, re-installed the JDeveloper, tried on multiple machines but nothing worked. I finally gave up and recreated the DB adapter with 'pure sql query' option instead of tables. Re did the mappings etc. It was hard but I seem to have no other options. I will never use the table option again.
    Ismail-m

  • "Next" and "Previous" functionality on UIX tables not working with 10g

    With new release of JDeveloper(10G), the "Next" and "Previous" navigation buttons/links on UIX tables are not working. I tried different approaches:
    1. It does not work with Data Controls built from Java Beans or from TopLink.
    2. I tried without using Data Controls and it still does not work.
    I shows "Next" and "Previous" buttons on the page. But it shows all records on the page rather then showing limited records. Say for example if the block size is 5 and total number of records are 15, it shows all 15 records in the table but the "next" and "Previouds" button would say "1-5 of 15".
    Did any of you observe the same behaviour?

    Hi Shital -
    Thanks for the additional info...
    When I said that the total number of records is 15, I
    meant that my tableData's DataObjectList contains 15
    entries. (In case of DataControls you don't even use
    DataObjectList, but for my non data control
    applications I used DataObjectList). You are saying
    that If I want to display only 5 records per page
    then I will need to provide a DataObjectList with
    five items. Then for next five records from 6-10 I
    will have to program in such a way that my method
    call returns 6-10 records.That's correct. In the case where you are explicitly providing data to the table via a DataObjectList, you need to feed the data to the table in page size blocks - and you also need to handle the table's goto event to scroll the table to the next/previous block of data.
    In previous version of
    UIX(2.1.7) I never had to program for next and
    previous buttons. UIX tables used to take care of
    that. That's why I am so surprised.It sounds like you must have been using the <bc4j:table> component. Is that the case?
    Getting back to your original issue...
    1. It does not work with Data Controls built
    from Java Beans or from TopLink.I believe that this is a bug in the preview release - and I'm fairly sure this will be addressed by production. In production, ADF should automatically handle wiring up table scrolling for you when binding your table to a data control - whether the data control is implemented via JavaBeans, Toplink, or BC4J. I believe that in the preview release, scrolling only working when binding to a BC4J data control.
    Andy

  • Submit report using selection table not working in OO CL_SALV classes

    I have used CL_SALV classes in my report. now the problem is submit report is not working. any suggestions.
    It works in REUSE_ALV  FM

    Still i m facing the same problem

  • Modifying Components within a cell table not working

    Hello,
    I am displaying JTextFields within JPanels in each cell of a JTable, but when I select a cell I am unable to enter text into the text boxes. Why has this been disabled now that these components are withing a JTable cell?
    Thanks,
    Emily

    Do I have the CellEditor just return the same Panel the renderer returns?It depends and I suppose rather not.. The JTable invokes editor to provide editing component with cell object as parameter. The editor method is then expected, in your case, to set appropiate values to all components in panel and return this panel. However, JTable may also need to draw another cells while you are editing. It will then ask renderer to provide panel for that - if you use exactly same object you may have a "crostalk" between renderer and editor.
    Whatever you will do, the behaviour of JPanel build in JTable cell will be litle different than standalone JPanel - if for example user double clicks in JTextField in cell, this click won't select JTextField - it will start editor only. Single click may not work at all. I did experimented with JComboBox as an editor and found, that to not confuse user too much it is better to have different view for renderer and editor - this way user will be aware about switching between edit and select/view mode.
    Also, any listeners may get confused in JPanel embeded in JTable - they will recive extra events when you prepre panel to display/edit and may miss many mouse events since they will be attached to event pump only while JTable keeps cell in edit mode.
    You need some experiments, I think. I would start from having two instances of same JPanel subclass - one which will work as a renderer and second, which will work as an editor.

  • Function based indexing v8.1.7 not working

    I have created a function based index on a column and when I run my query although I get the correct results I seem to be doing a full table scan instead of using the index.
    Are there any known bugs or additional parameter setting for function based indexing in 8i ?
    Thanks
    Bob I

    Robert
    To use Functional Index you to set following parameters in INIT.ORA, Compatiable should be more than 8.1.0
    query_rewrite_enabled = TRUE
    query_rewrite_integrity = TRUSTED
    Compatiable = 8.1.7.0
    optimizer = Choose
    Create index indexname on table (lower(column));
    then analyze table
    Analyze table tablename compute statistics;
    Regards
    Shailesh
    null

  • Scrollable table not working in IE

    I have a scrollable table that works great in Firefox, Safari, and Chrome. I cannot get it to work properly in IE. I think the problem is with the CSS, but I can't figure out what is wrong. Here's the CSS code:
    div.tableContainer {   clear: both;   border-right: 1px solid #CCC;   border-left: 1px solid #CCC;   border-bottom: 1px solid #CCC;   height: 285px;   overflow: auto;   width: 989px; } \html div.tableContainer{   padding: 0 16px 0 0;   width: 973px; } html>body div.tableContainer {   height: auto;   padding: 0; } head:first-child+body div[class].tableContainer {   height: 285px;   overflow: hidden;   width: 973px; } div.tableContainer table {   float: left;   width: 100%; } \html div.tableContainer table{   margin: 0 -16px 0 0; } html>body div.tableContainer table {   float: none;   margin: 0;   width: 973px } head:first-child+body div[class].tableContainer table {   width: 973px; } thead.fixedHeader tr {   position: relative;   top: expression(document.getElementById("tableContainer").scrollTop); } head:first-child+body thead[class].fixedHeader tr {   display: block; } thead.fixedHeader th {   background: #BC0001;   border-left: 1px solid #CCC;   border-right: 1px solid #CCC;   font-weight: normal;   padding: 4px 3px;   text-align: left;   font-size:12px;   line-height:normal;   color: #FFF; } thead.fixedHeader a, thead.fixedHeader a:link, thead.fixedHeader a:visited {   color: #FFF;   display: block;   text-decoration: none;   width: 100%; } head:first-child+body tbody[class].scrollContent {   display: block;   height: 262px;   overflow: auto;   width: 100%; } tbody.scrollContent td, tbody.scrollContent tr.normalRow td {   background: #FFF;   height: 35px;   border-bottom: none;   border-left: none;   border-right: 1px solid #CCC;   border-top: 1px solid #DDD;   padding: 2px 3px 3px 4px;   font-family: Arial, Helvetica, sans-serif; } tbody.scrollContent tr.alternateRow td {   background: #EEE;   height: 35px;   border-bottom: none;   border-left: none;   border-right: 1px solid #CCC;   border-top: 1px solid #DDD;   padding: 2px 3px 3px 4px; }       
    Here's the HTML

    Sorry... html is:
    <table border="0" cellpadding="2" cellspacing="0" class="tableRed" width="974px">
                                    <tbody>
                                        <tr>
                                            <td style="color:#FFF; border-right:1px solid #CCC; border-bottom: 1px solid #CCC; font-family: Arial, Helvetica, sans-serif;" width="110"> </td>
                                            <td style="color:#FFF; border-right:1px solid #CCC;" width="71"> </td>
                                            <td style="color:#FFF; border-right:1px solid #CCC;" width="69"> </td>
                                            <td style="color:#FFF; border-right:1px solid #CCC; border-left:1px solid #CCC; border-bottom: 1px solid #CCC; text-align: center; font-family: Arial, Helvetica, sans-serif;" width="280"> </td>
                                            <td style="color:#FFF; border-right:1px solid #CCC; text-align: center; font-family: Arial, Helvetica, sans-serif;" width="69"> 
                                                </td>
                                            <td style="color:#FFF; border-right:1px solid #CCC; border-bottom: 1px solid #CCC; text-align: center; font-family: Arial, Helvetica, sans-serif;" width="223"> </td>
                                        </tr>
                                    </tbody>
                                </table>
                                <div class="tableContainer" id="tableContainer">
                                    <table border="0" cellpadding="0" cellspacing="0" class="scrollTable" width="100%">
                                        <thead class="fixedHeader" id="fixedHeader">
                                            <tr>
                                                <th>
                                                     </th>
                                                <th>
                                                     </th>
                                                <th>
                                                     </th>
                                                <th>
                                                     </th>
                                                <th>
                                                    </th>
                                                <th>
                                                     </th>
                                                <th>
                                                    </th>
                                                <th>
                                                     </th>
                                                <th>
                                                     </th>
                                                <th>
                                                     </th>
                                            </tr>
                                        </thead>
                                        <tbody class="scrollContent">
                                       <tr>
                                                <td> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                            </tr>
                                       <tr>
                                                <td> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                            </tr>
                                            <tr>
                                                <td> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                                <td align="center"> 
                                              </td>
                                            </tr>
                                        </tbody>
                                    </table>
              </div>
                                <div>
                                     </div>

  • Xrefs to tables not working in structured FM10?

    I'm trying to create a cross-reference to a table in structured FM10, but no matter what format building blocks I choose the xref doesn't seem to contain any information from the table except pagenum. Creating an xref marker at the table title works fine, and the xref is perfect, but I would prefer to avoid adding extra markers. I'm a little confused why I can't make a direct reference to the table element. It shows up in the list of available elements in the xref pod, the table element has a unique ID, but any references to <$paranum> or <$elemparanum> show up blank. I haven't had this problem creating an xref to any other elements. Is there something special about tables I'm missing or is this a bug?

    G. Knoke,
    I assume you want the table title to appear in the cross-reference? This works only if the table title itself is positioned at the top of the table, I assume. In structures like DITA the table title is a separate first paragraph inside a table element, immediately before the real table <tgroup>.
    With a table title positioned below the table I found it necessary to invent a UniqueID attribute for the table title. The translation into markup can be fixed using XSL pre/postpropcessing, if required.
    - Michael

  • Data table not working when jsp is in a subfolder

    In order to organize my jsps I created a few subfolders and placed my new jsps in there. The problem is that when I drag a data table onto the page it does not display correctly. Only the headers show up. Draging a datatable onto a jsp that is not in a subfolder works fine. What gives?

    There are known issues with moving the pages into subfolders as well as renaming subfolders... from release notes:
    Creating a web page in a subfolder causes a page bean to be created in a corresponding sub package in the Java Sources folder. When renaming a subfolder containing web pages, Creator might not properly update the package names of the page beans in the Java Sources directory. In addition, the
    managed-beans.xml file might contain leftover references to the old bean names.
    Workaround
    Use the code editor to change the package names of the Java page beans and delete obsolete
    references to the renamed beans in the managed-beans.xml file.
    http://developers.sun.com/prodtech/javatools/jscreator/community/forums/index.jsp
    This is one area where we know we need to do more testing - so there may be additional gotcha's we haven't identified yet.
    If you create the page initially in the subfolder, is all fine?
    v

Maybe you are looking for

  • 6321 performance problems

    Hello again, we are experiencing performance problems with the 6321 in our environment - 10 kHz system clock, i.e. the analog input channels should be read in every 100 µs. This works fine with one card (differentially cabled), but if we plug a secon

  • If I put my I tunes library in my external hard disk can I still share it with all the accounts of my Mac?

    If I put my I tunes library in my external hard disk can I still share it with all the accounts of my Mac?

  • XSLProcessor

    I'm calling the processXSL method with XSLStylesheet and XMLDocument as args in order to transform a master XML doc into several XML docs that match the db structure of target views. I've done this successfully in pl/sql and using Steve Meunchs' JScr

  • CS6 Acrobat install error - Mac OSX 10.8.2

    Just purchase CS6 and attempted to install in on my Mac OSX 10.8.2.  All went well accept for when I installed Acrobat.  It errored out ERROR: DW006: Apple Package failed to install successfully. ERROR: DW050: The following payload errors were found

  • Documentation on SWIA transaction code

    Hi, I need documentation on SWIA transaction code. Where can I get it? Regards. Krishna