MessageDownload in a table - Not working?

There seems to be an issue with messageDownload and table Region Styles. I have created a table associated with a VO that has a BLOB that holds PDF images. When I download the file associated to any row, it always downloads the BLOB value from the first row. I've tested and verified that the VO returns the correct BLOB for each row.
Has anyone else run into this? If so, did you find a solution?

Also - I just tested with the updated Jdeveloper for RUP4, and same issue.

Similar Messages

  • 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

  • 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

  • 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

  • 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

  • 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

  • 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.

  • 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

  • Query remote table not working in PL/SQL

    I have a problem that is killing me to figure out. Basically we trying to query a remote table through PL/SQL and it comes back with invalid column name for the table. But the table exists in the remote database and has the column. The query works fine from the same database outside of PL/SQL, just not in PL/SQL. I'll setup a test case below.
    We have local database called DB1 and remote database called DB2. The table we are querying is called EMP.
    First we create database link:
    create database link DB2.WORLD connect to...
    Test the link:
    select ENAME from [email protected];
    ENAME
    SHAWN
    Works fine.
    Now we put this query inside a PL/SQL block:
    declare
    l_ename varchar2(20);
    begin
    select ename into l_ename from [email protected];
    end;
    This fails with the following error:
    select ename
    ERROR at line 274:
    ORA-06550: line 274, column 7:
    PL/SQL: ORA-00904: invalid column name
    ORA-06550: line 271, column 3:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 279, column 9:
    PL/SQL: ORA-00904: invalid column name
    ORA-06550: line 277, column 3:
    PL/SQL: SQL Statement ignored
    Now, I've tried changing how we select from the remote table, I've put the select statement in a cursor, tried creating a synonym which points to the remote table and selecting using the synonym in PL/SQL, it always returns the same error. But always works outside of PL/SQL.
    Now the user we are connecting to the remote database as, has select on the EMP table, through a role, along with 30 other tables, all the other tables are able to be selected through the database link, in PL/SQL, it's just this one table.
    Additionally I can go to another database, and create the same database link, and the query in PL/SQL works fine to the remote table. It's just this one table, from this one database, that doesn't work just in PL/SQL. Any ideas would be appreciated, I've exhausted everything.
    Also, creating a copy of the table using "create table as select * from..." we can select from the copy of the table using PL/SQL through the database link. The problem is this is a central warehouse table, and is used my multiple applications and updated constantly, so dropping a recreating this table is a last resort.
    Yes, this process did work, for over a year, then suddenly it stopped. Of course, no one made any changes to either database, that's always the case. I know the code didn't change though, it was still timestamped from a year ago.
    Thanks in advance.

    Could this be a variant on an old favourite, viz privileges being granted through roles. We cannot use objects in PL/SQL if our privileges are assigned through a role.
    Maybe what has changed is that instead of being granted privileges on EMP@DB2 directly the privileges have been re-organised so that your user has them granted through a role.
    Cheers, APC

  • Select * from table not working with Oracle OBDC driver

    Hello,
    In our web development we have been using the MS ODBC for Oracle
    driver to connect to our Oracle db. We decided to try the
    Oracle ODBC driver because it supports the commandTimeout
    property in ASP which the MS driver does not. The problem I'm
    running into now is that all of our select * from table
    statements appear not to be working. The Oracle ODBC driver
    version we are using is ver 8.00.05.00. Is there something that
    I'm not doing properly? If I take the same select * from table
    statement and name the columns, I dont get any error. Otherwise
    I'm getting a Subscript out of range error. It seems strange to
    me that this driver would not support a select * from table
    statement (which I''m told is the case by another developer
    here).
    Is there something I'm missing?
    Thanks,
    Pete

    I'm positive I have a connection. Otherwise I wouldn't get a
    response when I name the columns instead of using *.
    There must be something else that I'm missing or doing wrong.
    I've actually been looking into alternative ODBC drivers to see
    if I have the same problems but none that I have found support
    commandTimeout.
    Any other ideas?

  • Import Manager Join Tables not working

    Hi Experts,
    for combining tables in the Import Manager i tried to use the join and lookup function.
    My easy example is:
    Table1
    Product ID
    Organsation ID
    Table2
    Organisation ID
    Plant
    Now I'm joining using the field Organisation ID which contains the same items and make a lookup on the field Plant. In the Source Preview I can see the looked up field but without any values and it is with a grey background.
    Any suggestions?
    Thanks
    Andy

    Hi,
    I tried this at my end. It seems like a Bug. I am using MDM 7.1 SP3.
    Facing same issue, I mean Grey background (not editable) in source preview, when we look-up field Plant from Table1 to Table2.
    This field values are seen mapped in Map Fields/Values tab, but when i import data. Fields get populated for Product ID and Organization ID only but Plant field is not getting populated into MDM data Manager.
    So, i am quite sure it seems like a Bug and I would Suggest you to Raise OSS note for the same.
    Temporarily, You can import data in below manner.
    I mean when you select Source table as Table1, you can import Product ID and Organization ID.
    After importing Table1, select your Source table as Table2 map both fields Organization Id and Plant.
    Import data by selecting Matching Field as Organization ID and Default Import Action as Update (All Mapped Fields).
    So, in this way you can have your complete data in your MDM but obviously just because of bug which you can do in Single Step, Now going to be done in two Steps.
    Note: For one of Client i did this on MDM 5.5 SP6, that time it was working perfectly.
    Thanks and Regards,
    Mandeep Saini

  • Computed Items in Pivot table not working...

    One urgent help please….
    We have a pivot table where we have a measure label: Period name, & the measure is COST..
    The P-table shows Cost for selected (Prior & Current period) (we have 2 presentation variables for the same curr & prior).
    We need to have a computed ITEM in the Pivot which will be DELTA, Cost for Current Period – Cost for Prior Periods & should be shown on the same row.
    I tried adding a Computed ITEM in the measure label but I am unable to give the formula.
    ‘@{curr}’ - ‘@{prior}’
    but this doesn’t work as its not shown on the display…
    Please try giving me some hint….
    Thanks,
    Pankaj

    Hi,
    Remember that NULL + x is NULL.
    Use NVL (or COALESCE) to treat missing values as 0 when adding them. Do something like this in the main query:
    select  a.*
    ,      NVL (still_contacting, 0)
          + NVL (dud,            0)
          + NVL (no_curr_opp,      0)
          + NVL (cb_later_dt,      0)
          + NVL (meeting_booked,   0)
          + NVL (opp_in_eom,       0)
          + NVL (other,            0)
          + NVL (tbd,            0)     AS total
    ...

Maybe you are looking for

  • Error 1311, missing file data1.cab

    I'm trying to install Acrobat XI but continue to get Error 1311. File data1.cab is missing, empty or something.  I've tried download the program several times. Each appears to be a successful download but won't install. I've tried disabling my spywar

  • Dynamically pass subject via mail adapter without using mail package

    Hi, We have requirement to pass the Dynamic variable as Mail subject we can't use Mail Package as we need to capture the data from Dynamic SOAP header Data from incomming channel Dynamic SOAP Header variable (XHeaderName1) comming from Sender SOAP ch

  • Flash Drive not supported

    Hello everyone, I purchased a SanDisk Cruzer Micro 1.0 GB flash drive not too long ago and it was working fine. Removed some software that was on it because I couldn't use it. Used my flash drive today and I receive this error, but still kinda works.

  • Mail 5.0: No Sound Effects

    Hello! Since installing Lion, Mail 5.0 keeps dropping it's sound effects.  They come back for a short while once I "repair disk permissions" (only works with Mail closed down). All sound boxes are checked. Anyone have a perminant fix?  If not, any id

  • Find a file in system

    hi 1)Is there a way to find out where a particular file is located in the system 2)Is there a way to find out the list of directories in a system niki