Oracle BI Apps on IFS Applications

Hi,
Can someone let me know if Oracle BI Apps can work with the IFS Applications (financials, HR, supply chain) either through Universal Adapter or some workaround?
[IFS Applications|http://www.ifsworld.com/en/solutions/ifs-applications-8/]
Regards,
Priyanka Sharma

Recommend to check this thread Using BI Apps with applications other than Oracle, Peoplesoft and ....
Look here http://www.oracle.com/us/solutions/business-intelligence/064103.pdf
or dig in here
Oracle® Fusion Middleware Application Adapters Guide for Oracle Data Integrator 11g Release 1 (11.1.1) - Content…
Regards, Lars Pedersen (Oracle employee, but suggestion is a private and not an official Oracle recommendation)

Similar Messages

  • Integrating ApEx with Oracle Financials (Apps)

    I've seen a few questions on how to integrate Oracle Financials (Apps) with ApEx applications. Below are some methods that I use. The main issue with these approaches is that your Apex user will get a new session each time. I have an unsupported routine that will allow me to maintain the same session with each return to ApEx from Apps. Scott Spadafore has commented several times on how you might do that. I'm going to leave it to Scott's posts to explain it as I don't want to post unsupported workarounds.
    1. Utilize Oracle SSO for both Apps and ApEx.
    A. Set up both to use SSO
    B. Put the following code in the Auth Scheme Session Verify Function to establish the users' Apps Context.This will allow a user to run Apps APIs as the correct Apps User.
    declare
    l_id number(20);
    begin
    begin
    select user_id into l_id from fnd_user
    where user_name = :APP_USER;
    exception
    when others then
    l_id := -9999;
    return FALSE;
    end;
    fnd_global.APPS_INITIALIZE(
    user_id => l_id,
    resp_id => 10,
    resp_appl_id => 10,
    security_group_id => 0,
    server_id => -1);
    return true;
    end;
    C. Now you can put a link with the Apps to point to an ApEx page, e.g. f?p=123:456::::456:P456_ID:876
    2. Use your own authentication scheme--this will require the user to log in to the ApEx App with their Apps un/pw.
    A. Create a custom Auth Scheme that utilizes page 101 as a login page (session not valid page = 101 )
    B. Follow Step B in (1) above
    C. On Page 101 put in the following validation (note, this will not log the login -- you can use a different api if you want to log it)
    begin
    if fnd_web_sec.validate_login(:P101_USERNAME
    , :P101_PASSWORD) = 'Y' then
    return true;
    else
    return false;
    end if;
    end;
    D. Put the following process in place
    if not HTMLDB_CUSTOM_AUTH.SESSION_ID_EXISTS THEN
    HTMLDB_CUSTOM_AUTH.SET_SESSION_ID_TO_NEXT_VALUE;
    end if;
    declare
    l_flow_page varchar2(10000);
    l_next_session varchar2(10000);
    begin
    l_flow_page := substr(replace(:FSP_AFTER_LOGIN_URL,'|',':'),5, length(:FSP_AFTER_LOGIN_URL));
    l_next_session := HTMLDB_CUSTOM_AUTH.GET_NEXT_SESSION_ID;
    l_flow_page := substr(l_flow_page,1,8) || l_next_session || substr(l_flow_page,9,length(l_flow_page));
    HTMLDB_UTIL.RESET_AUTHORIZATIONS;
    htmldb_custom_auth.post_login(
    P_UNAME => :P101_USERNAME,
    -- P_PASSWORD => :P101_PASSWORD,
    -- P_SESSION_ID => :FLOW_SESSION,
    P_SESSION_ID => l_next_session,
    -- P_SESSION_ID => :APP_SESSION, -- ain
    -- P_FLOW_PAGE => :APP_ID||':10'
    -- P_APP_PAGE => l_flow_page ||':',
    P_APP_PAGE => '&APP_ID.:10',
    p_preserve_case => FALSE
    end;
    -------

    Donal,
    Search this forum using keywords eBusiness, Apps, 11i, etc.
    Scott

  • Is Oracle Apps DBA needs Application deep understanding?

    Hi Oracle Apps DBAs,
    is Oracle Apps DBA needs Application deep understanding?
    i mean do i need to understand the financuil buinseess logic and HR logic and ....
    to be Oracle Apps DBA?
    Thanks

    Hi,
    I agree with Asif,I'm now working both as DBA and Apps DBA.You have to be strong in DBA aspects.The functional modules HR,GL knowledge will be added to advantage.In Apps you will see everything deals with file system.If you are learning apps.Can you please keep an eye on my blog.I will be putting soon all my experiment and practises and learn now from the below sites:
    http://onlineappsdba.com/
    Best regards,
    Rafi.
    http://rafioracledba.blogspot.com/

  • Difference between Oracle 11i Apps DBA & Oracle Application server 10g DBA

    Hi All....
    can anyone explain me the *"Difference between Oracle 11i Apps DBA & Oracle Application server 10g DBA"*
    Can Oracle 11i Apps DBA work in a Oracle Application server 10g DBA environment.
    Regards,

    Oracle Apps is a suite of financial applications.
    Oracle Application server is Oracle's scaled up implementation of Apache or Weblogic or similar products.
    While Oracle Apps might use Oracle Application Server as middleware, Oracle Apps is much, much more than Oracle Application Server.
    An Oracle Apps DBA is primarily busy on the functional side, and with implementing an ongoing stream of patches ;)
    The two functions have almost nothing in common.
    Sybrand Bakker
    Senior Oracle DBA

  • Oracle Functional Testing for Web Applications for Oracle Apps

    I am trying to test Oracle Application 11i and R12 using Oracle Functional Testing for Web Applications.
    In 11i:
    If i open any forms then then the Application is getting crashed whereas it's recording the html events.
    In R12:
    If i open any forms then the Form is getting opened but it's not recording the events happening on the forms
    whereas it's recording the html events.
    Please let me know whether Oracle Functional Testing for Web Applications supports can be used to test Oracle Apps 11i/R12 including the Forms.
    Regards,
    Arun

    Hi,
    AFAIK, there is no official document which states that "Oracle Functional Testing for Web Applications" is certified with Oracle E-Business Suite 11i/R12. I assume it should work with Forms 10g but not with Forms 6i, so it should work (does not mean it is certified) with R12.
    I would suggest you log a SR and confirm this with Oracle Support.
    Regards,
    Hussein

  • Integration with Oracle Fusion Apps SaaS

    Hi,
    I have the following integration requirement in my on-premise SOA/ADF application
    1) Get Service Contract details from Oracle Fusion apps cloud instance ( Enterprise Contracts) given a contract number. The details include i) Name ii) Owner iii)Type iv) Business Unit v) Start Date vi) End Date viii) Party details etc..
    2) Create/Get Invoice in Fusion apps cloud instance ( Oracle Financials Cloud ?) from my application.
    3) Create an Order into the the Oracle Fusion apps Order management cloud from my application.
    For the same, I started looking into the OER (https://fusionappsoer.oracle.com/) provided by oracle to find Assets/Services that help us integrate with the SaaS.
    However, I could not find a right service for my above requirements. Here are my findings ( right or wrong) :
    =======================================
    a) For Order Creation ( requirement (2) above):
    -> For Creating an Order, I see a service called Sales Order Service (oracle.apps.crmCommon.orders.salesOrdersService.SalesOrderService) but this service only CRUD's Sales Order Header where as I am looking for a service that needs.
    -> I found another service ( Composite service) ,Get Orchestration Order Service (11.1.7.0.0), Operation: GetOrderDetails , that may get me order details but doesnt give me a way to create an order as I didn't find any operation for Create/Generate.
    -> Another Asset =>File Based Data Import: Purchase Orders Import (11.1.9.0.0) that Imports purchase orders from external systems into Oracle Fusion Purchasing.
    But not sure how to use it. The documentation is duanting here.
    b) For Getting contract details
    -> While looking for a service that would would cater my "get contract details" need, I could find only Contract Type , Contract Business unit services but no service ( ADF or composite) that would give me all the contract details.
    c) For Invoice creation / get - I found these but not sure which one to pick.
    -> Request Invoice Orchestration Task for Fusion Systems Service (11.1.8.0.0) Description:Provides the ability to communicate with the Oracle Fusion Invoicing application to perform create operations.Type: Composite Service. Process Provides the ability for Oracle Fusion Receivables to perform create operations.
    -> Product Family: Financials
    ADF Service: Receivables Invoice Service (11.1.9.0.0)
    Operations: createSimpleInvoice, invoiceHeaderInformation,createInterfaceLine,processInterfaceLine
    Service Path: https://<fin_server:PortNumber>/finArTrxnsInvoices/InvoiceService?WSDL
    Abstract WSDL URL: rep://R9_FUSIONAPPS_HOSTEDREP/oracle/apps/financials/receivables/transactions/invoices/invoiceService/InvoiceService.wsdl
    -> ADF Service: Receivables Invoice (11.1.9.0.0) Service Path: http://<fin_server:PortNumber>/finArTrxnsAutoInvoices/AutoInvoicesBCService?WSDL
    Abstract WSDL URL: rep://R9_FUSIONAPPS_HOSTEDREP/oracle/apps/financials/receivables/transactions/autoInvoices/autoInvoicesService/v1/AutoInvoicesBCService.wsdl
    ======================================
    Can someone help me here in helping me find a right service / way to fullfill my above requirements?
    Thanks,
    Sridhar.

    Hey Reo,
    We need to do few configuration steps to integrate both products
    you can refer to the metalink2 doc id : 552735.1
    https://metalink2.oracle.com/metalink/plsql/f?p=130:14:3427836754632619337::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,552735.1,1,1,1,helvetica
    Remember, if u integrate EBS & OBIEE, you cannot directly login to BI. Instead, you always need to navigate from EBS only..
    Regards,
    Raghu

  • Oracle BI Apps Financial Analytics 7.9.6 Patches for EBS & SSO

    Hi All,
    Happy New Year.
    Thanks for taking the time to review this post. I am about to commence an Oracle BI Apps Financial Analytics 7.9.6 install using Oracle E-Business Suite 11.5.10.2 as a source for the BAW utilising Single Sign-On (SSO). Is there a list of any paticular EBS Interoperability patches, minimum EBS Family Packs for the EBS modules within Financial Analytics (GL, AR, AP) and SSO patches I need to be aware of?
    Oracle E-Business Suite 11.5.10.2
    Oracle BI Applications 7.9.6
    Oracle BI Enterprise Edition Plus 10.1.3.4
    Oracle Database 10g R2
    All Oracle BI Applications components hosted on a Linux 4.0 32 bit platform.
    Your assistance is greatly appreciated.
    Kind Regards,
    Gary.

    Oracle BI Applications 7.9.6
    Oracle BI Enterprise Edition Plus 10.1.3.4Isn't 10.1.3.4.1 the OBIEE release for OBIA 7.9.6?
    And any reason you're not going for OBIA 7.9.6.1?
    I don't know of patches off the top of my head, you're best off spending a couple of hours trawling My Oracle Support, that'll throw the candidates up.
    cheers, rnm.

  • Deploying Petstore on Oracle 9i App server

    Hi all
    I am trying to deploy the petstore application on Oracle 9i App server. I am using the "dcmctl" utility to start my HTTP server.
    Everytime I run the "dcmctl" tool I get a different message(something like ADMN-906025, ADMN-100003) on Standard output.
    This is the exception I am getting in /<Oracle_Home>/dcm/logs/dcmctl_logs/log.xml
    "Remote Execute Exception 806212
    oracle.ias.sysmgmt.exception.ProcessMgmtException: OPMN operation failure"
    I would be really grateful if you could identify and probably even help me solve the problem.
    Also, I need to know whether "oidctl", "server.xml" and "web.xml" need to be updated and how.
    Thanks in advance,
    Raghavendra

    Hi,
    I have deployed EJB in the OAS 4.0.8.2a.If you want any help on this, do let me know.I would be trying to deply ot in the 9iAS in the coming week.
    Thanks,
    Sandeep

  • ATS with Oracle Fusion Apps

    Hello,
    Has anyone used OATS on Oracle Fusion Apps and what has been your experience?
    Regards,
    Sathish S

    Hi,
    You can find the step by step guide to install Fusion Applications 11.1.6 on my blog at following location.
    http://www.oratraining.com/blog/2013/03/oracle-fusion-applications-installation-step-by-step-guide-11-1-6/
    Thanks
    Tushar

  • Accessing Oracle 11i  apps through Pocket PC

    Normally for any windows client to connect to the Oracle Server we add a entry into the client host file i.e. windows\system32\drivers\etc\host . Once we add the entry we are able to access the Oracle Application.
    From a Pocket PC 2002 how do I access the oracle 11i apps ?

    Is this possible by enabling wireless server and accessing directly through jsp pages?

  • How to view pre-built Dashboards and Reports of Oracle BI- Apps?

    Hi All,
    We have sucessfuly installed and configured the Oracle Apps, and also we configured the OracleBIAnalyticsApps.rpd and we are able to view the different subject areas.
    But we are facing problem in viewing any prebuilt dashboard or report.
    Is it possbile to view pre-built Dashboards and Reports of Oracle BI- Apps if we dont have any ERP applicaton as a source?
    As we dont have any ERP application we have loaded the data from the sample flat files to the Analytics warehouse.
    Any help would be highly appreciable.
    Regards,
    Manmohan Sharma

    Hi Damon,
    Thanks a lot.
    Now I understand that we have to have ERP data source if want to view the prebuild Dashborads and reports.
    Could you please provide the path to get Prebuilt Dashboard & reports ?
    Regards,
    Manmohan Sharma

  • Whether Oracle BI Apps does support mySAP(ERP2005)?

    HI, all
    Whether Oracle BI Apps does support mySAP(ERP2005)?
    Has it pre-build data model for mySAP?
    thanks a lot~~!

    Here are the supported Analytic Applcations and their counterpart SAP R3 Modules: (sorry it is kind of messy)
    Oracle BI Applications for SAP R/3 Applications
    * Support for version 4.6c is with the Oracle BI Applications version 7.8.4
    Oracle BI Application          SAP R/3 module
    Order Management Analytics      Sales & Distribution (SD)
                   Financial Accounting (FI) (for Revenue)
    Order Fulfillment Analytics Option Materials Management (MM) (for Inventory)
                   Financial Accounting (FI) (for Revenue)
    Inventory Analytics          Materials Management (MM)
    Procurement and Spend Analytics Materials Management (MM)
                   Financial Accounting (FI)
    General Ledger & Profitability Analytics     Financial Accounting (FI)
    Payables Analytics          Financial Accounting (FI)
    Receivables Analytics          Financial Accounting (FI)

  • Oracle 9 client / Oracle 12 Apps

    Hi,
    I launched the Enterprise Manager Console from the Oracle 9 client. While tried to connect to the Oracle 12 Apps using user SYSTEM/Manager, I got the following error even though I checked that the user SYSTEM has the SELECT ANY DICTIONARY privilege:
    This application requires you have been granted the SELECT ANY DICTIONARY privilege. Contact your DBA to grant you this privilige.
    Is this a know problem? Doesn't Oracle 9 client talk to Oracle 12 Apps.
    Thanks,
    Qing

    Oracle E-Business Suite R12 comes with 10g. It is not possible to monitor a 10g database via 9i OEM console.
    You can use Grid control, database control or the 10g java console for monitoring a 10g database.
    Have a look at Note: 340951.1 & Note: 307958.1 for more details

  • Startup and Shutdown classes in OC4J (Oracle 9i App Server)

    Hi,
    We are in the process of porting our application from Weblogic 6 to Oracle 9i app server. We have a requirement for developing startup and shutdown classes. These need to be instantiated from Java code (and not through console).
    If anyone knows how this can be achieved or have any documentation on the same, please reply back to .
    Thanks in advance.
    Regards,
    Moin

    The oc4j commands in the documentation for shutting down the server are:
    STARTUP
    java -jar orion.jar -install
    SHUTDOWN
    java -jar admin.jar ormi://localhost/ <admin> <admin-password>
    Can you just access these classes directly?

  • Oracle BI Apps financials Full load errors

    Hi, I have Oracle BI Apps 7.9.6, Informatica 8.6, EBS R12 is the source
    When i run a full Load of ETL for Financials- Budget, 24 out of 158 tasks are failing.
    When i check the log file
    the log file is as below
    558  SEVERE  Sat Nov 20 15:08:43 AST 2010 
    START OF ETL
    559  SEVERE  Sat Nov 20 15:09:26 AST 2010  Starting ETL Process.
    560  SEVERE  Sat Nov 20 15:09:28 AST 2010  Request to start workflow : 'SILOS:SIL_InsertRowInRunTable' has completed with error code 0
    561  SEVERE  Sat Nov 20 15:09:49 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SILOS  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\FlatFileConnection.DataWarehouse.SILOS.SIL_InsertRowInRunTable.txt SIL_InsertRowInRunTable
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    562  SEVERE  Sat Nov 20 15:10:00 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_Stage_GLAccount_SegmentConfig_Extract' has completed with error code 0
    563  SEVERE  Sat Nov 20 15:10:00 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_InternalOrganizationDimension_BalanceSegmentValue_LegalEntity' has completed with error code 0
    564  SEVERE  Sat Nov 20 15:10:01 AST 2010  Request to start workflow : 'SILOS:SIL_GlobalCurrencyGeneral_Update' has completed with error code 0
    565  SEVERE  Sat Nov 20 15:10:01 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_InternalOrganizationDimension_Temporary' has completed with error code 0
    566  SEVERE  Sat Nov 20 15:10:01 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_ExchangeRateGeneral_Full' has completed with error code 0
    567  SEVERE  Sat Nov 20 15:10:02 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_GLSegmentDimension_Full' has completed with error code 0
    568  SEVERE  Sat Nov 20 15:10:02 AST 2010  Request to start workflow : 'SILOS:SIL_Parameters_Update' has completed with error code 0
    569  SEVERE  Sat Nov 20 15:10:02 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_Project' has completed with error code 0
    570  SEVERE  Sat Nov 20 15:10:03 AST 2010  Request to start workflow : 'SILOS:SIL_Stage_GroupAccountNumberDimension_FinStatementItem' has completed with error code 0
    571  SEVERE  Sat Nov 20 15:10:03 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_GLBalanceFact_Full' has completed with error code 0
    572  SEVERE  Sat Nov 20 15:10:20 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\FlatFileConnection.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_Stage_GLAccount_SegmentConfig_Extract.txt SDE_ORA_Stage_GLAccount_SegmentConfig_Extract
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    573  SEVERE  Sat Nov 20 15:10:21 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_InternalOrganizationDimension_BalanceSegmentValue_LegalEntity.txt SDE_ORA_InternalOrganizationDimension_BalanceSegmentValue_LegalEntity
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    574  SEVERE  Sat Nov 20 15:10:22 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_InternalOrganizationDimension_Temporary.txt SDE_ORA_InternalOrganizationDimension_Temporary
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    575  SEVERE  Sat Nov 20 15:10:24 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SILOS  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SILOS.SIL_GlobalCurrencyGeneral_Update.txt SIL_GlobalCurrencyGeneral_Update
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    576  SEVERE  Sat Nov 20 15:10:25 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_GLSegmentDimension_Full.txt SDE_ORA_GLSegmentDimension_Full
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    577  SEVERE  Sat Nov 20 15:10:25 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_ExchangeRateGeneral_Full.txt SDE_ORA_ExchangeRateGeneral_Full
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    578  SEVERE  Sat Nov 20 15:10:26 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SILOS  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\FlatFileConnection.DataWarehouse.SILOS.SIL_Stage_GroupAccountNumberDimension_FinStatementItem.txt SIL_Stage_GroupAccountNumberDimension_FinStatementItem
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    579  SEVERE  Sat Nov 20 15:10:26 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_Stage_GLAccountDimension_FinSubCodes' has completed with error code 0
    580  SEVERE  Sat Nov 20 15:10:27 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_Project.txt SDE_ORA_Project
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    581  SEVERE  Sat Nov 20 15:10:27 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SILOS  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SILOS.SIL_Parameters_Update.txt SIL_Parameters_Update
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    582  SEVERE  Sat Nov 20 15:10:29 AST 2010  Request to start workflow : 'SILOS:SIL_CurrencyTypes' has completed with error code 0
    583  SEVERE  Sat Nov 20 15:10:32 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_InternalOrganizationDimensionHierarchy_HROrgsTemporary_LatestVersion' has completed with error code 0
    584  SEVERE  Sat Nov 20 15:10:32 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_Stage_GroupAccountNumberDimension' has completed with error code 0
    585  SEVERE  Sat Nov 20 15:10:35 AST 2010  Request to start workflow : 'SILOS:SIL_ListOfValuesGeneral_Unspecified' has completed with error code 0
    586  SEVERE  Sat Nov 20 15:10:47 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\FlatFileConnection.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_Stage_GLAccountDimension_FinSubCodes.txt SDE_ORA_Stage_GLAccountDimension_FinSubCodes
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    587  SEVERE  Sat Nov 20 15:10:49 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SILOS  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\FlatFileConnection.DataWarehouse.SILOS.SIL_CurrencyTypes.txt SIL_CurrencyTypes
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    588  SEVERE  Sat Nov 20 15:10:52 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_InternalOrganizationDimensionHierarchy_HROrgsTemporary_LatestVersion.txt SDE_ORA_InternalOrganizationDimensionHierarchy_HROrgsTemporary_LatestVersion
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    589  SEVERE  Sat Nov 20 15:10:53 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\FlatFileConnection.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_Stage_GroupAccountNumberDimension.txt SDE_ORA_Stage_GroupAccountNumberDimension
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    590  SEVERE  Sat Nov 20 15:10:55 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SILOS  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\FlatFileConnection.DataWarehouse.SILOS.SIL_ListOfValuesGeneral_Unspecified.txt SIL_ListOfValuesGeneral_Unspecified
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    591  SEVERE  Sat Nov 20 15:10:55 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_InternalOrganizationDimensionHierarchy_InvOrgs' has completed with error code 0
    592  SEVERE  Sat Nov 20 15:11:16 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\DataWarehouse.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_InternalOrganizationDimensionHierarchy_InvOrgs.txt SDE_ORA_InternalOrganizationDimensionHierarchy_InvOrgs
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    593  SEVERE  Sat Nov 20 15:11:18 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_InternalOrganizationDimensionHierarchy_OperatingUnitOrgs' has completed with error code 0
    594  SEVERE  Sat Nov 20 15:11:39 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_InternalOrganizationDimensionHierarchy_OperatingUnitOrgs.txt SDE_ORA_InternalOrganizationDimensionHierarchy_OperatingUnitOrgs
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    595  SEVERE  Sat Nov 20 15:11:41 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_InternalOrganizationDimensionHierarchy_BusinessGroupOrgs' has completed with error code 0
    596  SEVERE  Sat Nov 20 15:12:01 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_InternalOrganizationDimensionHierarchy_BusinessGroupOrgs.txt SDE_ORA_InternalOrganizationDimensionHierarchy_BusinessGroupOrgs
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    597  SEVERE  Sat Nov 20 15:12:04 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_InternalOrganizationDimensionHierarchy_Flatten' has completed with error code 0
    598  SEVERE  Sat Nov 20 15:12:24 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\DataWarehouse.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_InternalOrganizationDimensionHierarchy_Flatten.txt SDE_ORA_InternalOrganizationDimensionHierarchy_Flatten
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    599  SEVERE  Sat Nov 20 15:14:32 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_GLBalanceFact_Full.txt SDE_ORA_GLBalanceFact_Full
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    600  SEVERE  Sat Nov 20 15:15:14 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_Product_Categories_Derive' has completed with error code 0
    601  SEVERE  Sat Nov 20 15:15:15 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_InternalOrganizationDimension_Full' has completed with error code 0
    602  SEVERE  Sat Nov 20 15:15:16 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_CodeDimension_Group_Acct_Names' has completed with error code 0
    603  SEVERE  Sat Nov 20 15:15:17 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_ProductMultipleCategories_Full' has completed with error code 0
    604  SEVERE  Sat Nov 20 15:15:18 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_GLBudgetDimension_Full' has completed with error code 0
    605  SEVERE  Sat Nov 20 15:15:18 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_LedgerDimension' has completed with error code 0
    606  SEVERE  Sat Nov 20 15:15:18 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_PositionDimension_Full' has completed with error code 0
    607  SEVERE  Sat Nov 20 15:15:18 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_UserDimension_Full' has completed with error code 0
    608  SEVERE  Sat Nov 20 15:15:19 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_TimeDimension_Calendar_Full' has completed with error code 0
    609  SEVERE  Sat Nov 20 15:15:19 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_CodeDimension_Org_Type' has completed with error code 0
    610  SEVERE  Sat Nov 20 15:15:34 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_Product_Categories_Derive.txt SDE_ORA_Product_Categories_Derive
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    611  SEVERE  Sat Nov 20 15:15:36 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_InternalOrganizationDimension_Full.txt SDE_ORA_InternalOrganizationDimension_Full
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    612  SEVERE  Sat Nov 20 15:15:36 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_CodeDimension_Fin_Sub_Names' has completed with error code 0
    613  SEVERE  Sat Nov 20 15:15:37 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\FlatFileConnection.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_CodeDimension_Group_Acct_Names.txt SDE_ORA_CodeDimension_Group_Acct_Names
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    614  SEVERE  Sat Nov 20 15:15:37 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_ProductMultipleCategories_Full.txt SDE_ORA_ProductMultipleCategories_Full
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    615  SEVERE  Sat Nov 20 15:15:40 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_LedgerDimension.txt SDE_ORA_LedgerDimension
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    616  SEVERE  Sat Nov 20 15:15:40 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_UserDimension_Full.txt SDE_ORA_UserDimension_Full
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    617  SEVERE  Sat Nov 20 15:15:41 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_CodeDimension_Fin_Stmt_Item_Names' has completed with error code 0
    618  SEVERE  Sat Nov 20 15:15:41 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_GLBudgetDimension_Full.txt SDE_ORA_GLBudgetDimension_Full
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    619  SEVERE  Sat Nov 20 15:15:41 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_CodeDimension_Org_Type.txt SDE_ORA_CodeDimension_Org_Type
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    620  SEVERE  Sat Nov 20 15:15:41 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_PositionDimension_Full.txt SDE_ORA_PositionDimension_Full
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    621  SEVERE  Sat Nov 20 15:15:41 AST 2010  pmcmd startworkflow -sv Oracle_BI_DW_Base_integration_service1 -d Domain_home-9e3bae43d0 -u Administrator -p **** -f SDE_ORAR12_Adaptor  -lpf D:\Informatica\PowerCenter8.6.0\server\infa_shared\SrcFiles\ORA_R12.DataWarehouse.SDE_ORAR12_Adaptor.SDE_ORA_TimeDimension_Calendar_Full.txt SDE_ORA_TimeDimension_Calendar_Full
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    622  SEVERE  Sat Nov 20 15:15:42 AST 2010  Request to start workflow : 'SDE_ORAR12_Adaptor:SDE_ORA_CodeDimension_Gl_Account_Segments' has completed with error code 0
    623  SEVERE  Sat Nov 20 15:15:44 AST 2010 
    ANOMALY INFO::: DataWarehouse:CREATE UNIQUE INDEX
         W_POSITION_DS_U1
    ON
         W_POSITION_DS
         INTEGRATION_ID Asc
         ,DATASOURCE_NUM_ID Asc
         ,SRC_EFF_FROM_DT Asc
    NOLOGGING
    MESSAGE:::ORA-01452: cannot CREATE UNIQUE INDEX; duplicate keys found
    EXCEPTION CLASS::: java.sql.SQLException
    oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
    oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:305)
    oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:272)
    oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:623)
    oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:112)
    oracle.jdbc.driver.T4CStatement.execute_for_rows(T4CStatement.java:474)
    oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1028)
    oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:1451)
    com.siebel.etl.database.cancellable.CancellableStatement.executeUpdate(CancellableStatement.java:171)
    com.siebel.etl.database.DBUtils.executeUpdate(DBUtils.java:276)
    com.siebel.etl.database.WeakDBUtils.executeUpdate(WeakDBUtils.java:357)
    com.siebel.analytics.etl.etltask.SQLTask.doExecute(SQLTask.java:116)
    com.siebel.analytics.etl.etltask.CreateIndexTask.doExecute(CreateIndexTask.java:90)
    com.siebel.analytics.etl.etltask.CreateIndexTaskWrapper.doExecute(CreateIndexTaskWrapper.java:46)
    com.siebel.analytics.etl.etltask.GenericTaskImpl.doExecuteWithRetries(GenericTaskImpl.java:410)
    com.siebel.analytics.etl.etltask.GenericTaskImpl.execute(GenericTaskImpl.java:306)
    com.siebel.analytics.etl.etltask.GenericTaskImpl.execute(GenericTaskImpl.java:213)
    com.siebel.analytics.etl.etltask.GenericTaskImpl.run(GenericTaskImpl.java:585)
    com.siebel.analytics.etl.taskmanager.XCallable.call(XCallable.java:63)
    java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
    java.util.concurrent.FutureTask.run(FutureTask.java:138)
    java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
    java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
    java.util.concurrent.FutureTask.run(FutureTask.java:138)
    java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885)
    java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
    java.lang.Thread.run(Thread.java:619)
    624  SEVERE  Sat Nov 20 15:15:44 AST 2010 
    ANOMALY INFO::: Error while executing : CREATE INDEX:W_POSITION_DS:W_POSITION_DS_U1
    MESSAGE:::java.lang.Exception: Error while execution : CREATE UNIQUE INDEX
         W_POSITION_DS_U1
    ON
         W_POSITION_DS
         INTEGRATION_ID Asc
         ,DATASOURCE_NUM_ID Asc
         ,SRC_EFF_FROM_DT Asc
    NOLOGGING
    with error DataWarehouse:CREATE UNIQUE INDEX
         W_POSITION_DS_U1
    ON
         W_POSITION_DS
         INTEGRATION_ID Asc
         ,DATASOURCE_NUM_ID Asc
         ,SRC_EFF_FROM_DT Asc
    NOLOGGINGcant paste the entire log because of size issues
    I dont understand the create unique index error! ,
    its a out of the box installation and i am getting data from EBS R12 vision db, but it has duplicate SRC_EFF_FROM_DT, its a standard installation to populate data in the oracle BI Applications preconfigured reports
    EMP_ID     PAR_INTEGRATION_ID     POSITION_NAME     DIVN_NAME     EMP_LAST_NAME     EMP_FST_NAME     EMP_LOGIN     OWNER_ALLOC     TYPE_FLG     POSTN_TYPE_CD     BU_ID     CREATED_BY_ID     CHANGED_BY_ID     CREATED_ON_DT     CHANGED_ON_DT     AUX1_CHANGED_ON_DT     AUX2_CHANGED_ON_DT     AUX3_CHANGED_ON_DT     AUX4_CHANGED_ON_DT     SRC_EFF_FROM_DT     SRC_EFF_TO_DT     DELETE_FLG     DATASOURCE_NUM_ID     INTEGRATION_ID     TENANT_ID     X_CUSTOM
    22823     PER~10596     MGR500.Manager     Vision Stores Distribution     Sanders     Devan     Unspecified                         1384     1384     05/05/2005 11:22:54     06/01/2005 14:17:11     05/05/2005 11:23:11     10/14/2005 16:27:31     05/31/2005 16:51:37          06/01/2005 00:00:00     01/01/4713 00:00:00     N     9     PER~22823     DEFAULT     0
    22823     PER~10596     MGR500.Manager     Vision Stores Distribution     Sanders     Devan     Unspecified                         1384     1384     05/05/2005 11:22:54     06/01/2005 14:17:11     05/05/2005 11:23:11     10/14/2005 16:27:31     05/31/2005 16:51:37          05/31/2005 00:00:00     06/01/2005 00:00:00     N     9     PER~22823     DEFAULT     0
    22823     PER~1273     MGR500.Manager     Global Sales     Sanders     Devan     Unspecified                         1384     1384     05/05/2005 11:22:54     05/31/2005 16:50:24     05/05/2005 11:23:11     10/14/2005 16:27:31     12/13/2004 06:28:52          05/05/2004 00:00:00     05/31/2005 00:00:00     N     9     PER~22823     DEFAULT     0thanks in advance,
    Edited by: user10243788 on Nov 20, 2010 7:44 AM

    Basically, the FROM_DATE AND TO_DATE clashes. 05/31/2005 is both as end_date and start_date for two rows. That is the problem.
    coolmesh84

Maybe you are looking for

  • Dbwr consuming high CPU after enabling DirectIO

    Hi, DBWR is consuming high CPU. After enabling DirectIO on Solaris SPARC 10, dbwr is eating away almost 1 CPU on a v440 machine i.e. 19% throughout the day. Neither of "buffer busy waits" or "write complete waits" or "free buffer waits" are in the to

  • Wrong pictures for albums in my iphone but correkt picture in itunes

    Hi. In my iPhone 4 all albums in the musicplayer has wrong picture but in iTunees in my computer it is correkt. Haw can i correct this?

  • Line Item control in Table control

    Hiiii Friends, I am working on the table control. Im getting a probelm at one point. I want to populate the                    Po                                         Sorce 207/2007     4500000090     10                                   101     I

  • Best way to store data server side

    Our APEX (v3.1) applications use quite a bit of stored procedures to implement the business logic. What do you think is the best way to maintain some complex state on the server (where complex is anything more than a string)? Ideally I would like to

  • Bank Directory Import programme

    Hi .,      Can anybody please help me with some information on Bank directory import program and other details for country U.S.A. I know that bank directory can be automatically created as long as the bank directory is available on diskette and impor