Error with list styles using image bullets

I cannot use list styles with image bullets in the mapping of
Framemaker documents. If I define and map a format with image
bullets, then Robohelp creates the correct HTML/CSS code but during
the Webhelp output forgets to copy the used image files to the
required locations. It is possible to manually copy the image files
into the output then the webhelp displays correctly but this is no
possible process for us on a regular basis.

Hi
It's to hard to Mind-Read.
What did the Error Message say ?
You are aware of the 99 photos per SlideShow limit in iDVD ?
I do My SlideShows in
• iMovie HD6 (or FinalCut) or
• FotoMagico
as there are less limit's here
Yours Bengt W

Similar Messages

  • Compiler Error with simple vi using MatLab script nodes

    While attempting to build a simple vi to test the capabilities of LabView's interface with MatLab, I received a compiler error message that said I should report the problem to National Instruments Tech Support. The error said, "reference to undefined label from: refPC=0x41C." I've attached the vi that created the error. I am using LabView 7.0 on a PC running Windows 98.
    Attachments:
    Compliererror.vi ‏11 KB

    I don't know if this will help your problem, but there is a fix for some problems with LabVIEW 7.0 and Matlab:
    http://digital.ni.com/public.nsf/websearch/4475BC3CEB062C9586256D750058F14B?OpenDocument
    Good luck,
    -Jim

  • Error with Links if using x3 primary keys

    Hi Folks:
    Here is the error code I'm receiving:
    ORA-01422: exact fetch returns more than requested number of rows
    Unable to fetch row.
    Background: I am using Application Express 3.2
    All of the pages I have created that rely on x2 primary keys (first_name, last_name) work fine.
    I have a table that has x3 primary keys: Table is called "time_off_awards". The x3 primary keys are: last_name, first_name, approval_date.
    I created a report that works properly and lists the awards for each person (each person can receive more than one award-on different dates).
    I also created an edit link that works properly IF *(only if)* each individual has only one award. If the individual has more than one award then I get the error above. When I set up the link I used all three keys. The x3 PK's should uniquely identify each row, but if the same last name/first name appear more than once (that is if the person has more than one award) I get the error. I thought at first maybe it was just not reading the 3rd key/part of the link (approval_date), but it shows properly if you move your cursor over the edit link.
    Here is a link to a screen pic of how I have my link set in Apex:
    [http://www.wczone.com/link_settings.gif]
    Here is a link to a pic of the report with some info:
    [http://www.wczone.com/report_link.gif]
    If needed, here is my table info:
    CREATE TABLE PERSONNEL.TIME_OFF_AWARDS (
    LAST_NAME VARCHAR2(40) NOT NULL,
    FIRST_NAME VARCHAR2(25) NOT NULL,
    APPROVAL_DATE DATE NOT NULL,
    HOURS_OFF NUMBER(3),
    CITATION VARCHAR2(1500),
    /* Keys */
    PRIMARY KEY (LAST_NAME, FIRST_NAME, APPROVAL_DATE),
    /* Foreign keys */
    CONSTRAINT TOA_PERSONNEL
    FOREIGN KEY (LAST_NAME, FIRST_NAME)
    REFERENCES PERSONNEL.MARC_PERSONNEL(LAST_NAME, FIRST_NAME)
    TABLESPACE PERSONNEL;
    Thanks for any help, I've tried looking at a couple of Apex books, but they didn't help much.
    Matt
    Edited by: user10495310 on Mar 4, 2009 8:21 AM

    Thank you everyone for the help and information you gave to me.
    Your ideas and advice helped me to think through the issues involved.
    The way i actually found to work around this issue was a little different.
    What I did was the following (which may only be usable with empty tables. If its possible to create a new column with a sequence and trigger on a table that already contains data it should work also):
    1. I removed the current PK's that were currently set.
    2. I added a single, unique PK (that used a sequence and trigger to automatically increment) to the table as was suggested in this thread and other APEX forum threads.
    3. I changed the link on the report so that it used the new PK, and also changed the PK used on the forms (under Processes - both the page rendering and page processing processes).
    The Difference:
    4. Next I changed the table (not by using APEX, but directly) from using the automatically generated ID as the PK, back to using the compound PK (x3 keys). I then added an constraint to make sure that the automatically generated column was unique. So now I have the compound PK that my supervisor wants us to use, and I'm able to use a unique, automatically generated key for APEX to use.
    I found also that if you already have a column that uses a unique/auto-generated key you can still use it with APEX without switching keys around.
    1. I added the new column to the sql in the reports source section so that the new column was searched (and then used 'hidden' so it wouldn't be displayed on the report users would see).
    2. You can still add the unique key under the processes on the form that is being linked too under the Primary key tabs. If its not a PK it won't show up in the pop up which is to the right of "Item Containing Primary Key Column Value" but it can be entered manually (i.e. p23_AUTO_ID) and it will work fine. You would also need to edit your form so that the auto ID that is being passed from the report is part of the form - but hidden if desired).

  • Property loader in .csv Format : Error with list of Numbers

    Hi,
    I need to change property files from the .xls format to the .csv format so that I won't need to install Ms Office on the Test Station PC.
    Everything works is .csv format except for variales containing lists of numbers.  Here is an example.
    This variable contains the channel list to send to a Digital Multimeter.  A string containing all channel numbers seperated by comas (The DMM model is Agilent  34070A). 
    I create a variable named ChannelList of type string containing : "101,102,103,104,105"
    When exporting to property file (Using Tools-Import/Export properties), TestStand will write the following line is .csv format :
    ChannelList,"101,102,103,104,105"
    When trying to import this property value with a property loader I get the following error :
    Runtime Error Occured
    Error evaluating expression:Runstate.Sequence.locals.ChannelList = (""101")
    Unexpected Token: 101
    What puzzles me is that teststand is not even capable of reading its own exported property within a newly created file.
    Any ideas?
    TestStand 2013
    Thanks in advance
    Nien

    Nien,
    This is a known issue and we are looking into this issue in future version of TestStand.
    There are couple of approaches for fixing the problem:
    1. Use a different character for comma in the property loader file. After importing the data, replace the character with comma using TestStand expression in the sequence file.
    2. Use Tab Delimited Text format instead of CSV format.
    3. We can see that, property loader is using expression to update the value of the property (The exact expression is specified in the error message you have posted). In a text editor, update the csv file to have the value as
    ChannelList,101""+Chr(44)+""102""+Chr(44)+""103""+Chr(44)+""104""+Chr(44)+""105
    This will create the expression such that, the value of ChannelList property will become 101,102,103,104,105
    Note: This is just a workaround and you should use this approach with caution.
    Thanks,
    Shashidhar

  • Error with syspreped windows 7 image related to capisp.dll execution...

    Hi Folks,
    some time ago I crafted an windows 7 image with sysprep generalization for WDS deployment. In real there are 2 images: one dumped w/o sysprep and the another w/ (dumping with ImageX Tool from WAIK for W7/W2K8R2). The syspreped one I delivered to our WDS
    Server. In the past I made several changes based on the non-syspreped image (incl. WUs) and afterward I've generated a new syspreped version from it. ...and now, since the last revision und sysprep run the last syspreped version (stored at the WDS) is no longer
    installable onto any target machine... Ervery time I tried to deploy this version from the WDS at the target machine an error popup occurs and says that this image cannot be installed at this target machine type (see *** - the german message). Examinig the
    SETUPACT.LOG / SETUPERR.LOG files the following problem has been stated:
    2010-06-21 14:22:54, Info       [0x0f0081] SYSPRP LaunchDll:Successfully executed 'C:\Windows\System32\sppnp.dll,Sysprep_Specialize_Pnp' without error
    2010-06-21 14:22:54, Info       [0x0f008b] SYSPRP RunRegistryDlls:Found entrypoint in registry at SOFTWARE\Microsoft\Windows\CurrentVersion\Setup\SysPrep\Specialize\{2172c981-2c23-e969-b30d-046ffeeb096e}; will try to launch 'C:\Windows\system32\capisp.dll,CryptoSysPrep_Specialize'
    2010-06-21 14:22:54, Info       [0x0f0080] SYSPRP LaunchDll:Found 'C:\Windows\system32\capisp.dll,CryptoSysPrep_Specialize'; executing it
    2010-06-21 14:22:54, Info                         capisp.dll::CheckIFCryptoSysPrepSpecialized: returning 0
    2010-06-21 14:22:55, Info                         capisp.dll::CryptoSysPrep_Specialize: assigned CAPI machine guid "44d42aa2-dee4-4023-bea5-d2f166bbb42c"
    2010-06-21 14:22:55, Info                         capisp.dll::DisableAdministratorIfApplicable disabled the admin account.
    2010-06-21 14:22:55, Info                         capisp.dll::CryptoSysPrep_Specialize: returning 5
    2010-06-21 14:22:55, Error      [0x0f0082] SYSPRP LaunchDll:Failure occurred while executing 'C:\Windows\system32\capisp.dll,CryptoSysPrep_Specialize', returned error code 5[gle=0x000003e5]
    2010-06-21 14:22:55, Info                  IBS    Callback_Specialize: Internal Providers Specialized Failed. System can't proceed to handle Internal Providers
    2010-06-21 14:22:55, Info                  IBS    Callback_Specialize: Specialize return: [5]
    2010-06-21 14:22:55, Error      [0x060435] IBS    Callback_Specialize: An error occurred while either deciding if we need to specialize or while specializing; dwRet = 0x5
    2010-06-21 14:22:55, Info       [0x0640ae] IBSLIB PublishMessage: Publishing message [***Windows kann nicht für die Ausführung auf der Hardware dieses Computers konfiguriert werden.]
    The mentioned error is the only one.
    ANY help is very appreciated!
    From Colonel Gizmo

    Hi,
    Regarding the returned error code, error code 0x5 is a “Access denied” error. It seems that the sysprep disables the administrator account, it can’t
    process the capisp.dll and pass CryptoSysPrep_Specialize. To resolve this kind of issue, I would like to suggest:
    1.       
    Ensure that you deploy image running as Administrator account.
    2.       
    Mount the image and check if the capisp.dll file exists and try taking ownership of it.
    3.       
    Open Registry Editor and navigate to the following path:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup\Sysprep\Specialize
    Check if there is an entry with the Data:
    C:\Windows\system32\capisp.dll,CryptoSysPrep_Specialize , make sure it is spelled correctly and check the permissions on the above key.
    4.       
    Then deploy again.
    Best Regards
    Dale
    Please remember to click “Mark as Answer” on the post that helps you.

  • Error with Do Not use SOAP envelope

    All,
    I used the do not send SOAP envelope option in the SOAP receiver adapter.
    Instead of XSLT, I used JAVA mapping to create the entire SOAP message ( Am more comfortable with Java and this is just a trial) , and this is the output of my java mapping with the SOAP envelope created,
    <i><?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://www.w3.org/2001/12/soap-envelope"soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding"><soap:Header></soap:Header><soap:Body><ns1:GetQuote xmlns:ns1="http://www.webserviceX.NET/"><ns1:symbol>SAP</ns1:symbol></ns1:GetQuote></soap:Body></soap:Envelope></i>
    Am using the STOCK Quote for testing purposes and this is the error I am getting when testing my interface,
    <i><faultstring>System.Web.Services.Protocols.SoapException: Server found request content type to be '', but expected 'text/xml'. at System.Web.Services.Protocols.SoapServerProtocol.ReadParameters() at System.Web.Services.Protocols.WebServiceHandler.Invoke() at System.Web.Services.Protocols.WebServiceHandler.CoreProcessRequest()</faultstring></i>
    Any directions  / inputs on how to resolve this issue?
    Regards,
    Bhavesh

    Henrique,
    Tried various permutations~~ The only new error / progress seems to be for this,
    SOAPAction    "http://www.webserviceX.NET/GetQuote" 
    This is giving me an error ,
    <i>HTTP server code 400 reason Bad Request explanation <h1>Bad Request (Invalid Header Name)</h1></i>
    Also, tried by adding the Colon after SOAPAction,
    SOAPAction: "http://www.webserviceX.NET/GetQuote"
    Same error
    Final thing i guess is to make SOAPAction all small as soapaction and check if it works. Will let you know.
    Regards,
    Bhavesh

  • I use blackboard, since the latest update to 3.6.14, I get errors with caching applets, use IE and works fine. Whats happened and what can I do to resolve it?

    Error Cache:
    Unable to update files in cache.
    Name: myApplet
    java.net.MalformedURLException: no protocol: jar/dragndrop_applet.jar
    I get a bunch of these Cache Errors. Happens with application only, its blackboard hosted by continuinged.uml.edu.
    Run the same thing using IE it has no problems. Firefox till the latest upgrade was also working fine.
    What can I do to resolve this problem?

    There's a bug in 3.6.14 with Java applets. 3.6.15 was released last Friday to fix that bug. Use '''Help > Check for Updates''' to start the update process to 3.6.15.

  • Parsing errors with CDATA tags using oracle xml parser v2

    I'm using the oracle.xml.parser.v2 parser to combine a
    generated xml document from a database with a static
    xsl file to produce html. Within the xml document, there
    are fairly large CDATA sections (500 lines) which happen
    to contain javaScript.
    Occasionally, I'm getting xml tags in the final html
    document! It seems that the oracle parser pukes
    on a certain type of data within a CDATA tag, and then
    replaces an angle bracket (<) of a tag with a #60. This
    can cause html tags being viewed in the document. At
    first, I thought the amount of JavaScript within the
    CDATA tag was too large for the parser to handle,
    because when I split it up into 2 or more parts the errors
    went away. But, re-arranging the JavaScript (String in the CDATA tag)
    can make the errors disappear. And, if I
    use the Saxon parser to manually combine the xsl with
    the xml, the output is fine. If anyone knows that this is
    a confirmed bug by Oracle, or any other relevant info on
    this, please let me know.

    Hi,
    Your lucky, i've just finished a project that used the oracle parser extensively.
    I think the problem may stem from your xsl. Although your cdata tags may be well formed, in the xsl you might need to escape the text again, this may mean that the xsl needs to print a further cdata tag around the data. This is because the parser (well the version I was using) strips the cdata tags before the transformation happens.
    This is the probably the cause of the nasty html output.

  • Error with decimal value using DG4MSQL

    Hello,
    when i make an update on a numeric column [numeric(38,15)] of a database table residing on a MS-SQL-Server 2005 it works fine when the value has no decimal part:
    declare
    v_test1 number := 1;
    begin
      update CUSTOMER@DBL_MSSQL4 set "freenumber1" = v_test1;
    commit;
    end;
    /But if i use a value with a decimal part it gets an error
    declare
    v_test1 number := 1.2;
    begin
      update CUSTOMER@DBL_MSSQL4 set "freenumber1" = v_test1;
    commit;
    end;
    /Error message:
    ORA-28500: Verbindung von ORACLE zu Fremdsystem gab diese Nachricht zurück:
    [Oracle][ODBC SQL Server Driver]Ungültiger Zeichenwert für  Konvertierungsangabe
    ORA-02063: vorherige 2 lines von DBL_MSSQL4
    ORA-06512: in Zeile 7And here is the trace:
    Oracle Corporation --- MONTAG     MRZ 08 2010 15:20:14.940
    Heterogeneous Agent Release
    11.1.0.6.0
    Oracle Corporation --- MONTAG     MRZ 08 2010 15:20:14.940
        Version 11.1.0.6.0
    Entered hgogprd
    HOSGIP for "HS_FDS_TRACE_LEVEL" returned "DEBUG"
    Entered hgosdip
    setting HS_OPEN_CURSORS to default of 50
    HOSGIP returned value of "RECOVER" for HS_FDS_RECOVERY_ACCOUNT
    HOSGIP returned a value for HS_FDS_RECOVERY_PWD
    setting HS_FDS_TRANSACTION_LOG to default of "HS_TRANSACTION_LOG"
    setting HS_FDS_TRANSACTION_ISOLATION to default of "READ_COMMITTED"
    setting HS_NLS_NCHAR to default of "AL16UTF16"
    setting HS_FDS_TIMESTAMP_AS_DATE to default of "TRUE"
    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_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 "FALSE"
    setting HS_CALL_NAME_ISP to "gtw$:SQLTables;gtw$:SQLColumns;gtw$:SQLPrimaryKeys;gtw$:SQLForeignKeys;gtw$:SQLProcedures;gtw$:SQLStatistics"
    Exiting hgosdip, rc=0
    ORACLE_SID is "DG4MSQL"
    Product-Info:
      Port Rls/Upd:6/0 PrdStat:0
      Agent:Oracle Database Gateway for MSSQL
      Facility:hsa
      Class:MSSQL, ClassVsn:11.1.0.6.0_0006, Instance:DG4MSQL
    Exiting hgogprd, rc=0
    Entered hgoinit
    HOCXU_COMP_CSET=1
    HOCXU_DRV_CSET=178
    HOCXU_DRV_NCHAR=2000
    HOCXU_DB_CSET=178
    HOCXU_SEM_VER=102000
    Entered hgolofn at 2010/03/08-15:20:14
    RC=-1 from HOSGIP for "PATH"
    PATH from environment is "D:\oracle\product\10.2.0\db_1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\IBM\Informix\Client-SDK\bin;C:\Programme\Microsoft SQL Server\90\Tools\binn\;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\WINDOWS\system32\WindowsPowerShell\v1.0"
    Exiting hgolofn, rc=0 at 2010/03/08-15:20:14
    HOSGIP for "HS_OPEN_CURSORS" returned "50"
    HOSGIP for "HS_FDS_FETCH_ROWS" returned "100"
    HOSGIP for "HS_LONG_PIECE_TRANSFER_SIZE" returned "65536"
    HOSGIP for "HS_NLS_NUMERIC_CHARACTER" returned ".,"
    Exiting hgoinit, rc=0 at 2010/03/08-15:20:14
    Entered hgolgon at 2010/03/08-15:20:14
    reco:0, name:testuju, tflag:0
    Entered hgosuec at 2010/03/08-15:20:14
    uencoding=UTF16
    Entered shgosuec at 2010/03/08-15:20:14
    Exiting shgosuec, rc=0 at 2010/03/08-15:20:14
    shgosuec() returned rc=0
    Exiting hgosuec, rc=0 at 2010/03/08-15:20:14
    HOSGIP for "HS_FDS_RECOVERY_ACCOUNT" returned "RECOVER"
    HOSGIP for "HS_FDS_TRANSACTION_LOG" returned ""HS_TRANSACTION_LOG""
    HOSGIP for "HS_FDS_TIMESTAMP_AS_DATE" returned "TRUE"
    HOSGIP for "HS_FDS_CHARACTER_SEMANTICS" returned "FALSE"
    HOSGIP for "HS_FDS_MAP_NCHAR" returned "TRUE"
    HOSGIP for "HS_FDS_RESULT_SET_SUPPORT" returned "FALSE"
    HOSGIP for "HS_FDS_PROC_IS_FUNC" returned "FALSE"
    HOSGIP for "HS_FDS_REPORT_REAL_AS_DOUBLE" returned "FALSE"
    using testuju as default value for "HS_FDS_DEFAULT_OWNER"
    HOSGIP for "HS_SQL_HANDLE_STMT_REUSE" returned "FALSE"
    Entered hgocont at 2010/03/08-15:20:14
    HS_FDS_CONNECT_INFO = "OBELIXUS//testuju"
    RC=-1 from HOSGIP for "HS_FDS_CONNECT_STRING"
    Entered hgogenconstr at 2010/03/08-15:20:14
    dsn:OBELIXUS//testuju, name:testuju
    optn:
    Entered shgogohn at 2010/03/08-15:20:14
    ohn is 'OraGtw11g_home1'
    Exiting shgogohn, rc=0 at 2010/03/08-15:20:14
    Entered hgocont_OracleCsidToIANA at 2010/03/08-15:20:14
    Returning 2252
    Exiting hgocont_OracleCsidToIANA at 2010/03/08-15:20:15
    ##>Connect Parameters (len=211)<##
    ## DRIVER=Oracle 11g dg4msql-OraGtw11g_home1;
    ## SERVER=OBELIXUS;
    ## Database=testuju;
    #! UID=testuju;
    #! PWD=*
    ## AnsiNPW=Yes;
    ## QuotedId=Yes;
    ## IANAAppCodePage=2252;
    ## ArraySize=100;
    ## PadVarbinary=0;
    ## SupportNumericPrecisionGreaterThan38=1;
    Exiting hgogenconstr, rc=0 at 2010/03/08-15:20:15
    DriverName:HGmsss22.dll, DriverVer:05.20.0053 (b0041, u0024)
    DBMS Name:Microsoft SQL Server, DBMS Version:09.00.3068
    Exiting hgocont, rc=0 at 2010/03/08-15:20:15
    SQLGetInfo returns Y for SQL_CATALOG_NAME
    SQLGetInfo returns 128 for SQL_MAX_CATALOG_NAME_LEN
    Exiting hgolgon, rc=0 at 2010/03/08-15:20:15
    Entered hgoulcp at 2010/03/08-15:20:15
    Entered hgowlst at 2010/03/08-15:20:15
    Exiting hgowlst, rc=1 at 2010/03/08-15:20:15
    SQLGetInfo returns Y for SQL_PROCEDURES
    Exiting hgoulcp, rc=0 at 2010/03/08-15:20:15
    Entered hgouldt at 2010/03/08-15:20:15
    Exiting hgouldt, rc=0 at 2010/03/08-15:20:15
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber1
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber2
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber3
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber4
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber5
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber6
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber7
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber8
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber9
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber10
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber11
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber12
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber13
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber14
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber15
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber16
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber17
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber18
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber19
      3 DECIMAL       Y         41         41  38/ 15    0   0   0 freenumber20
    91 DATE          Y         16         16   0/  0    0   0   0 freedate1
    91 DATE          Y         16         16   0/  0    0   0   0 freedate2
    91 DATE          Y         16         16   0/  0    0   0   0 freedate3
    91 DATE          Y         16         16   0/  0    0   0   0 freedate4
    91 DATE          Y         16         16   0/  0    0   0   0 freedate5
    91 DATE          Y         16         16   0/  0    0   0   0 freedate6
    91 DATE          Y         16         16   0/  0    0   0   0 freedate7
    91 DATE          Y         16         16   0/  0    0   0   0 freedate8
    91 DATE          Y         16         16   0/  0    0   0   0 freedate9
    91 DATE          Y         16         16   0/  0    0   0   0 freedate10
    91 DATE          Y         16         16   0/  0    0   0   0 freedate11
    91 DATE          Y         16         16   0/  0    0   0   0 freedate12
    91 DATE          Y         16         16   0/  0    0   0   0 freedate13
    91 DATE          Y         16         16   0/  0    0   0   0 freedate14
    91 DATE          Y         16         16   0/  0    0   0   0 freedate15
    91 DATE          Y         16         16   0/  0    0   0   0 freedate16
    91 DATE          Y         16         16   0/  0    0   0   0 freedate17
    91 DATE          Y         16         16   0/  0    0   0   0 freedate18
    91 DATE          Y         16         16   0/  0    0   0   0 freedate19
    91 DATE          Y         16         16   0/  0    0   0   0 freedate20
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean1
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean2
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean3
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean4
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean5
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean6
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean7
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean8
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean9
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean10
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean11
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean12
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean13
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean14
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean15
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean16
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean17
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean18
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean19
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean20
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean21
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean22
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean23
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean24
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean25
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean26
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean27
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean28
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean29
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean30
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean31
      3 DECIMAL       Y          3          3   1/  0    0   0   0 freeboolean32
    12 VARCHAR       Y         50         50   0/  0    0   0   0 custtypekey
    -4 LONGVARBINARY Y          0          0   0/  0    0   0  20 logo
      3 DECIMAL       Y          3          3   1/  0    0   0   0 Active
    91 DATE          N         16         16   0/  0    0   0   0 CreateDate
    12 VARCHAR       Y         50         50   0/  0    0   0   0 CreateUser
    91 DATE          N         16         16   0/  0    0   0   0 UpdateDate
    12 VARCHAR       Y         50         50   0/  0    0   0   0 UpdateUser
    12 VARCHAR       Y         50         50   0/  0    0   0   0 Status
    12 VARCHAR       Y         50         50   0/  0    0   0   0 WFInstanceId
    12 VARCHAR       Y         50         50   0/  0    0   0   0 RightPk
      3 DECIMAL       Y         12         12  10/  0    0   0   0 ClientNo
      3 DECIMAL       Y          3          3   1/  0    0   0   0 MassData
      3 DECIMAL       Y          3          3   1/  0    0   0   0 OfflineData
    12 VARCHAR       Y         50         50   0/  0    0   0   0 PersonPk
    Exiting hgodscr, rc=0 at 2010/03/08-15:20:16
    Entered hgotcis at 2010/03/08-15:20:16
    Calling SQLStatistics for CUSTOMER
    Calling SQLColumns for testuju.CUSTOMER
    Exiting hgotcis, rc=0 at 2010/03/08-15:20:16
    Entered hgoclse, cursor id 1 at 2010/03/08-15:20:16
    Exiting hgoclse, rc=0 at 2010/03/08-15:20:16
    Entered hgodafr, cursor id 1 at 2010/03/08-15:20:16
    Exiting hgodafr, rc=0 at 2010/03/08-15:20:16
    Entered hgopars, cursor id 1 at 2010/03/08-15:20:16
    type:0
    SQL text from hgopars, id=1, len=39 ...
         00: 41445055 22204554 54535543 52454D4F  [UPDATE "CUSTOMER]
         10: 45532022 66222054 6E656572 65626D75  [" SET "freenumbe]
         20: 20223172 3D203F                      [r1" = ?]
    Exiting hgopars, rc=0 at 2010/03/08-15:20:16
    Entered hgoexec, cursor id 1 at 2010/03/08-15:20:16
    octype=2
    hgoexec, line 91: Printing hoada @ 02175BCC
    MAX:1, ACTUAL:1, BRC:1, WHT=3
    DTY         NULL-OK  LEN  MAXBUFLEN   PR/SC  CST IND MOD NAME
      3 DECIMAL N         65          0   0/  0    0   0   0 ?
    Entered hgoprbv at 2010/03/08-15:20:16
    hgoprbv, line 119: Printing hoada @ 02175BCC
    MAX:1, ACTUAL:1, BRC:1, WHT=3
    DTY         NULL-OK  LEN  MAXBUFLEN   PR/SC  CST IND MOD NAME
      3 DECIMAL N         65          0   0/  0    0   0   0 ?
    Exiting hgoprbv, rc=0 at 2010/03/08-15:20:16
    Entered hgopoer at 2010/03/08-15:20:16
    hgopoer, line 159: got native error 0 and sqlstate 22018; message follows...
    [Oracle][ODBC SQL Server Driver]Ungültiger Zeichenwert für  Konvertierungsangabe
    Exiting hgopoer, rc=0 at 2010/03/08-15:20:16
    hgoexec, line 216: calling SQLExecute got sqlstate 22018
    nrows:0
    Exiting hgoexec, rc=28500 at 2010/03/08-15:20:16 with error ptr FILE:hgoexec.c LINE:216 ID:Executing SQL stmt
    Entered hgocomm at 2010/03/08-15:24:22
    keepinfo:0, tflag:1
       00: 44555248 45522E42 53455247 44522E53  [HRUDB.REGRESS.RD]
       10: 2E534D42 2E564544 4F2E5355 4C434152  [BMS.DEV.US.ORACL]
       20: 4F432E45 65312E4D 33366465 322E6631  [E.COM.1eed631f.2]
       30: 2E34332E 38363832 31                 [.34.28681]
                     tbid (len 10) is ...
       0: 00220002 00007009 0104               [.."..p....]
    cmt(0):
    Entered hgocpctx at 2010/03/08-15:24:22
    Exiting hgocpctx, rc=0 at 2010/03/08-15:24:22
    Exiting hgocomm, rc=0 at 2010/03/08-15:24:22
    Entered hgolgof at 2010/03/08-15:24:22
    tflag:1
    Exiting hgolgof, rc=0 at 2010/03/08-15:24:22
    Entered hgoexit at 2010/03/08-15:24:22
    Exiting hgoexit, rc=0 at 2010/03/08-15:24:22The init file for the DG4MSQL look like this:
    HS_FDS_CONNECT_INFO=OBELIXUS//testuju
    HS_FDS_TRACE_LEVEL=DEBUG
    HS_FDS_RECOVERY_ACCOUNT=RECOVER
    HS_FDS_RECOVERY_PWD=RECOVERAny ideas what i have to change to be able to update numeric columns with values containing a deciomal part using DG4MSQL?
    Many thanks in advance for any help.
    Regards Hartmut

    Hello Mike,
    here the results of the given select statements:
    select * from NLS_DATABASE_PARAMETERS;
    NLS_LANGUAGE          AMERICAN
    NLS_NCHAR_CHARACTERSET     AL16UTF16
    NLS_TERRITORY          AMERICA
    NLS_CURRENCY          $
    NLS_ISO_CURRENCY     AMERICA
    NLS_NUMERIC_CHARACTERS     .,
    NLS_CHARACTERSET     WE8MSWIN1252
    NLS_CALENDAR          GREGORIAN
    NLS_DATE_FORMAT          DD-MON-RR
    NLS_DATE_LANGUAGE     AMERICAN
    NLS_SORT          BINARY
    NLS_TIME_FORMAT          HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT     DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT     HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT     DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY     $
    NLS_COMP          BINARY
    NLS_LENGTH_SEMANTICS     BYTE
    NLS_NCHAR_CONV_EXCP     FALSE
    NLS_RDBMS_VERSION     10.2.0.4.0select * from NLS_INSTANCE_PARAMETERS ;
    NLS_LANGUAGE          GERMAN
    NLS_TERRITORY          GERMANY
    NLS_SORT     
    NLS_DATE_LANGUAGE     
    NLS_DATE_FORMAT     
    NLS_CURRENCY     
    NLS_NUMERIC_CHARACTERS     
    NLS_ISO_CURRENCY     
    NLS_CALENDAR     
    NLS_TIME_FORMAT     
    NLS_TIMESTAMP_FORMAT     
    NLS_TIME_TZ_FORMAT     
    NLS_TIMESTAMP_TZ_FORMAT     
    NLS_DUAL_CURRENCY     
    NLS_COMP     
    NLS_LENGTH_SEMANTICS     BYTE
    NLS_NCHAR_CONV_EXCP     FALSEselect * from NLS_SESSION_PARAMETERS ;
    NLS_LANGUAGE          GERMAN
    NLS_TERRITORY          GERMANY
    NLS_CURRENCY          €
    NLS_ISO_CURRENCY     GERMANY
    NLS_NUMERIC_CHARACTERS     ,.
    NLS_CALENDAR          GREGORIAN
    NLS_DATE_FORMAT          MM/DD/YYYY HH24:MI:SS
    NLS_DATE_LANGUAGE     GERMAN
    NLS_SORT          GERMAN
    NLS_TIME_FORMAT          HH24:MI:SSXFF
    NLS_TIMESTAMP_FORMAT     DD.MM.RR HH24:MI:SSXFF
    NLS_TIME_TZ_FORMAT     HH24:MI:SSXFF TZR
    NLS_TIMESTAMP_TZ_FORMAT     DD.MM.RR HH24:MI:SSXFF TZR
    NLS_DUAL_CURRENCY     €
    NLS_COMP          BINARY
    NLS_LENGTH_SEMANTICS     BYTE
    NLS_NCHAR_CONV_EXCP     FALSEThat was easy, but how and where to read the settings of the MS-SQL-Server?
    All i can find is
    Sprache               Deutsch (Deutschland)
    Standardsprache          EnglischI have defined one more parameter in the ini<...>.ora file:
    HS_LANGUAGE=AMERICAN_AMERICA.WE8MSWIN1252and now it works!
    (With "HS_LANGUAGE=GERMAN_GERMANY.WE8MSWIN1252" is gives the same old error.)
    Many thanks for your help!
    Reagrds Hartmut

  • Error with crystal report using SAP GUI

    Hi,
    While using crystal report in sap gui i get the following error. I already googled and only found one thing on this forum that talks about this and it was never solve. Can you please help me? Thank you
    Errors in Crystal Reports Installation(SupportsSAPQuery)
    Message no.ALVHT218
    Diagnosis:
    This function requires that Seagate Crystal Reports and the Functional Area drivers(InfosetDrivers) from Seagate software are installed.
    This sotware is either not available on your frontend or has been installed with errors
    System Response:
    The action has been terminated
    Once again
    thank you

    Hi
    Please check if you have installed all the SAP transports which are required for Crystal Reports to run based off SAP.
    Regards
    Sourashree

  • Getting errors with tag lib using Web Service

    I have created a web service client in my WEB-INF/classes catalogue. Im having problems because i get this error message when I compile:
    myServices/myCardValidate$Documents/verifyCreditCard_SOAPXML.jsp [-1:-1] This absolute uri (http://java.sun.com/jstl/core) cannot be resolved in either web.xml or the jar files deployed with this application
    myServices/myCardValidate$Documents/verifyCreditCard_TAGLIB.jsp [-1:-1] File "/WEB-INF/Service1Soap.tld" not found
    Errors compiling Web module compiling..
    anyone got a clue ?
    My other .jsp pages located in the WEB-INF catalogue has the http://java.sun.com/jstl/core uri and works fine...
    thanks in advance..

    Answering my own post to help others with the same problem:
    Im using Sun One Studio 5. What causes the error is that Sun Studio generates by default presentation jsp's etc. for the Web service client. At the properties tab of the client I set the Generate presentation parameter to False. No presentation jsp's are now generated and compiling and deployment of the web module works out fine.
    yours Aqoiiye

  • URGENT!! ERROR WITH EXPIRED CERTIFICATE USING JDK 1.4.2.05

    Hi,
    I have created a client/server application with SSL and have found the following problem.
    I have made these two tests:
    1) jdk 1.4.2.03 --> the certificate is expired, I obtain this exception "No trusted certificate found". it's ok
    2) jdk 1.4.2.06 --> the certificate is expired, no error occurs. WHY?????
    Someone can help me?
    Gianna

    The problem is not the expired certificate! I know that it is expired, but I don't understand why using jdk 1.4.2.05 this certificate is not recognize invalid.
    With this jdk the channel is created. Using jdk 1.4.2.03 instead the certificate was recognized expired and the channel is not created between client and server.
    For me the correct behavior has with the old version of the JDK and not the new.
    WHY?????

  • Error while listing tables using OMB script

    Hi All,
    I'm just trying to list certain tables in OWB that contain a specific column but the following script I wrote is not working:
    foreach tablename [OMBLIST TABLE TMP*] {
    set columnlist [OMBRETRIEVE TABLE '$tablename' GET COLUMNS];
    if {[lsearch $columnlist 'ID'] != -1} {
    puts "Table: $tablename";
    It returns the next error message:
    OMB01036: Object type must be plural.
    I've been searching for any documentation about this error but haven't found anything.
    Any help would be highly appreciated as I'm starting to learn about OMB scripts.
    Regards,
    Mauricio

    I tried that before and I got this error:
    OMB00001: Encountered TMP* at line:1 column:16. Was expecting one of: <EOF> <QUOTED_STRING>...
    It is strange because I wrote the code based on oracle documentation examples (Introduction to OMB Plus).
    I also tried removing the "TMP*" just to see if that worked, even though I only want to check for tables which name start with TMP, and at least it doesn't return any error but It doesn't list any table either (and I'm pretty sure there are tables that satisfy the conditions). The script right now is:
    foreach tablename [OMBLIST TABLES] {
    set columnlist [OMBRETRIEVE TABLE '$tablename' GET COLUMNS];
    if {[lsearch $columnlist 'ID'] != -1} {
    puts "Table: $tablename";
    I guess the solution must be simple but I can't see it. Any help?

  • Render error with h.264 and Image sequence

    Hi,
    I have simple animation I want to render out. Problem is when I export it as h.264, error happens on one frame like you can see here.
    Whith image sequence, Motion will render skipping frames here and there so some part are just fine, but some part are not.
    Also some frame has same green error just like with h.264. I'm rendering as PNG.
    I also tested rendering as Prores HQ and that one came just fine. Weird isn't it?!?
    Any idea what might cause this?
    I need h.264 for preview purpose and final result as image sequence...
    Thanks
    Message was edited by: Raty Better title and tags

    Hi,
    Thanks for response. Sorry, but I can not share project file since it's client work.
    Anyway, I think latest 5.0.3 update might be issue. My Mac setup is OSX 10.7.3 on Macbook Pro (2010) with i7 and GeForce GT 330M.
    I have also older Macbook (I think it's 2008 model with only version of unibody Macbook) which has also same OSX 10.7.3, but Motion 5.0.2. Tested with very same project and rendered out without any problem!
    So, is there any way to reinstall one step older version of Motion after installing 5.0.3???

  • Error with Business Rules using Cmdline in Hyperion Planning 11.1.1.3

    Dear all,
    When I want to run an HBR, I have an error and I don't know where it does come from:
    C:\Hyperion\products\Essbase\eas\console\bin>CmdLnLauncher -p:password.txt -S"DG
    IWSXXX.ros.jc.org" -UIntegration -rRDG01_2 -fexp_file.xml
    com.hyperion.hbr.excp.ExceptionAdapter: Error while sending command to HBR Serve
    r running within the EAS server.
    at com.hyperion.hbr.transport.HBRCommandRequestor.<init>(Unknown Source)
    at com.hyperion.hbr.cmdlnlauncher.LaunchManager.connect(Unknown Source)
    at com.hyperion.hbr.cmdlnlauncher.CmdLineLauncher.main(Unknown Source)
    Detail:org.apache.xerces.dom.DocumentImpl.getXmlStandalone()Z
    Error while sending command to HBR Server running within the EAS server.
    2010-07-07 10:59:15,266 WARN main com.hyperion.hbr.cmdlnlauncher.CmdLineLauncher
    - Error while sending command to HBR Server running within the EAS server.
    Thank you for your help.
    Jérémy

    Hi Celvin,
    Planning 11.1.2.3 is installed on a Linux box.
    Moreover I couldn't find the folder names 'services' under the logs folder as mentioned by you.
    C:\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9EPMServer-sysout.log (if compact deployment)
    C:\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9Planning.log (if not compact)
    Nothing has been captured in
    C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EPMServer0\logs
    But i see that the Dimensions 'Employee' and 'Job' have been added in the Dimension list, which should have been added once the workforce is initialized.
    Regards,
    Raj

Maybe you are looking for

  • Problem ipod shuffle 4 gen. 2 Gb

    HI a few months ago my device ipod shuffle 2GB gives me problems on January 4,after about twenty minutes of sound crashes and not start again, to rehabilitate Iconnect it to iTunes. Another problem is that the green light sometimes it works sometimes

  • Exchange 2013 recipient filter working bad

    Hello, I have seen, that the recipient filter in Exchange 2013 is working a Little bit different like in the older Versions. Here an Example (Exchange 2013): <<<220 EX2013.test.local Microsoft ESMTP MAIL Service ready at ..... >>>helo test <<<250 EX2

  • Satellite L300D-135 - Certain keys stop working after several minutes

    Satellite L300D-135 (PSLC8E-02P013EN) model laptop, on cold boot the keyboard is fine. As things warm up the R and Y keys stop responding as do the 7890 keys. Might be heat related. The keyboard has been replaced but both old and new do the same thin

  • Looking for a less expensive program other than Photoshop CS6

    Looking for a less expensive program other than Photoshop CS6 and was wondering if Photoshop Elements is the answer. Does Photoshop Elements read PSD files, create layers, can you change the levels and color balance?

  • Loaded Iso 5 now no + in Calendar = cannot enter event?

    I have updated my iPhone with version iOS 5 now I am unable to enter a new event into my calendar. I have tried switching my phone off and restarting but this does not resolve the problem. I have also tried tapping the calendar date to open up the en