Truncated date format

Hi,
for creating a unique index with a date-column A_DATE I'm using a
calculated column X_DATE as (trunc(A_DATE)):
CREATE UNIQUE INDEX UX_A_TABLE
ON A_TABLE (
X_DATE
Using A_DATE in UX_A_TABLE would fail if someone would use sysdate two
times a day.
Is there a column-data-type restricted to truncated date format?
Regards
Sandeep

user13100082 wrote:
Hi,
for creating a unique index with a date-column A_DATE I'm using a
calculated column X_DATE as (trunc(A_DATE)):
CREATE UNIQUE INDEX UX_A_TABLE
ON A_TABLE (
X_DATE
Using A_DATE in UX_A_TABLE would fail if someone would use sysdate two
times a day.
Is there a column-data-type restricted to truncated date format?
Regards
SandeepAll the data types are documented in the fine SQL Reference manual.
Of course if you have a DATE datatype, and you limit it to just the date (eliminate time component) and also make it a unique constraint, you could only have one row per day. It sounds like you are looking for some magic data type that gets around this fundamental logic.

Similar Messages

  • Print a report on doc format truncate data

    hi
    I have a report launching with a form in an oracle applications, when I print a report on pdf format looks ok
    but when I print the same report on doc format truncate data on left and right side.
    Can you help me
    thanks

    Hi Herbe
    Reports does not support .doc format. Are you referring .rtf format?
    In any case, you must contact Oracle Support to get the issue resolved.
    Regards
    Sripathy

  • Date format truncation

    Hello,
    I have string representation of date in varchar datatype in the format 2006-08-17 10:00 [YYYY-MM-DD HH24:MI].
    I want to convert this varchar into DATE type.I was using the following function
    table_date := to_date(datestring,'yyyy-mm-dd hh24:mi:ss');
    Where datestring is string of the format [YYYY-MM-DD HH24:MI] as described above.
    Now the value of table_date is truncated version with just the current date and the hour and minute information removed and even the date format changed back to DD-MM-YY like 17-AUG-06.
    Can some one please suggest a way to convert a string in yyyy-mm-dd hh24:mi:ss to DATE of format yyyy-mm-dd hh24:mi:ss.
    Thanks
    Regards
    Prateek

    Hello,
    I got the following output
    SQL> declare
    2 table_date date;
    3 begin
    4 table_date := to_date('2006-08-17 10:00','yyyy-mm-dd hh24:mi:ss');
    5 DBMS_OUTPUT.PUT_LINE ( 'table_date = ' || table_date );
    6 DBMS_OUTPUT.PUT_LINE ( 'table_date = ' || to_char(table_date,'yyyy-mm-dd hh24:mi:ss') );
    7 end;
    8 /
    table_date = 17-AUG-06
    table_date = 2006-08-17 10:00:00
    PL/SQL procedure successfully completed.
    Which is same as you got.
    So do I need to change my date format of system???
    Thanks for your help!
    Regards
    Prateek

  • How to define the date format for this date string

    2006-11-13 00:00:00.0
    How to define the date format in control file for sqlldr. "yyyy-mm-dd hh24:mi:ss" or "yyyy-mm-dd hh24:mi:ss.FF1" does not work
    thanks,

    SQL> desc t
    Name                                      Null?    Type
    TS                                                 TIMESTAMP(6)
    SQL> !cat t.ctl
    load data
    into table t
    truncate
    (ts timestamp "YYYY-MM-DD HH24:MI:SS.FF1")
    SQL> !cat t.dat
    2006-11-13 00:00:00.0
    SQL> !sqlldr userid=scott/tiger control=t.ctl data=t.dat log=t.log
    SQL*Loader: Release 10.2.0.3.0 - Production on Fri Sep 7 11:19:28 2007
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Commit point reached - logical record count 1
    SQL> select * from t;
    TS
    13-NOV-06 12.00.00.000000 AMBest regards
    Maxim

  • RE: Oracle DATE data format conversion..

    <C.M> Motta's question about dates and oracle>
    Dealing with dates and Oracle is somewhat of a nuisance. Oracle is very
    particular about how date strings are formatted, and if you get it wrong,
    you get the (unhelpful) message that C.M. Motta showed us. However, if
    you pass a DateTimeData to Oracle, Forte' does the right formatting for you.
    If you do need to format the date prior to interacting with Oracle, use the
    following format:
    dd-mmm-yy <time component>
    You can change the default format, but it is not easy.
    If you customise Express generated code that interacts with an Oracle
    database, again, make sure that you pass a DateTimeData, and not the
    .TextValue.
    Good luck!
    Richard Kirk

    Date: Wed, 06 Nov 1996 08:18:37 -0500
    To: "C. M. Motta" <[email protected]>
    From: Jim Milbery <[email protected]>
    Subject: Re: Oracle DATE data format conversion..
    Cc: [email protected]
    Cheers:
    Most likely what is happening is that you are using the default date
    format of Oracle, and you are sending a four-character year. As follows:
    SQL> insert into jimbo values ('01-dec-1997')
    2 /
    insert into jimbo values ('01-dec-1997')
    ERROR at line 1:
    ORA-01830: date format picture ends before converting entire inputstring
    >
    Oracle defaults to a format of 'dd-MON-yy'
    You can either truncate the year, or manipulate the date to match the standard
    database as follows:
    insert into jimbo values (to_Date('01-jan-1997', 'DD-MON-YYYY'))
    \jimbo
    At 09:21 AM 11/6/96 -0200, you wrote:
    Forte Users,
    First, Id like to thank all those who answered my question on
    droplist & SQL. I got just what I was looking for: its up and runnunig
    now.
    I have another question: Im trying to insert a DATE into an Oracle
    database. The source date is:
    data : DateTimeData = new;
    data.SetCurrent();
    So, when I try to insert data.Value or data.textvalue into DB, I
    get the following exception:
    ORA-01830: date format picture ends before converting entire
    input string.
    Are there any suggestions?
    Thanks for your help,
    C.M. Motta
    ====================================================================
    Jim Milbery
    Milbery Consulting Group
    132 N. West St., Allentown, PA 18102
    O: 610 - 432 - 5350 F: 610 - 432 - 5380
    E-Mail : [email protected]
    ====================================================================

  • Date Format in SQL Loader

    Dear All,
    I have a table CMS_HO where I have defined different columns. One column is of date type STATUS_DATE. I want to upload one ASCII file where one field is in the format like below:
    5/26/2008 12:41
    5/26/2008 8:51
    5/28/2008 9:01
    5/28/2008 13:54
    5/13/2008 10:45
    4/6/2008 9:21
    I want to upload file into Oracle database. Currently I am using following control file:
    LOAD DATA
    INTO TABLE CMS_HO TRUNCATE
    FIELDS TERMINATED BY "\t"
    TRAILING NULLCOLS
    ( ID,EXPIRYDATE, VER, SN, STATUS_DATE)
    There seems error in the STATUS_DATE field in control file. Can any one help how to modify this Control file so that data against this field can be uploaded into date format please?
    Thanks

    Here's an example i pulled from the web on specifying the date format in a control file.
    http://infolab.stanford.edu/~ullman/fcdb/oracle/or-load.html#loading%20date%20data
    Based on the sample data you provided, i think this is the format you're after.
    ME_XE?select
      2     to_date('5/13/2008 10:45', 'mm/dd/yyyy hh24:mi') as date_value_24_hours
      3  from dual;
    DATE_VALUE_24_HOURS
    13-MAY-2008 10 45:00
    1 row selected.
    Elapsed: 00:00:00.89

  • Truncated data value displayed in Answer

    Hi All ,
    When i make a query using a column in BI Answer, i am getting the truncated data.
    It does not display complete text data.
    I am using a XLS as data source. Size of this text data is 500 -600 char. By default it's data type is Varchar and size 255 at physical layer. Even If i increase it's size to 1000 , it shows only 255 characters.
    I also tried to change it's datatype to Longvarchar , but still same problem persists.
    Any idea in this regard? How can i resolve this problem?

    Hi Cosimo,
    Thanks for the reply.
    But i think ,in my case data format option is not required.
    Using Data Format option we can format only the displayed content of that column in
    the report. My problem is little bit different. Each time when i do ad hoc query using the
    column, i get the truncated result. I am not going to create any report using that
    column.
    The issue is due to some data type and it's size. But i am not able to find out any solution of this problem.

  • Date format problem in excel format

    Hi,
    I am uploading the date field  from excel to program.
    My problem is in date format.
    I am gettting the date format in ddmmyyyy if it is 01012006 then my excel sheet contains the date as 1012006 i.e '0' initial zero is truncated in the excel sheet .
    Now how can i use this date in my program i.e i have to convert into date as per program requirements like dd.mm.yyyy  .How can i convert.
    Thanks and regards,
    shyla

    Hi Shyla,
    if the provided excel sheet contains date in format "20122006" the field is considered as a number format.
    In this case you can do the following select the whole column and go to format/cells. Choose the "custom" category on the Number tab and
    enter zeros in eight digits, i.e. 00000000 under "Type:".
    This should solve your problem before uploading the data into SAP.

  • Helps on date format

    Hi all,
    I got the column in table A where the date format is dd/mm/yyyy ( 01/03/2005), and another table B where the date format is dd/mm/yyyy HH24:MI:SS. So in order to let the two table to talk to each other, I hv the following query
    B.transaction_date >= TO_DATE(A.start_date , 'DD-MON-RRRR HH24:MI:SS')
    B.transaction_date <= TO_DATE(A.end_date, 'DD-MON-RRRR HH24:MI:SS')
    I hv problem with the end result b'cos of the date format in table A is dd/mm/yyyy whereas the transaction_date in table B has the format with time. How can I format or convert the date in the table B to be in defaulted time such as A.start_date 00:00:00 and b.end_date 23:59:59 ??
    How to format this ? please helps. Thanks
    Rgds
    Lim

    Hello
    Are the transaction_date, start_date and end_date columns all DATE data types?
    If so, all DATE columns have the time component but it may be truncated i.e. set to 00:00:00. To do a date range in your case you could do something like:
         B.transaction_date >= A.start_date
    AND
         B.transaction_date < A.end_date + 1By using this construct you are forming a range between today at midnight and tonight at 23:59:59, so you don't have to worry about setting the time component on your end_date.
    HTH

  • Custom DBProvider - Date Format Problem

    Hi All,
    I have created a custom DBProvider that inserted form value into database .
    I want date format in "yyyy-MM-dd HH:mm:ss" ..
    When I pass date in this format ....
    It throws error :
    05.31 11:49:43.943     IdcServerThread-3     Exception !csDateParseError,2010-05-25!syUnableToParseDate,2010-05-25!syUnableToFindText,/
    intradoc.data.DataException: !csDateParseError,2010-05-25!syUnableToParseDate,2010-05-25!syUnableToFindText,/
         at intradoc.jdbc.JdbcQueryUtils.appendParam(JdbcQueryUtils.java:305)
         at intradoc.jdbc.JdbcQueryUtils.buildQuery(JdbcQueryUtils.java:174)
         at intradoc.jdbc.JdbcWorkspace.buildQuery(JdbcWorkspace.java:745)
         at intradoc.jdbc.JdbcWorkspace.execute(JdbcWorkspace.java:639)
    Please help

    Hey,
    could share your code part inwhich you save the date, also the date format of your UCM.
    cheers,
    sapan
    Edited by: Swapnil Solanki on Jun 1, 2010 1:07 AM
    SYSTEMLOCALE
    Type and Usage
    ™ Configuration Variables (page -3)
    ™ Localization (page -25)
    Description
    Sets the system locale for the content server.
    ™ This setting controls the following:
    • localized strings used in the content server interface
    • character encoding for web pages
    • date/time format
    • time zone
    • parameters used for full-text indexing
    Any of these individual features can be controlled by separate configuration entries or
    by changing the settings for the SystemLocale.
    ™ This setting can be changed on the Server tab of the System Properties utility. The
    defaults for a specific locale can be changed on the Localization tab of the System
    Properties utility.
    ™ If SystemLocale is not specified as a configuration setting, the SystemDateFormat
    (page -779) will be deduced directly from the OS settings in the Java VM instead of
    using the content server configuration table settings for the SystemLocale. If
    SystemLocale is explicitly defined, then the date/time format from the content server
    configuration tables for that locale will be used instead.
    ™ The configuration entries VerityLocale (page -889) and Ve r i tyEncoding (page -887)
    will still override settings from the SystemLocale, but configuring the SystemLocale
    directly is the preferred solution because there are many choices for Ve r i tyLocal e and
    VerityEncoding that are not compatible.
    SYSTEMDATEFORMAT
    Type and Usage
    ™ Configuration Variables (page -3)
    ™ Date and Time (page -16)
    ™ Localization (page -25)
    Description
    Sets the date/time format for the content server.
    Note that there are two types of date formats: one that stores seconds and one that
    truncates seconds and stores the date up to the minute. If seconds are used, dates can only
    be stored up to the year 2037.
    ™ If SystemLocale (page -781) is not specified as a configuration setting, the
    SystemDateFormat will be deduced directly from the OS settings in the Java VM
    instead of using the content server configuration table settings for the SystemLocale. If
    SystemLocale is explicitly defined, then the date/time format from the content server
    configuration tables for that locale will be used instead.
    ™ The syntax for this format is an extension of the date format functionality provided in
    the standard Java class libraries.
    Location
    <install_dir>/config/config.cfg
    Example
    Used as a configuration entry to set the standard US date time using the four digit year
    format:
    SystemDateFormat=M/d{yyyy} {h:mm[:ss] {aa}[zzz]}
    Note: See Using Content Server in International Environments for information on date
    and time formats.

  • How to get back truncated data

    Hi,
    I have below scenario, May be a basic scenario,
    select * from emp; --> assuming that returns 14 rows.
    Truncate table emp;
    select * from emp; -- will return zero rows as expected
    <<some operation that will give all my rows back>>>
    select * from emp; -- should give me 14 rows backThanks for your help,,,

    There are lot of ifs and buts about your question. At least your database version and log_mode.v$database is required to suggest any possible method.
    However, This is a test case about log-miner (What Sybrand has suggested to you).
    My test database is not in ARCHIVELOG mode. So
    C:\Documents and Settings\Administrator>sqlplus /nolog
    SQL*Plus: Release 10.2.0.1.0 - Production on Thu Nov 18 13:52:32 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    SQL> conn / as sysdba
    Connected.
    SQL> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup mount
    ORACLE instance started.
    Total System Global Area  285212672 bytes
    Fixed Size                  1287016 bytes
    Variable Size             109055128 bytes
    Database Buffers          171966464 bytes
    Redo Buffers                2904064 bytes
    Database mounted.
    SQL> alter database archivelog
      2  ;
    Database altered.
    SQL> alter database open
      2  ;
    Database altered.
    SQL> SELECT log_mode FROM v$database;
    LOG_MODE
    ARCHIVELOG
    SQL>By the way in my version once the recovery has failed until I have used:
    SQL> ALTER DATABASE ADD SUPPLEMENTAL LOG DATA;
    Database altered.Now the main part:
    SQL> conn hr@xe
    Enter password: **
    Connected.
    SQL> drop table emp_test_logminer purge;
    Table dropped.
    SQL> CREATE TABLE emp_test_logminer AS SELECT * FROM emp;
    Table created.
    SQL> SELECT COUNT(*) FROM emp_test_logminer;
      COUNT(*)
            14
    SQL> TRUNCATE TABLE emp_test_logminer;
    Table truncated.
    SQL> SELECT COUNT(*) FROM emp_test_logminer;
      COUNT(*)
             0
    SQL> conn sys@xe as sysdba
    Enter password: ******
    Connected.
    SQL>   BEGIN
      2        DBMS_LOGMNR.START_LOGMNR (
      3              starttime => '18-NOV-2010 14:40:00',
      4              endtime   => '18-NOV-2010 14:45:00',
      5              options   => dbms_logmnr.DICT_FROM_ONLINE_CATALOG+
      6                           dbms_logmnr.continuous_mine +
      7                           dbms_logmnr.no_sql_delimiter +
      8                           dbms_logmnr.print_pretty_sql
      9                                     );
    10    END;
    11  /
      BEGIN
    ERROR at line 1:
    ORA-01830: date format picture ends before converting entire input string
    ORA-06512: at line 2
    SQL> ALTER SESSION SET nls_date_format='DD-MON-RRRR hh24:mi:ss';
    Session altered.
    SQL> BEGIN
      2      DBMS_LOGMNR.START_LOGMNR (
      3            starttime => '18-NOV-2010 14:40:00',
      4            endtime   => '18-NOV-2010 14:45:00',
      5            options   => dbms_logmnr.DICT_FROM_ONLINE_CATALOG+
      6                         dbms_logmnr.continuous_mine +
      7                         dbms_logmnr.no_sql_delimiter +
      8                         dbms_logmnr.print_pretty_sql
      9                                   );
    10  END;
    11  /
    PL/SQL procedure successfully completed.
    SQL> SELECT scn , sql_redo , sql_undo from v$logmnr_contents
      2  WHERE username = 'HR'
      3  AND   seg_name = 'EMP_TEST_LOGMINER';
           SCN SQL_REDO                            SQL_UNDO
      23190408 drop table emp_test_logminer purge
      23190684 CREATE TABLE emp_test_logminer AS S
               ELECT * FROM emp
      23190689 insert into "HR"."EMP_TEST_LOGMINER delete from "HR"."EMP_TEST_LOGMINER
                values                              where
                   "EMPNO" = 7839,                     "EMPNO" = 7839 and
                   "ENAME" = 'KING',                   "ENAME" = 'KING' and
                   "JOB" = 'PRESIDENT',                "JOB" = 'PRESIDENT' and
                   "MGR" IS NULL,                      "MGR" IS NULL and
                   "HIREDATE" = TO_DATE('17-NOV-19     "HIREDATE" = TO_DATE('17-NOV-19
               81 00:00:00', 'DD-MON-RRRR hh24:mi: 81 00:00:00', 'DD-MON-RRRR hh24:mi:
               ss'),                               ss') and
                   "SAL" = 5000,                       "SAL" = 5000 and
                   "COMM" IS NULL,                     "COMM" IS NULL and
                   "DEPTNO" = 10                       "DEPTNO" = 10 and
                                                       ROWID = 'AAAFRsAABAAAMFKAAA'
    .................................................................................................So all the 14 rows are there. You can now recover from this.

  • Problem with Date formatting

    Hi Tim,
    I am facing some issues with formatting the date using XMLP. The following is the sample XML data file i am using:
    <LIST_G_HEADER>
    <G_HEADER>
    <QUOTE_HEADER_ID>1455</QUOTE_HEADER_ID>
    <QUOTE_NUMBER>2027</QUOTE_NUMBER>
    <QUOTE_VERSION>1</QUOTE_VERSION>
    <QUOTE_NAME>Test GM Report - Rabindra</QUOTE_NAME>
    <SOURCE_NAME>Fletcher, MR. Paul</SOURCE_NAME>
    <QUOTE_DATE>27-OCT-2005</QUOTE_DATE>
    <CURRENCY_CODE>GBP</CURRENCY_CODE>
    </G_HEADER>
    </LIST_G_HEADER>
    The formatting i use for my date field i.e <QUOTE_DATE>, ends up either with NO formatting or giving me an error "[010906_114656657][][ERROR] Invalid XSD string: 27-OCT-2005 (XMLP Template Viewer)". The default formatting available with the form field dialog box (MS-Word) feature also doesn't work.
    I have the following formatting for this field in the form field:
    <?format-date:QUOTE_DATE; 'MEDIUM' ?>
    When i read the user guide, it reads that the date should be in the canonical format i.e: YYY-MM-DDThh:mm:ss+HH:MM
    However i am not getting the date from the base table's in this format. Is the error happening due to incorrect format or is there some other reason behind this? Please let me know, how can i overcome this issue.
    Thx,
    Nitin

    As i mentioned in another thread
    substring function and date format
    Please use this standards
    <?xdofx:expression?>
    for extended SQL functions or
    <?xdoxslt:expression?>
    for extended XSL functions.
    Use like
    <?xdofx:rpad(LAST_NAME),30, ’x’)?>
    <?xdofx:Instr(’abcabcabc’,’a’,2))?>
    <?xdofx:upper(char)?>
    <?xdofx:lower (char)?>
    <?xdofx:greatest ( expr [, expr]... )?>
    ETC.....

  • How can we give the Data Format (File Type ) in Runtime

    Hi all,
    How can we give the Data Format (File Type ) in Runtime for the following method,
    cl_gui_frontend_services=>gui_download.
    Thanks in advance
    Sri

    There is a filetype parameter which you can set
    CALL METHOD cl_gui_frontend_services=>gui_download
      EXPORTING
    *    BIN_FILESIZE              =
        filename                  =
    *    FILETYPE                  = 'ASC'
    *    APPEND                    = SPACE
    *    WRITE_FIELD_SEPARATOR     = SPACE
    *    HEADER                    = '00'
    *    TRUNC_TRAILING_BLANKS     = SPACE
    *    WRITE_LF                  = 'X'
    *    COL_SELECT                = SPACE
    *    COL_SELECT_MASK           = SPACE
    *    DAT_MODE                  = SPACE
    *    CONFIRM_OVERWRITE         = SPACE
    *    NO_AUTH_CHECK             = SPACE
    *    CODEPAGE                  = SPACE
    *    IGNORE_CERR               = ABAP_TRUE
    *    REPLACEMENT               = '#'
    *    WRITE_BOM                 = SPACE
    *    TRUNC_TRAILING_BLANKS_EOL = 'X'
    *  IMPORTING
    *    FILELENGTH                =
      changing
        data_tab                  =
    *  EXCEPTIONS
    *    FILE_WRITE_ERROR          = 1
    *    NO_BATCH                  = 2
    *    GUI_REFUSE_FILETRANSFER   = 3
    *    INVALID_TYPE              = 4
    *    NO_AUTHORITY              = 5
    *    UNKNOWN_ERROR             = 6
    *    HEADER_NOT_ALLOWED        = 7
    *    SEPARATOR_NOT_ALLOWED     = 8
    *    FILESIZE_NOT_ALLOWED      = 9
    *    HEADER_TOO_LONG           = 10
    *    DP_ERROR_CREATE           = 11
    *    DP_ERROR_SEND             = 12
    *    DP_ERROR_WRITE            = 13
    *    UNKNOWN_DP_ERROR          = 14
    *    ACCESS_DENIED             = 15
    *    DP_OUT_OF_MEMORY          = 16
    *    DISK_FULL                 = 17
    *    DP_TIMEOUT                = 18
    *    FILE_NOT_FOUND            = 19
    *    DATAPROVIDER_EXCEPTION    = 20
    *    CONTROL_FLUSH_ERROR       = 21
    *    NOT_SUPPORTED_BY_GUI      = 22
    *    ERROR_NO_GUI              = 23
    *    others                    = 24

  • Need to convert into date format

    Hi all,
    I need to convert '2008-11-26T11:07:38-06:00' [YYYY]-[MM]-[DD]T[HH]:[MM]:[SS][TIMEZONE]
    in format 'YYYY-MM-DD HH:MM:SS'.
    Thanks in advance.

    >
    Thank you for your reply
    But it is giving me output as '26-NOV-08'
    And I want in format '2008-11-26 07:38' i.e 'YYYY-MM-DD HH:MM'.
    >
    Then you are not looking for a date, You are looking for a string.
    The date format that gets displayed is dependent on nls_date_format parameter.
    If you want a string in the format you asked, then,
    SELECT TO_CHAR ( TO_DATE ( '2008-11-26T11:07:38-06:00', 'YYYY-MM-DD"T"HH24:MI:SS"-06:00"'), 'YYYY-MM-DD HH24:MM:SS')
      FROM DUAL;Or if you just want the date to be displayed like that then
    Do,
    SQL> alter session set nls_date_Format="YYYY-MM-DD HH24:MI:SS";
    Session altered.
    SQL> SELECT TO_DATE ( '2008-11-26T11:07:38-06:00', 'YYYY-MM-DD"T"HH24:MI:SS"-06:00"') dt
      2    FROM DUAL;
    DT
    2008-11-26 11:07:38
    SQL> G.

  • Changing date format at reporting level

    Hello,
    Will u plz tell me how can i change the date format at reporting level?
    I want to display date in dd/mm/yyyy, but by default its showing mm/dd/yyyy.
    Delta is already loaded in the system, so i don't want to disturb regular data loading.
    Is there any way so that i can change the format of date.
    Plz help me out.
    Thanks,
    Regards,
    Steve

    Hi steve
    There r so many postings on the same topic
    go through these previous threads
    date format
    Date format
    u can find solution
    regards
    Ravi Kiran

Maybe you are looking for

  • How can I distribute an application using Reprot generation Toolkit for MS Office for different versions of MS Office?

    I want to create an application which uses the Report Generation Toolkit for Microsoft Office. The office version of the target machine depends on what my customer has installed. From several discussions I have seen that the installer detects which v

  • How to find out how many concurrent users using web application?

    Hi all, I have a web application deployed using 9iAS. I am trying to find out how to find out how many concurrent users are using this application at any one time. According to Oracle there is no way to see this information using the enterprise manag

  • Iphone is not showing in Itunes.

    Since I updated to Leopard, my iPhone is not showing any longer in iTunes. I still see the iPhone in every other application, like iPhoto. Is there a way to fix this? André

  • Increase synchronous process response time

    hi all From my sycn BPEL process I am calling CRM sycn'ly . Response from CRM is coming very lately for that I am getting time out error . Can we achieve a scenario where my sync BPEL process will wait for a longer time . Its not possible to make it

  • SAP B1 login problem

    Hi All, Whenever I am trying to log in to company database, getting the following error "You can not upgrade company databases from an SAP Business One client. Use the upgrade wizard in the download package, or contact your partner. Regards, Rupa