Correspondence management - Does CMS support dynamic functionality

Hi
We have an requirement that based on the xml input the no. of pages should get generated. This functionality we have implemented in CMSA, the pages are getting generated but the asset which we mapped to template are not displayed.
For example: My input XML consists of 4 address, In CMS, at layout design we wrote code for no. of address that many pages need to be generated on page level. The same layout we used for creating template.
While designing an template we used the fragments and assets. The pages which are generated dynamically shows fragment content but not the asset content.
i.e., Page 1 is displayed properly with all the content of the letter, but the pages generated dynamically have fragment but no asset.
Do CMS support this type of functionality?
If yes, please help me in resolving this.
Thanks in advance
Regards,
Sony

In Numbers '09 there is the function HYPERLINK() described as:
HYPERLINK
The HYPERLINK function creates a clickable link that opens a webpage or new email message.
HYPERLINK(url, link-text)
• url:  A standard universal resource locator. url is a string value that should contain a properly formatted universal resource locator string.
• link-text:  An optional value that specifies the text that appears as a clickable link in the cell. link-text is a string value. If omitted, url is used as the link-text.
Examples
=HYPERLINK(“http://www.apple.com”, “Apple”) creates a link with the text Apple that opens the default web browser to the Apple homepage.
=HYPERLINK(“mailto:[email protected]?subject=Quote Request”, “Get Quote”) creates a link with the text Get Quote that opens the default email application and addresses a new message to [email protected] with the subject line Quote Request.
It's what is the closest feature available.
Yvan KOENIG (from FRANCE samedi 18 juillet 2009 10:30:29)

Similar Messages

  • [unixODBC][Driver Manager]Driver does not support this function {IM001}

    Hello,
    I start from the end and details show below - this error message i got in sql session:
    SQL> select count(*) from EnergyType@ENERGOPLAN;
    select count(*) from EnergyType@ENERGOPLAN
    ERROR at line 1:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [unixODBC][Driver Manager]Driver does not support this function {IM001}
    ORA-02063: preceding 2 lines from ENERGOPLAN
    SQL>
    First question - is Oracle Heterogeneous Services are licensed for standard edition ? I cant find this information, and my database - is SE 11.2.0.3.0 - 64bit.
    If its ok and HS are licensed for SE, then please see details of my problem:
    ----OS and packages version
    [oracle@aris_sv_db log]$ uname -a
    Linux aris_sv_db 2.6.18-308.24.1.el5 #1 SMP Tue Dec 4 17:43:34 EST 2012 x86_64 x86_64 x86_64 GNU/Linux
    [oracle@aris_sv_db log]$
    [oracle@aris_sv_db log]$ rpm -qa | grep odbc
    [oracle@aris_sv_db log]$ rpm -qa | grep unixodbc
    [oracle@aris_sv_db log]$ rpm -qa | grep unixODBC
    unixODBC-libs-2.2.11-10.el5
    unixODBC-libs-2.2.11-10.el5
    unixODBC-devel-2.2.11-10.el5
    unixODBC-2.2.11-10.el5
    unixODBC-devel-2.2.11-10.el5
    [oracle@aris_sv_db log]$ rpm -qa | grep freetds
    freetds-0.91-1.el5.rf
    [oracle@aris_sv_db log]$
    -----ODBC.INI, ODBCINST.INI and FREETDS.CONF
    [oracle@aris_sv_db log]$ more /home/oracle/.odbc.ini
    [ENERGOPLAN]
    Driver = FreeTDS
    Servername = ENERGOPLAN
    Database = ess2
    [oracle@aris_sv_db log]$
    [oracle@aris_sv_db log]$ more /etc/odbcinst.ini
    # Example driver definitions
    [FreeTDS]
    Description = MSSQL Driver
    Driver = /usr/lib64/libtdsodbc.so.0
    #Setup = /usr/lib64/libtdsodbc.so.0
    #Driver = /usr/lib64/libodbc.so
    #Driver = /usr/lib/libodbc.so
    UsageCount = 1
    Trace = Yes
    TraceFile = /tmp/freetds.log
    [ODBC]
    DEBUG = 1
    TraceFile = /tmp/sqltrace.log
    Trace = Yes
    [oracle@aris_sv_db log]$
    [oracle@aris_sv_db log]$ more /etc/freetds.conf
    # A typical Microsoft server
    [ENERGOPLAN]
    host = 192.168.10.64
    port = 1433
    tds version = 8.0
    # client charset = UTF-8
    client charset = cp1251
    [oracle@aris_sv_db log]$
    ----CHECK CONNECT from ODBC
    [oracle@aris_sv_db log]$ isql -v ENERGOPLAN user pass
    | Connected! |
    | |
    | sql-statement |
    | help [tablename] |
    | quit |
    | |
    SQL> select count(*) from EnergyType;
    | |
    | 8 |
    SQLRowCount returns 1
    1 rows fetched
    SQL> [oracle@aris_sv_db log]$ tsql -S ENERGOPLAN -U user -P pass
    locale is "en_US.UTF-8"
    locale charset is "UTF-8"
    using default charset "cp1251"
    1> select count(*) from EnergyType;
    2> go
    8
    (1 row affected)
    1> [oracle@aris_sv_db log]$
    ----LISTENER.ORA, TNSNAMES and initENERGOPLAN.ora
    [oracle@aris_sv_db log]$ more /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
    # listener.ora Network Configuration File: /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
    # Generated by Oracle configuration tools.
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    SID_LIST_ENERGOPLAN =
    (SID_LIST =
    (SID_DESC=
    (SID_NAME=ENERGOPLAN)
    (ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1)
    (PROGRAM=dg4odbc)
    (ENVS="LD_LIBRARY_PATH=/usr/lib64:/u01/app/oracle/product/11.2.0/dbhome_1/lib")
    ENERGOPLAN =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = PNPKEY))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.10.72)(PORT = 1523))
    ADR_BASE_LISTENER = /u01/app/oracle
    [oracle@aris_sv_db log]$ more /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/tnsnames.ora
    # tnsnames.ora Network Configuration File: /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    ORCL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    ENERGOPLAN =
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.10.72)(PORT=1523))
    (CONNECT_DATA=(SID=ENERGOPLAN))
    (HS=OK)
    [oracle@aris_sv_db log]$ more /u01/app/oracle/product/11.2.0/dbhome_1/hs/admin/initENERGOPLAN.ora
    # This is a sample agent init file that contains the HS parameters that are
    # needed for the Database Gateway for ODBC
    # HS init parameters
    HS_FDS_CONNECT_INFO = ENERGOPLAN
    #HS_FDS_CONNECT_INFO = 192.168.0.199:1433//test
    HS_FDS_TRACE_LEVEL = DEBUG
    #HS_FDS_TRACE_FILE_NAME = /tmp/hs1.log
    HS_FDS_TRACE_FILE_NAME = /u01/app/oracle/product/11.2.0/dbhome_1/hs/log/mytrace.log
    HS_FDS_SHAREABLE_NAME = /usr/lib64/libodbc.so #/usr/lib64/libtdsodbc.so.0
    #HS_FDS_SHAREABLE_NAME = /usr/lib64/libtdsodbc.so.0
    #HS_FDS_SHAREABLE_NAME = /usr/lib/libodbc.so
    #HS_LANGUAGE=american_america.we8iso8859p1
    #HS_LANGUAGE=AMERICAN_AMERICA.AL32UTF8
    #HS_LANGUAGE=AMERICAN_AMERICA.CL8MSWIN1251
    #HS_LANGUAGE=RUSSIAN_RUSSIA.UTF8
    #HS_LANGUAGE=Russian_CIS.AL32UTF-8
    #HS_FDS_FETCH_ROWS=1
    HS_NLS_NCHAR = UCS2
    HS_FDS_SQLLEN_INTERPRETATION=32
    # ODBC specific environment variables
    set ODBCINI=/home/oracle/.odbc.ini
    set ODBCINSTINI=/etc/odbcinst.ini
    #HS_KEEP_REMOTE_COLUMN_SIZE=ALL
    #HS_NLS_LENGTH_SEMANTICS=CHAR
    #HS_FDS_SUPPORT_STATISTICS=FALSE
    # Environment variables required for the non-Oracle system
    #set <envvar>=<value>
    [oracle@aris_sv_db log]$
    [oracle@aris_sv_db log]$ tnsping ENERGOPLAN
    TNS Ping Utility for Linux: Version 11.2.0.3.0 - Production on 01-APR-2013 16:27:49
    Copyright (c) 1997, 2011, Oracle. All rights reserved.
    Used parameter files:
    /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION= (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.10.72)(PORT=1523)) (CONNECT_DATA=(SID=ENERGOPLAN)) (HS=OK))
    OK (0 msec)
    [oracle@aris_sv_db log]$
    ----CREATE DBLINK and test from sqlplus
    CREATE DATABASE LINK "ENERGOPLAN" CONNECT TO "user" IDENTIFIED BY "pass" USING 'ENERGOPLAN';
    [oracle@aris_sv_db log]$ sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.3.0 Production on Mon Apr 1 16:30:14 2013
    Copyright (c) 1982, 2011, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Release 11.2.0.3.0 - 64bit Production
    SQL> select count(*) from EnergyType@ENERGOPLAN;
    select count(*) from EnergyType@ENERGOPLAN
    ERROR at line 1:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [unixODBC][Driver Manager]Driver does not support this function {IM001}
    ORA-02063: preceding 2 lines from ENERGOPLAN
    SQL>
    ----logs from hs and odbc
    [oracle@aris_sv_db log]$ tail -50 ENERGOPLAN_agt_12117.trc
    12 VARCHAR N 100 100 0/ 0 1000 0 200 ConsumptionYearCostUOM
    3 DECIMAL N 24 24 9/ 3 0 0 0 ConsumptionYearFactorAmount
    -7 BIT N 1 1 0/ 0 0 0 20 NeedToBeApprovedByREK
    Exiting hgodtab, rc=0 at 2013/04/01-16:30:42
    Entered hgodafr, cursor id 0 at 2013/04/01-16:30:42
    Free hoada @ 0x14e5fd20
    Exiting hgodafr, rc=0 at 2013/04/01-16:30:42
    Entered hgopars, cursor id 1 at 2013/04/01-16:30:42
    type:0
    SQL text from hgopars, id=1, len=36 ...
    00: 53454C45 43542043 4F554E54 282A2920 [SELECT COUNT(*) ]
    10: 46524F4D 2022454E 45524759 54595045 [FROM "ENERGYTYPE]
    20: 22204131 [" A1]
    Exiting hgopars, rc=0 at 2013/04/01-16:30:42
    Entered hgoopen, cursor id 1 at 2013/04/01-16:30:42
    hgoopen, line 87: NO hoada to print
    Deferred open until first fetch.
    Exiting hgoopen, rc=0 at 2013/04/01-16:30:42
    Entered hgodscr, cursor id 1 at 2013/04/01-16:30:42
    Allocate hoada @ 0x14e5fd80
    Entered hgodscr_process_sellist_description at 2013/04/01-16:30:42
    Entered hgopcda at 2013/04/01-16:30:42
    Column:1(): dtype:4 (INTEGER), prc/scl:10/0, nullbl:1, octet:0, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2013/04/01-16:30:42
    Entered hgopoer at 2013/04/01-16:30:42
    hgopoer, line 231: got native error 0 and sqlstate IM001; message follows...
    [unixODBC][Driver Manager]Driver does not support this function {IM001}
    Exiting hgopoer, rc=0 at 2013/04/01-16:30:42
    hgodscr, line 407: calling SQLSetStmtAttr got sqlstate IM001
    Free hoada @ 0x14e5fd80
    hgodscr, line 464: NO hoada to print
    Exiting hgodscr, rc=28500 at 2013/04/01-16:30:42 with error ptr FILE:hgodscr.c LINE:407 FUNCTION:hgodscr() ID:Set array fetch size
    Entered hgoclse, cursor id 1 at 2013/04/01-16:31:24
    Exiting hgoclse, rc=0 at 2013/04/01-16:31:24
    Entered hgocomm at 2013/04/01-16:31:24
    keepinfo:0, tflag:1
    00: 4F52434C 2E343535 32623466 342E362E [ORCL.4552b4f4.6.]
    10: 32322E37 363237 [22.7627]
    tbid (len 20) is ...
    00: 4F52434C 5B362E32 322E3736 32375D5B [ORCL[6.22.7627][]
    10: 312E345D [1.4]]
    cmt(0):
    Entered hgocpctx at 2013/04/01-16:31:24
    Exiting hgocpctx, rc=0 at 2013/04/01-16:31:24
    Exiting hgocomm, rc=0 at 2013/04/01-16:31:24
    Entered hgolgof at 2013/04/01-16:31:24
    tflag:1
    Exiting hgolgof, rc=0 at 2013/04/01-16:31:24
    Entered hgoexit at 2013/04/01-16:31:24
    Exiting hgoexit, rc=0
    [oracle@aris_sv_db log]$
    [oracle@aris_sv_db log]$ tail -50 /tmp/sqltrace.log
    Native = 0x7fff6ca974f4
    Message Text = 0x14e5f968
    Buffer Length = 510
    Text Len Ptr = 0x7fff6ca97750
    [ODBC][12117][SQLGetDiagRecW.c][582]
    Exit:[SQL_SUCCESS]
    SQLState = IM001
    Native = 0x7fff6ca974f4 -> 0
    Message Text = [[unixODBC][Driver Manager]Driver does not support this function]
    [ODBC][12117][SQLGetDiagRecW.c][540]
    Entry:
    Statement = 0x14e399f0
    Rec Number = 2
    SQLState = 0x7fff6ca97700
    Native = 0x7fff6ca974f4
    Message Text = 0x14e5f908
    Buffer Length = 510
    Text Len Ptr = 0x7fff6ca97750
    [ODBC][12117][SQLGetDiagRecW.c][582]
    Exit:[SQL_NO_DATA]
    [ODBC][12117][SQLEndTran.c][315]
    Entry:
    Connection = 0x14dbd4b0
    Completion Type = 0
    [ODBC][12117][SQLGetInfo.c][214]
    Entry:
    Connection = 0x14dbd4b0
    Info Type = SQL_CURSOR_COMMIT_BEHAVIOR (23)
    Info Value = 0x7fff6ca9781e
    Buffer Length = 8
    StrLen = 0x7fff6ca9781c
    [ODBC][12117][SQLGetInfo.c][528]
    Exit:[SQL_SUCCESS]
    [ODBC][12117][SQLEndTran.c][488]
    Exit:[SQL_SUCCESS]
    [ODBC][12117][SQLDisconnect.c][204]
    Entry:
    Connection = 0x14dbd4b0
    [ODBC][12117][SQLDisconnect.c][341]
    Exit:[SQL_SUCCESS]
    [ODBC][12117][SQLFreeHandle.c][268]
    Entry:
    Handle Type = 2
    Input Handle = 0x14dbd4b0
    [ODBC][12117][SQLFreeHandle.c][317]
    Exit:[SQL_SUCCESS]
    [ODBC][12117][SQLFreeHandle.c][203]
    Entry:
    Handle Type = 1
    Input Handle = 0x14dbb0c0
    [oracle@aris_sv_db log]$

    To see which ODBC function DG4ODBC is looking for and unixODBC isn't supporting it would be best to get an ODBC trace file. But as your unixODBC driver (unixODBC-2.2.11-10.el5) is outdated and these old drivers had a lot of issues when being used on 64bit operating systems (for example wrong sizeofint etc). So best would be to update the unixODBC Driver manager to release 2.3.x. More details can be found on the web site: www.unicodbc.org
    - Klaus

  • [ODBC Driver Manager] Driver does not support this function

    HI every body
    In Win Server 2008 R2 , I tried to retrieve data from my ODBC Driver
     by Report Builder , my connection test is successful , but after any retrieve data by SQL Statement I encounter with this Error :
    IM0001: [Microsoft] [ODBC Driver Manager] Driver does not support this function
    I use Win Server 2008 R2 , and my ODBC Driver installed on :
    %SystemRoot%\SysWOW64\odbcad32.exe
    Can anyone help me to solve this problem, its realy urgent for me ,
    PLEASE HELP ………………..

    ODBC Driver name is PMSDK (32 bit) and installed by Primavera software
    I use SQL Report Builder to connect the driver and try SQL Statement in it
    Report Builder may be executing an ODBC function to retrieve meta data, and that function is not supported by the PMSDK driver.  Are you using the latest version of the PMSDK driver?  You might try turning on ODBC tracing to find out the problem
    function. 
    Dan Guzman, SQL Server MVP, http://www.dbdelta.com

  • Does UCM support dynamic page creation on contributor mode.?

    Hi All,
    Does UCM support dynamic page creation on contributor mode.
    We want to create new pages and link it into the existing pages
    is that possible?
    Thanks
    ~Hari

    You can create new secondary pages in contributor mode - you would normally do this via a dynamic list fragment though technically you could also achieve it by switching region content and creating new data files. You can then use the linz wizard to link between pages.
    If you are talking about creating new primary pages and sections in your site then you would need to use something like Site Studio Manager fragment.
    Tim

  • Error -11040 Driver does not support this function- Informix SE db

    Hello,
      Weu2019re getting an error -11040 "Driver does not support this function" when trying to connect to an ODBC data source to an InformixSE database. This is with Crystal 2010 and 2008 on a Windows XP sp2 box. Weu2019re trying to use the ODBC(RDO) choice for a new connection.
      The Informix ODBC driver has been loaded. We tried 3 versions, the 2.40 and 3.70(latest) ones from IBM, and one that I believe came with Crystal (CR xxxx). I tried turning on the ODBC trace file, but it didnu2019t write anything to the log. We are supplying the same log in credentials as with Excel.
       The Informix database we use is Informix SE (Standard Engine) v5.10 on separate machine running Unix (Aix) with the Informix-Net daemon running to handle odbc connectivity. We are able to connect from Excel to the Informix database.
      I donu2019t know what ODBC function Crystal may be expecting from the driver that it doesnu2019t seem to support and how to tell Crystal to not need it.
    Thanks,
    Mike

    Hi Mike,
    According to the Platforms for DB support we only support these Informix data sources:
    IDS (Informix Dynamic Server)     11.50       32 bit       64 bit        Linux               AIX                   Solaris
    IDS          IDS Client 11.5                                     Direct     Direct     Not Supported     Not Supported     Not Supported
    ODBC      IBM Informix ODBC SDK 3.50             Direct     Direct     Direct             Direct             Direct
    ODBC      DataDirect ODBC 6.0 SP2 (10)      Direct     Direct     Direct             Direct             Direct
    You may want to try the Data Direct 6.x drivers as a test.
    CR in the .NET IDE is running under 32 bit mode so make sure you are using the 32 bit Client.
    Don

  • Error: Driver does not support this function

    Hi there people!
    I'm a newbie in jsp and I encountered this error: Driver does not support this function. I'm using odbc:jdbc and access. Can someone please tell me what is wrong?
    <%@ page import = "java.sql.*" %>
    <%@ page import="java.io.*" %>
    <%@ page import="java.util.*" %>
    <HTML>
    <title>Stock Portfolio</title>
    <body>
    <body bgcolor="gray"><center>
    <table border = 1>
    <tr>
         <td><th>Symbol</td></th>
         <td><th>Type of Transaction</td></th>
         <td><th>Date</td></th>
         <td><th>Shares</td></th>
         <td><th>Price</td></th>
         <td><th>Stock Commission</td></th>
         <td><th>Stock Brocker Name</td></th>
    <tr>
    <%     String symbol = request.getParameter("symbol");
           String type = request.getParameter("type");
           String date = request.getParameter("date");
            String shares = request.getParameter("shares");
            int ishares = Integer.parseInt(shares);
            String price = request.getParameter("price");
            float fprice = Float.parseFloat(price);
            String commission = request.getParameter("commission");
            float fcommission = Float.parseFloat(commission);
            String bname = request.getParameter("bname");
    %>
    <% String url ="jdbc:odbc:Product";
       try
       { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         Connection con = DriverManager.getConnection(url,"","");
         String query = "INSERT INTO Stock (dbsymbol,dbtype,dbdate,dbshares,dbprice,dbcommission,dbname) VALUES (?,?,?,?,?,?,?)";
          PreparedStatement pstmt = con.prepareStatement(query);
          pstmt.setString(1,symbol);
           pstmt.setString(2,type);
           pstmt.setString(3,date);
           pstmt.setInt(4,ishares);
           pstmt.setDouble(5,fprice);
           pstmt.setDouble(6,fcommission);
           pstmt.setString(7,bname);
           pstmt.executeUpdate(query);
          }catch (Exception e)
           {System.out.println(e.getMessage());
    %>
    </body>
    </html>      Thanks!

    Sorry I need to hurry up. But here is link i found relating same problem. Please check this and see if it might help you.
    [http://forum.java.sun.com/thread.jspa?threadID=564872&messageID=2784526|http://forum.java.sun.com/thread.jspa?threadID=564872&messageID=2784526]
    Read reply #5.
    It says
    You're getting this exception because you're using the executeUpdate() method that returns a ResultSet. That's a JDBC 3.0 function, and the JDBC-ODBC bridge only supports JDBC 1.0.Good Luck.

  • Does ppr of hgrid line level does not support dynamic switchers?

    Hi this is really critical.... any help would be highly appreciated.I have a a hgrid which conatains a messagechoice and a switcher in each row.This switcher has two cases dummy message style text and a message choice. depending upon the value of first message choice, in this column messagestyletext or messagechoicebox is shown in switcher. this is implemented by ppr on first drop down. this code works completely fine on jdev. but when deployed on server, the page does not refreshes to show the other component in switcher.I have used transient attribute to populate value of switcher.
    Does ppr of hgrid line level does not support dynamic switchers?
    please help!

    Hi Mukul,
    Have you fixed this issue?
    Iam unable to achieve this row level dynamic switcher.
    In my case .. i should be able to display Edit enabled and Edit disabled icons based on some criteria.I have given E as id for enabled and E1 as id for disabled.when i execute the query it is fine but swither is always populating enabled image.
    What could be wrong?
    Thanks
    Soujanya

  • Does CISCO3745 support PE function?

    Hi,I have CISCO3745 with 128M DRAM. I hope it can be used as PE router to provide the MPLS VPN service.Does it support PE function? How about the performance of CISCO3745 as a PE router with about 20 VPN vrfs? Thanks
    SIncerely

    Hi there,
    Yes.Commit confirm! Just make sure the right IOS. Try to configure the VRF part.
    regards,
    maher

  • Does Numbers support Excel functions CELL, SUBSTITUTE, and REDIRECT?

    Been trying to find the list of Excel-compatible functions but did not succeed. I would like to use Numbers to edit my Excel files in iPad. I often generate reports by pulling data out from a seperate sheet using Excel functions like CELL, SUBSTITUTE, and REDIRECT. I have not purchased Numbers yet, that is why I would like to know where I find the complete list of Excel-compatible functions or at least know if Numbers support these functions.  Thank you in advance.

    Numbers does support the function substitute()
    I did not see the functions cell() and redirect() in the function browser.
    There is afree function reference here:
    iWork '09 Formulas and Functions User Guide
    which you can use

  • Does XI support PLSQL Functions?

    Hi...
    Generally we use Stored Procedure at the Receiver end with JDBC Adapter. I wanted to know if XI supports PLSQL Function?
    If so, can anyone please tell me the structure to be used. Is it the same one as for Procedure??

    Hi ,
            Plse go througnthe following links
    Here is an example of mapping for synch JDBC.
    /people/siva.maranani/blog/2005/09/16/xi-how-to-on-jdbc-receiver-response
    /people/siva.maranani/blog/2005/05/21/jdbc-stored-procedures
    Also go thru these links:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/2e/96fd3f2d14e869e10000000a155106/content.htm
    /people/alessandro.berta/blog/2005/10/04/save-time-with-generalized-jdbc-datatypes
    http://help.sap.com/saphelp_nw2004s/helpdata/en/4d/8c103e05df2e4b95cbcc68fed61705/frameset.htm
    Assign points if you found helpful
    Regards.,
    V.Rangarajan

  • TS1416 It seems the latest itunes version does not support sync functions to ipod classic

    I have updated my Itunes to version 11.04 but it seems this version does not support syncing with Ipod classic it seems it only supports the Ipod touch.  Does anyone have any solutions for this problem?

    Device not recognized. Take note of item 5.
    http://support.apple.com/kb/ts1538

  • Does JDev support the function of "mark occurrence" like eclipse

    The function of "mark occurrence" is to highlight every occurrence of the word you selected in the same file.
    If it does, will anyone kindly show how to do it in the preference.
    Many thx and best regards.
    wf

    Two things to try out:
    Ctrl+Alt+H or from the menu Search->Highlight
    I would also recommend you download the "Varaiable Highlighter Extension" for JDeveloper through help->check for updates.

  • NiVision does not support delayload functionality

    I'm writing a C++ application in VisualStudio 10 using NI Vision and NI IMAQ.
    Depending on the configuration of the deployed application it may not need NI Vision at all.
    In order to keep a user from requring NI-Vision on their system if the application does not use it I add the NI-Vision DLL to  the Delayload inputs of the project.
    This way a user can run without a message that the NI-Vision DLL is missing if they never require it.
    The trouble is, as soon as the "nivision.h" is included, when the application shuts down, it appears to make a call to imaqCloseWindow which will cause an exception if nivision.dll is not present.
    The exception happens in the generated code __delayLoadHelper2 while looking for imaqCloseWindow
    This appears to be called from __tailMerge_nivision_dll()
    I suspect this is an issue with this line in nivision.h #pragma comment(linker, "/INCLUDE:_nivision_startup_shutdown")
    Is there anyway to get around this?
    Thanks,
    Amaury

    Hi,
    First I just want to point out that none of our vision software is made to be compatible with VisualStudio 2010.  The latest version we support is VisualStudio 2008.
    That being said, I do not see any way to get around this with out actually editing the DLL.  As you said, anytime you include the nivision.h you are going to have the call to imaqCloseWindow present.
    Regards,
    Greg H.
    Applications Engineer
    National Instruments

  • Does devpoll support dynamic add & remove of fd

    I am trying o use devpoll interface to improve the program
    efficiency. I used devpoll interface to add fds as they
    are created and to remove dynamically, since the program I used
    creates sockets dynamically. When I ran the program, the
    devpoll interface failed to report that sockets have data.
    Any idea?
    some errors are:
    etNextBtsMsg(): Unexpected event rcvd. scktnum =3 revents = 0x 8
    getNextBtsMsg(): Unexpected event rcvd. scktnum =4 revents = 0x 8
    Thanks
    K.Gnanaratne
    #### here is teh code that add soocket number to dev poll list
    struct pollfd pollBuf;
    if ( scktNum >= k_maxScktNum ) {
    cout << "addToPollList(): scktNum exceeds the max limit. scktNum =" << scktNum;
    cout << " Qname "<< s_QnameSet[qType & 0x01] << endl;
    return -1;
    // add to poll list
    pollBuf.fd = scktNum;
    pollBuf.events = POLLIN|POLLRDNORM;
    pollBuf.revents = 0;
    if ( ::write(m_pfd[qType], &pollBuf, sizeof(pollBuf) ) != sizeof(pollBuf) ) {
    cout << "addToPollList(): write to dev/poll failed. scktNum =" << scktNum;
    cout << " error = " << strerror( errno );
    cout << " Qname "<< s_QnameSet[qType & 0x01] << endl;
    return -1;

    You say it's not reporting events, but your errors show events being reported. It sounds like your code doesn't know how to handle things like POLLERR and POLLHUP.

  • ORA-02070: database PSQL_REPORT does not support some function in this cont

    [oracle@stdb ~]$ sqlplus / as sysdba
    SQL*Plus: Release *10.2.0.5.0* - Production on Tue Mar 20 13:15:35 2012
    Copyright (c) 1982, 2010, Oracle. All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Production
    With the Partitioning, Data Mining and Real Application Testing options
    Session altered.
    Elapsed: 00:00:00.00
    13:23:36 SQL> desc "report_accident_detail"@PSQL_REPORT
    Name                    Null? Type
    id                    NOT NULL NUMBER(10)
    accident_master_id          NOT NULL NUMBER(10)
    subscriber_id               NOT NULL NUMBER(10)
    unit_id               NOT NULL NUMBER(10)
    event_number                    NUMBER(10)
    reg_number                    VARCHAR2(254)
    vin                         VARCHAR2(254)
    servertime_begin               NUMBER(10)
    servertime_end                NUMBER(10)
    event_datetime                DATE
    event_address                    VARCHAR2(254)
    event_location                VARCHAR2(254)
    latitude                    FLOAT(53)
    longitude                    FLOAT(53)
    area_id                    NUMBER(3)
    area_kind                    NUMBER(1)
    ignition_state                NUMBER(5)
    accel_value_x                    FLOAT(53)
    accel_value_y                    FLOAT(53)
    accel_value_z                    FLOAT(53)
    vehicle_speed                    FLOAT(53)
    call_to_customer_datetime          DATE
    is_customer_confirmed_accident      NUMBER(10)
    note                         VARCHAR2(254)
    gen_datetime                    DATE
    1* select count(*) from "report_accident_detail"@PSQL_REPORT
    13:21:33 SQL> /
    COUNT(*)
    150
    1 row selected.
    Elapsed: 00:00:00.01
    1* select * from "report_accident_detail"@PSQL_REPORT
    13:21:57 SQL> /
    ERROR:
    ORA-02068: following severe error from PSQL_REPORT
    ORA-28511: lost RPC connection to heterogeneous remote agent using SID=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=172.16.1.4)(PORT=1522))(CONNECT_DATA=(SERVICE_NAME=PSQL_REPORT)))
    no rows selected
    Elapsed: 00:00:00.09
    initPSQL_REPORT.ora
    HS_FDS_CONNECT_INFO = PSQL_REPORT
    HS_FDS_TRACE_LEVEL = 255
    HS_FDS_SHAREABLE_NAME = /usr/lib64/psqlodbc.so
    HS_LANGUAGE = AMERICAN_AMERICA.CL8MSWIN1251
    HS_FDS_SQLLEN_INTERPRETATION=32
    set ODBCINI = /etc/odbc.ini
    set ODBCINSTINI = /etc/odbcinst.ini
    Oracle Database CHARACTER SET CL8MSWIN1251
    Postgres Database
    CREATE DATABASE "3st_reports"
    WITH OWNER = sysdba
    ENCODING = 'UTF8'
    TABLESPACE = pg_default
    LC_COLLATE = 'ru_RU.UTF-8'
    LC_CTYPE = 'ru_RU.UTF-8'
    CONNECTION LIMIT = -1;
    Listener:
    [oracle@stdb ~]$ cat /u01/app/oracle/product/11.2.0/Gateway_x64/network/admin/listener.ora
    # listener.ora Network Configuration File: /u01/app/oracle/product/11.2.0/Gateway_x64/network/admin/listener.ora
    # Generated by Oracle configuration tools.
    GATEWAY_X64 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 172.16.1.4)(PORT = 1522))
    SID_LIST_GATEWAY_X64 =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = PSQL)
    (PROGRAM = dg4odbc)
    (SID_NAME = PSQL)
    (ORACLE_HOME = /u01/app/oracle/product/11.2.0/Gateway_x64)
         (ENVS=LD_LIBRARY_PATH=/usr/lib64:/u01/app/oracle/product/11.2.0/Gateway_x64/lib)
    (SID_DESC =
    (GLOBAL_DBNAME = PSQL_REPORT)
    (PROGRAM = dg4odbc)
    (SID_NAME = PSQL_REPORT)
    (ORACLE_HOME = /u01/app/oracle/product/11.2.0/Gateway_x64)
    (ENVS=LD_LIBRARY_PATH=/usr/lib64:/u01/app/oracle/product/11.2.0/Gateway_x64/lib)
    #INBOUND_CONNECT_TIMEOUT_GATEWAY_X64 = 0
    ADR_BASE_GATEWAY_X64 = /u01/app/oracle
    strace shows me 'Segmentation fault':
    2807 write(7, " SQLFetch: row: 1, column 22, bf"..., 51) = 51
    2807 write(7, " SQLFetch: row: 1, column 22, bf"..., 63) = 63
    2807 write(7, " SQLFetch: row: 1, column 23, bf"..., 50) = 50
    2807 write(7, " SQLFetch: row: 1, column 23, bf"..., 62) = 62
    2807 write(7, " SQLFetch: row: 1, column 24, bf"..., 53) = 53
    2807 write(7, " SQLFetch: row: 1, column 24, bf"..., 82) = 82
    2807 --- SIGSEGV (Segmentation fault) @ 0 (0) ---
    2807 rt_sigprocmask(SIG_UNBLOCK, [SEGV], NULL, 8) = 0
    2807 chdir("/u01/app/oracle/product/11.2.0/Gateway_x64/rdbms/log") = 0
    2807 mkdir("hs_core_2807", 0750) = 0
    2807 chdir("hs_core_2807") = 0
    2807 open("/u01/app/oracle/product/11.2.0/Gateway_x64/rdbms/log/hs_core_2807/hs_core_trace_2807.trc", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 10
    2807 fstat(10, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
    2807 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2aaaab616000
    PSQL_REPORT_agt_2903.trc
    Heterogeneous Agent Release
    11.2.0.1.0
    Oracle Corporation --- TUESDAY MAR 20 2012 13:13:17.733
    Version 11.2.0.1.0
    Entered hgogprd
    HOSGIP for "HS_FDS_TRACE_LEVEL" returned "255"
    Entered hgosdip
    setting HS_OPEN_CURSORS to default of 50
    setting HS_FDS_RECOVERY_ACCOUNT to default of "RECOVER"
    setting HS_FDS_RECOVERY_PWD to default value
    setting HS_FDS_TRANSACTION_LOG to default of HS_TRANSACTION_LOG
    setting HS_IDLE_TIMEOUT to default of 0
    setting HS_FDS_TRANSACTION_ISOLATION to default of "READ_COMMITTED"
    HOSGIP returned value of "UCS2" for HS_NLS_NCHAR
    setting HS_FDS_TIMESTAMP_MAPPING to default of "DATE"
    setting HS_FDS_DATE_MAPPING to default of "DATE"
    setting HS_RPC_FETCH_REBLOCKING to default of "ON"
    setting HS_FDS_FETCH_ROWS to default of "100"
    setting HS_FDS_RESULTSET_SUPPORT to default of "FALSE"
    setting HS_FDS_RSET_RETURN_ROWCOUNT to default of "FALSE"
    setting HS_FDS_PROC_IS_FUNC to default of "FALSE"
    setting HS_FDS_CHARACTER_SEMANTICS to default of "FALSE"
    setting HS_FDS_MAP_NCHAR to default of "TRUE"
    setting HS_NLS_DATE_FORMAT to default of "YYYY-MM-DD HH24:MI:SS"
    setting HS_FDS_REPORT_REAL_AS_DOUBLE to default of "FALSE"
    setting HS_LONG_PIECE_TRANSFER_SIZE to default of "65536"
    setting HS_SQL_HANDLE_STMT_REUSE to default of "FALSE"
    setting HS_FDS_QUERY_DRIVER to default of "TRUE"
    setting HS_FDS_SUPPORT_STATISTICS to default of "FALSE"
    Parameter HS_FDS_QUOTE_IDENTIFIER is not set
    setting HS_KEEP_REMOTE_COLUMN_SIZE to default of "OFF"
    setting HS_FDS_GRAPHIC_TO_MBCS to default of "FALSE"
    setting HS_FDS_MBCS_TO_GRAPHIC to default of "FALSE"
    HOSGIP returned value of "32" for HS_FDS_SQLLEN_INTERPRETATION
    setting HS_CALL_NAME_ISP to "gtw$:SQLTables;gtw$:SQLColumns;gtw$:SQLPrimaryKeys;gtw$:SQLForeignKeys;gtw$:SQLProcedures;gtw$:SQLStatistics;gtw$:SQLGetInfo"
    setting HS_FDS_DELAYED_OPEN to default of "TRUE"
    setting HS_FDS_WORKAROUNDS to default of "0"
    Exiting hgosdip, rc=0
    ORACLE_SID is "PSQL_REPORT"
    Product-Info:
    Port Rls/Upd:1/0 PrdStat:0
    Agent:Oracle Database Gateway for ODBC
    Facility:hsa
    Class:ODBC, ClassVsn:11.2.0.1.0_0008, Instance:PSQL_REPORT
    SQLFetch: row: 1, column 20, bflsz: 8, bflar: 8, (bfl: 8, mbl: 8)
    0: C1CAA145 B6F3ED3F [...E...?]
    SQLFetch: row: 1, column 21, bflsz: 8, bflar: 8
    SQLFetch: row: 1, column 21, bflsz: 8, bflar: 8, (bfl: 8, mbl: 8)
    0: 00000000 00005440 [......T@]
    SQLFetch: row: 1, column 22, bflsz: 16, bflar: -1
    SQLFetch: row: 1, column 22, bflsz: 16, bflar: SQL_NULL_DATA
    SQLFetch: row: 1, column 23, bflsz: 4, bflar: -1
    SQLFetch: row: 1, column 23, bflsz: 4, bflar: SQL_NULL_DATA
    SQLFetch: row: 1, column 24, bflsz: 65537, bflar: 0
    SQLFetch: row: 1, column 24, bflsz: 65537, bflar: 0, (bfl: 65536, mbl: 1000000)
    [root@stdb ~]# cat */etc/odbc.ini*
    [ODBC Data Sources]
    PSQL_REPORT = PostgreSQL
    [PSQL_REPORT]
    Driver = PostgreSQL
    Description = PostgreSQL_DSN
    DSN = PSQL
    Servername = 172.16.1.6
    Username = sysdba
    Password = ***
    Database = 3st_reports
    ReadOnly = No
    Servertype = postgres
    Port = 5432
    #FetchBufferSize = 1000
    #EnableQuotedIdentifiers = 1
    #TDS_Version = 8.0
    Trace=Yes
    TraceFile=/tmp/odbc.log
    [root@stdb ~]# cat */etc/odbcinst.ini *
    [ODBC]
    Trace=Yes
    TraceFile=/tmp/odbc.log
    # Included in the unixODBC package
    [PostgreSQL]
    Description     = ODBC for PostgreSQL
    Driver          = /usr/lib64/psqlodbcw.so
    Setup          = /usr/lib64/psqlodbcw.so
    FileUsage     = 1
    Debug = 1
    Edited by: 922067 on 20-Mar-2012 03:21

    Thank you for the answer.
    The table definition in postgres db:
    CREATE TABLE report_accident_detail
    id serial NOT NULL,
    accident_master_id integer NOT NULL,
    subscriber_id integer NOT NULL,
    unit_id integer NOT NULL,
    event_number integer,
    reg_number character varying(15),
    vin character varying(30),
    servertime_begin numeric(10,0),
    servertime_end numeric(10,0),
    event_datetime timestamp without time zone,
    event_address character varying(250),
    event_location character varying(23),
    latitude double precision,
    longitude double precision,
    area_id numeric(3,0),
    area_kind numeric(1,0),
    ignition_state smallint,
    accel_value_x double precision,
    accel_value_y double precision,
    accel_value_z double precision,
    vehicle_speed double precision,
    call_to_customer_datetime timestamp without time zone,
    is_customer_confirmed_accident integer,
    note character varying(4000),
    gen_datetime timestamp without time zone DEFAULT transaction_timestamp(),
    CONSTRAINT pk_accident_detail PRIMARY KEY (id ),
    CONSTRAINT fk_accident_detail_1 FOREIGN KEY (accident_master_id)
    REFERENCES report_accident_master (id) MATCH SIMPLE
    ON UPDATE RESTRICT ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED
    WITH (
    OIDS=FALSE
    ALTER TABLE report_accident_detail OWNER TO sysdba;

Maybe you are looking for

  • Reports: sort Data Page wise

    Hi, This is udayasrinu I have a requirement in reports example : In report should publish deptno wise page . If a new dept come across a new page should come. ex Page 1 deptno empno 10 7782 10 7369 Page 2 deptno empno 20 7781 20 7786

  • OutOfMemoryError immediately after starting SOA Server

    Hi, I have installed SOA suite 11.1.1.5 and weblogic 10.3.5 on my Windiws 7 64 bit machine with 8GB Ram. I have set the system variables to the following: EXTRA_JAVA_PROPERTIES: -Xms512m -Xmx512m path : C:\Program Files\Java\jre7\bin I have started W

  • Adobe Flash Player 10.1.51.66 Beta 2 not working

    I can not install the new Flash Player 10.1.51.66 for the IE. I use Windows 7 x64 and see only this Crash Error: Problemsignatur: Problemereignisname:     APPCRASH Anwendungsname:     flashplayer10_1_p2_activex_121709.exe Anwendungsversion:     10.1.

  • Premiere Pro CS3 -"Recording audio is not possible"?

    I am reinstalling Adobe Premiere Pro CS3 on a new computer but get the message "The currently installed soundcard driver does not support DirectSound Input. Recording audio is not possible". I have noted comments on similar sound problems elsewhere b

  • Consumers for distributed queues -- writing the JMS API

    Hi, I have Created a cluster MS_01 and MS_02. JmsServer-MS01 for MS_01 and JmsServer-MS02 for MS_02. Also have create a distributed queue called DistributedQueue-0 and a distributed connection factory called ConnectionFactory-0. I have been successfu