Oracle Retail Integration - Currency Rate Oracle Object

Defect 13014568 has been created via Defect Workbench iBug portal request id: (3095217).
Fix is ready for QA.
It is planned to be released in RIB 12.0.11.4 bundle, expected by 31st Jan 2012.
In version 12.0.11:
The Oracle Object for currency rates CreateCurrencyRateRibObjects has a precision of 10 for the field conversion_rate number:
DROP TYPE RIB_CurrRateDesc_REC FORCE ;
CREATE OR REPLACE TYPE RIB_CurrRateDesc_REC UNDER RIB_OBJECT (
from_currency varchar2(3),
to_currency varchar2(3),
conversion_date date,
conversion_rate number(20,10),
user_conversion_type varchar2(30),
OVERRIDING MEMBER PROCEDURE appendNodeValues( i_prefix IN VARCHAR2)
The XSD for currency rates CurrRateDesc.xsd omits the precision:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:include schemaLocation="RIBDate.xsd"/>
<xs:element name="CurrRateDesc">
<xs:complexType>
<xs:sequence>
<xs:element name="from_currency" type="varchar23"/>
<xs:element name="to_currency" type="varchar23"/>
<xs:element name="conversion_date" type="RIBDate"/>
<xs:element name="conversion_rate" type="number20"/>
<xs:element name="user_conversion_type" type="varchar230"/>
</xs:sequence>
</xs:complexType>
</xs:element>
Can precision be added to the XSD, to the database precision for java integration?
Please advise,
Thanks, Paula
Edited by: paula on Jan 8, 2012 6:14 AM

Answer:
Oracle object is correct. Change the XSD schema to:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:include schemaLocation="RIBDate.xsd"/>
<xs:element name="CurrRateDesc">
<xs:complexType>
<xs:sequence>
<xs:element name="from_currency" type="varchar23"/>
<xs:element name="to_currency" type="varchar23"/>
<xs:element name="conversion_date" type="RIBDate"/>
<xs:element name="conversion_rate" type="number20" precision="10" />
<xs:element name="user_conversion_type" type="varchar230"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:simpleType name="varchar230">
<xs:restriction base="xs:string">
<xs:maxLength value="30"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="varchar23">
<xs:restriction base="xs:string">
<xs:maxLength value="3"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="number20">
<xs:restriction base="xs:decimal">
<xs:totalDigits value="20"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>
Then regenerate the typed castor java objects.
Thanks, Paula

Similar Messages

  • Oracle Retail Integration Service Bus  software download

    How to download Oracle Retail Integration Service Bus?
    How to configure RAC, AQ, RMS and SIM?
    Please share any Sample tutorial for the Oracle Retail Integration Service Bus installation and sample application using RMS and SIM

    Please send the details ASAP

  • Oracle Retail Integration - Partner Oracle Object

    Defect 13014494 has been created via Defect Workbench iBug portal request id: (3095192).
    Fix is ready for QA and will be released in RIB 12.0.11.4 bundle, expected by 31st Jan 2012.
    In version 12.0.11:
    The Oracle Object for partner CreatePartnerRibObjects has a length of 20 for county:
    DROP TYPE RIB_AddrDesc_REC FORCE ;
    CREATE OR REPLACE TYPE RIB_AddrDesc_REC UNDER RIB_OBJECT (
    addr number(6),
    addr_type varchar2(2),
    primary_addr_type_ind varchar2(1),
    primary_addr_ind varchar2(1),
    add_1 varchar2(240),
    add_2 varchar2(240),
    add_3 varchar2(240),
    city varchar2(120),
    state varchar2(3),
    country_id varchar2(3),
    post varchar2(30),
    contact_name varchar2(120),
    contact_phone varchar2(20),
    contact_telex varchar2(20),
    contact_fax varchar2(20),
    contact_email varchar2(100),
    oracle_vendor_site_id number(15),
    county varchar2(20),
    OVERRIDING MEMBER PROCEDURE appendNodeValues( i_prefix IN VARCHAR2)
    In the XSD PartnerDesc.XSD, the length of county is 250:
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema
    xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="PartnerDesc">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="partner_type" type="varchar26"/>
    <xs:element name="partner_id" type="varchar210"/>
    <xs:element name="partner_desc" type="varchar2240"/>
    <xs:element name="currency_code" type="varchar23"/>
    <xs:element name="lang" type="number6" minOccurs="0"/>
    <xs:element name="status" type="varchar21"/>
    <xs:element name="contact_name" type="varchar2120" minOccurs="0"/>
    <xs:element name="contact_phone" type="varchar220" minOccurs="0"/>
    <xs:element name="contact_fax" type="varchar220" minOccurs="0"/>
    <xs:element name="contact_telex" type="varchar220" minOccurs="0"/>
    <xs:element name="contact_email" type="varchar2100" minOccurs="0"/>
    <xs:element name="mfg_id" type="varchar218" minOccurs="0"/>
    <xs:element name="principal_country_id" type="varchar23" minOccurs="0"/>
    <xs:element name="line_of_credit" type="number20" precision="4" minOccurs="0"/>
    <xs:element name="outstanding_credit" type="number20" precision="4" minOccurs="0"/>
    <xs:element name="open_credit" type="number20" precision="4" minOccurs="0"/>
    <xs:element name="ytd_credit" type="number20" precision="4" minOccurs="0"/>
    <xs:element name="ytd_drawdowns" type="number20" precision="4" minOccurs="0"/>
    <xs:element name="tax_id" type="varchar218" minOccurs="0"/>
    <xs:element name="terms" type="varchar215"/>
    <xs:element name="service_perf_req_ind" type="varchar21"/>
    <xs:element name="invc_pay_loc" type="varchar26" minOccurs="0"/>
    <xs:element name="invc_receive_loc" type="varchar26" minOccurs="0"/>
    <xs:element name="import_country_id" type="varchar23" minOccurs="0"/>
    <xs:element name="primary_ia_ind" type="varchar21"/>
    <xs:element ref="AddrDesc" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="AddrDesc">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="addr" type="number6"/>
    <xs:element name="addr_type" type="varchar22"/>
    <xs:element name="primary_addr_type_ind" type="varchar21"/>
    <xs:element name="primary_addr_ind" type="varchar21"/>
    <xs:element name="add_1" type="varchar2240"/>
    <xs:element name="add_2" type="varchar2240" minOccurs="0"/>
    <xs:element name="add_3" type="varchar2240" minOccurs="0"/>
    <xs:element name="city" type="varchar2120"/>
    <xs:element name="state" type="varchar23" minOccurs="0"/>
    <xs:element name="country_id" type="varchar23"/>
    <xs:element name="post" type="varchar230" minOccurs="0"/>
    <xs:element name="contact_name" type="varchar2120" minOccurs="0"/>
    <xs:element name="contact_phone" type="varchar220" minOccurs="0"/>
    <xs:element name="contact_telex" type="varchar220" minOccurs="0"/>
    <xs:element name="contact_fax" type="varchar220" minOccurs="0"/>
    <xs:element name="contact_email" type="varchar2100" minOccurs="0"/>
    <xs:element name="oracle_vendor_site_id" type="number15" minOccurs="0"/>
    <xs:element name="county" type="varchar2250" minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    Which is correct length? 20 or 250
    Please advise,
    Thanks, Paula
    Edited by: Paula on Sep 4, 2011 1:43 PM
    Edited by: paula on Jan 8, 2012 6:10 AM

    Verified this is an Oracle bug and the correct field length is 250.
    The Oracle Object for partner CreatePartnerRibObjects should be changed to match the XSD field length:
    DROP TYPE RIB_AddrDesc_REC FORCE ;
    CREATE OR REPLACE TYPE RIB_AddrDesc_REC UNDER RIB_OBJECT (
    addr number(6),
    addr_type varchar2(2),
    primary_addr_type_ind varchar2(1),
    primary_addr_ind varchar2(1),
    add_1 varchar2(240),
    add_2 varchar2(240),
    add_3 varchar2(240),
    city varchar2(120),
    state varchar2(3),
    country_id varchar2(3),
    post varchar2(30),
    contact_name varchar2(120),
    contact_phone varchar2(20),
    contact_telex varchar2(20),
    contact_fax varchar2(20),
    contact_email varchar2(100),
    oracle_vendor_site_id number(15),
    county varchar2(250),
    OVERRIDING MEMBER PROCEDURE appendNodeValues( i_prefix IN VARCHAR2)
    Thanks, Paula

  • Oracle Data Integrator (ODI) vs Oracle Golden Gate

    We are about to start a new data warehouse project, which will require a data integration product and have the following questions:
    - ODI provides near real-time data warehousing support: - What is the difference between ODI's near-realtime data warehousing features and Oracle Golden Gate's real-time data integration?
    - How does Oracle Golden Gate achieve Real-time Data Integration? (What kind of non-invasive techniquire/procedures/processes does it use to achieve Real-time Data Integration?
    - Obviously with Oracle Golden Gate being the superior Data Integration product, what is the future of ODI?
    - Is there any product convergence planned for ODI and Oracle Golden Gate by Oracle corp. in the near/far future?
    - Most importantly, what product should we use to implement the new project: ODI or Oracle Golden Gate?
    - What is the easier product to learn/implement: ODI or Oracle Golden Gate?
    Others, please feel free to add to the above questions/concerns.
    Thanks for all your help.

    Hi,
    I tried to install the essbase driver adapter on ODI, but I can't connect to Essbase using topology manager. Anyone know about essbase drivers for ODI. I used ODI 10.1.3.4.
    Thanks all.
    Regards,
    Sumardi

  • Retek and Oracle Financials Integration

    Hi,
    We are planning to implement Retek for the retail stores and Oracle Financials for the back end operations. Can some one tell me if these two products are seamlessly integrated? For example will the data flow from Retek to say AP or AR without having to develop any interfaces.
    Thanks in advance.
    Amit

    One may benefit from this Metalink document.
    Regards, Erik Ykema
    Subject:      Oracle Retail E-Business Suite Integration Guide
         Doc ID:      Note:458221.1      Type:      WHITE PAPER
         Last Revision Date:      02-NOV-2007      Status:      PUBLISHED
    In this Document
    Abstract
    Document History
    Oracle Retail E-Business Suite Integration Guide
    Applies to:
    Oracle Retail Invoice Matching - Version: 12.0.5 to 12.0.5
    Oracle Retail Merchandising System - Version: 12.0.5 to 12.0.5
    Information in this document applies to any platform.
    Abstract
    This is an Oracle Retail internal “services-only” document not for general customer release. It is intended for the systems analysts and other members of the integration team contracted to assist a retailer to integrate Oracle Retail applications with Oracle E Business Suite applications.
    Document History
    Author :
    Create Date 11-Sept-2007
    Update Date dd-mon-yyyy
    Expire Date dd-mon-yyyy (ignore after this date)
    Oracle Retail E-Business Suite Integration Guide
    This document describes considerations for integration of Oracle Retail applications with the Oracle Financials applications of Oracle E Business Suite. This document provides information for the implementation team to assess product requirements, configuration opportunities, and constraints related to this integration.

  • Oracle Retail

    Hi all,
    We are planning to install and test Oracle Retail 11.0.5 in our test box on either 11i or R12. But, come across with many doubts and would like your valuable response for our following questions.
    1. How to install and implement Oracle Retail(Retek) in Oracle Applications (11i or R12) ?
    2. Is Oracle Retail is already incorporated in EBS and comes as a part of EBS? or is it a seperate product? or available as a patch?
    3. If seperate product, customer already using EBS can get the product free of cost? or need to purchase it?
    Looking for immediate response...
    Regards
    Mahesh

    1. How to install and implement Oracle Retail(Retek) in Oracle Applications (11i or R12) ?Oracle Retail Documentation
    http://www.oracle.com/technology/documentation/oracle_retail.html
    Note: 458221.1 - Oracle Retail E-Business Suite Integration Guide
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=458221.1
    Note: 436811.1 - Questions About Oracle Financials Documentation For Integratation With Oracle Retail
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=436811.1
    2. Is Oracle Retail is already incorporated in EBS and comes as a part of EBS? or is it a seperate product? or available as a patch?Oracle Retail Applications is available for download as a separate product.
    Oracle Retail
    http://www.oracle.com/applications/retail.html
    You can download it from:
    Oracle E-Delivery Website
    http://edelivery.oracle.com
    3. If seperate product, customer already using EBS can get the product free of cost? or need to purchase it?Not sure about the license but I believe it is not free of cost. I suggest you contact your Oracle Sales representative for more details about the license.
    Oracle License Codes
    http://licensecodes.oracle.com/

  • Oracle Retail Standard Edition

    Can anyone give any info about Oracle retail Standard Edition or Oracle Retail Mid Market.

    Hi,
    Metalink has the following notes that may be of interest:
    - Note:455477.1      15-NOV-2007 - Oracle Retail Business Process Documents for use while implementing the Oracle Merchandising Products (sounds like standard edition, though the phrase isn't used here)
    - Note:465089.1      30-OCT-2007 - Appendix B - Further detail on Standard Edition (version 12.0.3)
    Regards,
    Erik

  • Integration of Oracle Financials (OF) with Oracle Retail (OR)

    Hi ,
    We are currently doing a integration of Oracle Financials with Oracle Retail.
    We have deployed BPEL processes for this. The Bpel process which transfers set of books from Oracle Financials is SendGLCCToRetek.
    The problem is that the process is not transferring set of books id from Financials to Retail.
    Any pointers on how what could be the reason. Is there any other BPEL process which should be deployed ?
    Other deployed Bpel proceses are working as expected
    Best regards,
    brinda

    The integration of set of books between Financials and Retail (through AIA) is not incorporated, it needs to be manually setup in Retail.
    Ex: The Ledger ID's in EBS Financials or PSFT Financials, needs to be manually created as Set of Books in Retail (FIF_GL_SETUP table)

  • Oracle Data Integrator 11.1.1.5 Work Schema - List of Privileges

    Hi All,
    Oracle Data Integrator 11.1.1.5.
    Extracting data from Oracle DB for Oracle EBS 12.1.3.
    Customer created read-only schema (XXAPPS) to extract the data from EBS.
    For ODI Work schema we now created one schema 'XBOL_ODI_TEMP' on the source DB. We are now looking for appropriate privileges that needs to be granted to XXAPPS and 'XBOL_ODI_TEMP' so that we won’t face the any error messageS related to permissions when we run ODI scenario?
    We are now facing the error message : ODI-1227: Task SrcSet0 (Loading) fails on the source ORACLE connection VTB_ORACLE_EBS_1213.
    Caused By: java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist.
    Similar previliges can be granted to the work schema on target.
    Venkat

    i think it would be fine with only one schema(user) created at the source system which has got read access on the tables of the EBS DB. Now to resolve this error, assuming XXAPPS user is the one used,
    in the topology --> data server(for EBS) --> physical schema the EBS schema name could be selected for Schema and XXAPPS as the work schema(for all ODI work related objects e.g. CDC)
    Also, in the Data server the user XXAPPS needs to be used which has read access to EBS tables.
    Now everytime ODI generates a query it will access a table lets say DUMMY as ,<EBS Schema>.DUMMY thus the reference is made.
    Alternatively, you can create synonyms for EBS tables in XXAPPS schema.

  • WebCenter Interaction or Oracle Content Integration Suite?

    Hello all,
    I am a newbie to WebCenter.
    I am very confused with whice we should use to integrate Oracle UCM with WebCenter, WebCenter Interaction or Oracle Content Integration Suite?
    Is there any guides for UCM and WebCenter(10g and 11g) Integration?
    Regards,
    Kerr

    Geoff Garcia wrote:
    What has your experience with UCM been like? Are the portlets good? comparable to publisher in functionality?
    How is the ease of use for non-technical content managers?
    Workflow simple?Hi Geoff,
    Whoah, that’s a lot of questions, this should probably be on another thread. By far, this in not a definitive review. (only personal experiences).
    But here goes…
    Assuming you’re using WCI 10.3.0\ALUI 6.5.x:
    What has your experience with UCM been like?
    - Good. You should take UCM training to get the full breadth of what it offers.
    - UCM Install: Pretty simple. If you know where to look.
    - UCM is a Site Manager\builder and THEN some! CPS Portlet Integration covers a small set use cases of its full potential. UCM appears to be a stand alone product.
    - CPS Portlet integration. Not tightly integrated… Currently, you will have to manually add the portal users in the USERS ADMIN utility in the UCM installation. CPS Portlets EAR file is deployed on the OC4J Container/frameworks, which makes it a "Producer". ALUI WSRP Piece is the "Consumer" of the CPS Portlets into the Portal. Make sure you have installed ALUI WSRP correctly. Suggest learning about “WSDL”s. Currently, ALUI WSRP only supports version 1.0 WSDL’s. Only use the version CPS Portlet 1.0 WSDL’s, it offers you both 1.0 and 2.0.
    - What is OC4J Container? ‘http://www.oracle.com/technology/tech/java/oc4j/1013/index.html’ Just install the oc4j frameworks… the full installation appears to be unnecessary.
    Are the portlets good? Comparable to publisher in functionality?
    - The CPS Portlet Suite only represents Administration Portlets for UCM. There is no single .PTE file for CPS Integration. Per Documentation, "3.2.2 CPS Consumption Steps". You have to manage your admin objects.
    - There are no fancy wizards that will make your portlets, YET. Hopefully, this will be available in the future. Web service and portlet creation must be done manually. You must manually create your own web services to point at off site content.
    How is the ease of use for non-technical content managers?
    - Well, once it is set up and you’re trained on UCM. Sure it's snap.
    Workflow simple?
    - Sorry, I haven't worked with this functionality.
    Comments: Publisher really pampers you with all its portlet wizards. Look for them in WCI 11G/above.
    Hope this helps.
    Cheers!!!
    !http://farm3.static.flickr.com/2546/3799299046_4fc6d348be.jpg!

  • Create,move Oracle Retail Merchandising system Database users to IOD

    Hi All,
    RMS v12.0.6; OS: AIX 5.3 64 bit
    Could anyone please let me know the following:
    1.What's the process to create,move Oracle Retail Merchandising system Database users to IOD?
    2.In R12, is "appsweb.cfg" located in FORMS_WEB_CONFIG_FILE is used for forms server running when forms server runs in default mode - servlet mode?Is appsweb.cfg ever used in R12 for any functionality,changes to be made for any configuration etc., is the objective of the question..
    Thanks for your time if someone could clarify on the above two queries..
    Regards,

    The FULL parameter indicates that a complete database export is required. The following is an example of the full database export and import syntax.
    The user must have the privielge of EXP_FULL_DATABASE
    expdp system/password@db10g full=Y directory=TEST_DIR dumpfile=DB10G.dmp logfile=expdpDB10G.log
    impdp system/password@db10g full=Y directory=TEST_DIR dumpfile=DB10G.dmp logfile=impdpDB10G.logGO through below linkfor more details...
    http://www.oracle-base.com/articles/10g/OracleDataPump10g.php
    Regards
    Umi
    Edited by: Umi on Feb 4, 2011 2:27 AM

  • Oracle Retail V13 - RIB Installation

    Hi,
    We are in the process of installing Oracle V13 - Retail Integration Bus. Installation guide mentions the folloiwing in Appendix D - Creating an OC4J RIB Admin Role:
    orion-ejb-jar.xml
    To allow the J2EE role to be used inside the application, edit the orion-ejb-jar.xml file
    present under &lt;oc4j-instance-home&gt;/application-deployments/admin_ejb directory.
    e.g. /home/wsadmin/product/10.1.3.3/OracleAS_
    6/j2ee/rib-rms-oc4j-instance/&gt;/application-deployment/ admin_ejb
    This completes the creation and mapping of the users and roles. Restart the oc4j
    instance after these changes.
    What exactly we are supposed to do in the orion-ejb-jar.xml?
    Can anyone let me know with exact details and format in which the orion-ejb-jar.xml can be modified?
    Thanks,
    Siva

    Hi,
    This is part of OC4J security role creation.
    For further details you can see Oracle® Application Server Administrator's
    Guide 10g Release 3 (10.1.3.3)
    A sample entry will look like this
    <security-role-mapping name="jmxAdministrator">
    <group name="oc4j-administrators" />
    <group name="ascontrol_admin" />
    <group name="rib-oc4j-administrators" />
    </security-role-mapping>
    <security-role-mapping name="jmxusers">
    <group name="oc4j-app-administrators" />
    <group name="ascontrol_appadmin" />
    <group name="rib-oc4j-administrators" />
    </security-role-mapping>
    Regards,
    PPS

  • Urgent...integrate EBS R12.0.5  with Oracle Retail 12.0.5 using BPEL..

    Hi All
    We have to integrate EBS R12.0.5 with Oracle Retail 12.0.5 using BPEL..
    can any one please tell me what are the patch sets that need to be applied to
    EBS R12.0.5
    Oracle Retails
    BPEL
    The documentation available on metalinks is for EBS R12.0.2 integration with Retail 12.0.5
    is there any document which can help us with EBS R12.0.5 integration with Retail 12.0.5
    thanks
    Arshad

    Duplicate thread (please post only once):
    Urgent...integrate EBS R12.0.5 with Oracle Retail 12.0.5 using BPEL
    Re: Urgent...integrate EBS R12.0.5  with Oracle Retail 12.0.5 using BPEL..

  • Oracle Retail Allocation(14.0) is not opening after installation.

    Hi All,
    I have installed Oracle Retail Allocation(14.0) successfully. When I am trying to access the home url:
    http://192.168.0.225:18010/alloc14/faces/pages_home
    getting following error:
    =====================================================================================================================================================================
    ####<Sep 30, 2014 8:08:06 PM IST> <Error> <HTTP> <192.168.0.225> <aloc-server> <[ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000KZ6zn47FGBWFLzyGOA1KAfYz00001f> <1412087886161> <BEA-101017> <[ServletContext@1724426511[app:alloc14 module:alloc14 path:/alloc14 spec-version:2.5 version:V2.0], request: Workmanager: default, Version: 0, Scheduled=true, Started=true, Started time: 75 ms
    GET /alloc14/faces/pages_home?_afrLoop=112769119548580&_afrWindowMode=0&_afrWindowId=null HTTP/1.1
    User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:31.0) Gecko/20100101 Firefox/31.0
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: en-US,en;q=0.5
    Accept-Encoding: gzip, deflate
    Referer: http://192.168.0.225:18010/alloc14/faces/pages_home?_afrLoop=111228698269807&_afrWindowMode=0&_afrWindowId=null
    Cookie: JSESSIONID=hM11Jq6JsR70LXtHQpcpnw7zBDNslZkDnh7RKvgpTzyGZC0QrSQ2!2047385718
    Connection: keep-alive
    ]] Root cause of ServletException.
    java.lang.NoSuchMethodError: oracle.adf.view.rich.context.AdfFacesContext.getOutputModeEnum()Loracle/adf/view/rich/context/AdfFacesContext$OutputMode;
            at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._isPostback(LifecycleImpl.java:715)
            at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._restoreView(LifecycleImpl.java:789)
            at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:422)
            at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:207)
            at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
            at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
            at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
            at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
            at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.portlet.client.adapter.adf.ADFPortletFilter.doFilter(ADFPortletFilter.java:32)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.webcenter.framework.events.dispatcher.EventDispatcherFilter.doFilter(EventDispatcherFilter.java:44)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.retail.apps.rpf.framework.wc.filters.RpfGeneralSettingsLocaleFilter.doFilter(RpfGeneralSettingsLocaleFilter.java:48)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.adf.view.page.editor.webapp.WebCenterComposerFilter.doFilter(WebCenterComposerFilter.java:117)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:128)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
            at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
            at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.wcps.client.PersonalizationFilter.doFilter(PersonalizationFilter.java:75)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.webcenter.content.integration.servlets.ContentServletFilter.doFilter(ContentServletFilter.java:168)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.webcenter.lifecycle.filter.LifecycleLockFilter.doFilter(LifecycleLockFilter.java:151)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
            at java.security.AccessController.doPrivileged(Native Method)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
            at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
            at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
            at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
            at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:163)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
            at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
            at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
            at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    ==========================================================================================================================================
    Please find the application details below:
    Operating System : Red Hat Enterprise Linux Server release 6.0 (Santiago)
    Database Version :  11.2.0.3.0
    RMS : 14.0
    ReA  : 14.0
    Oracle ADF : 11.1.1.7.0
    Any help would be appreciated.
    Thanks & Regards
    Prabhakar

    Hi,
    I have successfully installed Allocation 14.1 with following component. Is it necessary to install it in RMS database 14.1 coz i m getting an error after login into ALLOCATION application like
    ORA-06550: line 1, column 7: PLS-00201: identifier 'ALLOC14DEV.RETAIL_CTX_PKG' must be declared ORA-06550: line 1, column 7: PL/SQL: Statement ignored  
    Installed component:
    weblogic server(WLS) : 10.3.6
    oracle IDM : 11.1.1.6
    ADF libraries installed on WLS : JDEVADF_11.1.1.7.0_GENERIC_130226.1400.6493
    RMS database : 14.0
    RCU : 11.1.1.7
    webcenter : 11.1.1.7
    Thanks

  • Oracle Retail R13 silently released April 17

    Hi,
    At OAUG Collaborate08 conference in Denver it was announced that Oracle Retail would be released April 17 in a "silent release" - not too much media covering.
    Indeed one can now find several R13 media packs at edelivery.oracle.com (licensing requirements of course apply there.)
    I believe that a later release will receive more media coverage, I forgot whether that was about extended Fusion integration or about new features, or....
    Four (patch) releases on R13 are announced to be released in 2008.
    The list of applications for R13 currently includes
    - RMS
    - RSL
    - RETL
    - RDW
    - Allocations
    - SIM
    - ReIM
    - Oracle Retail Workspace (WebCenter)
    - RIB (SeeBeyond replaced with Oracle JMS/AQ, TopLink, Stateless Session Beans and Message Driven Beans, OAS).
    - RWMS
    and several others.
    All GUIs have been remodelled to the uniform SWAN UI standard.
    It was said on Collaborate08 that this would be the Linux release, subsequent AIX, Solaris, HP-UX to follow this summer. I believe that not every software component in the stack differs significantly per OS.
    The media sets that I downloaded include a full documentation set.
    Please also see on MetaLink:
    Overview Of Features And Enhancements Included In Release Version 12 And Assess Benefits Of Upgrading To Version 13
         Doc ID:      Note:465089.1      Type:      REFERENCE
         Last Revision Date:      30-OCT-2007
    The documentation on http://www.oracle.com/technology/documentation/oracle_retail.html has yet not been extended with the R13 sets.
    Nor have any patches been publicly published on MetaLink, though the release guide(s) do mention some known issues in the release(s). Some are being worked on, some patches are available on request.
    Regards,
    Erik Ykema

    Hi,
    Just want to bring to your attention
    http://download.oracle.com/docs/cd/E12462_01/merchandising/docset.html
    in there is a pointer to "Data Conversion Operations Guide".
    Highlevel this defines a series of more or less general staging tables for some entities, with corresponding batch programs that read the staging tables into the target RMS tables.
    Entities like POs, Shipments, transfers etc. all are considered to be closed before migration, if I recall correctly.
    Some entities are not in this DCOG and need custom treatment.
    Also the following Metalink Notes may be of interest:
    Note:563313.1
    Note:725888.1
    Also our System Integrator, Wipro Retail, has another approach, where they have a more or less reusable toolkit that is customized to the customer requirements and handles the whole lot.
    I believe that on the Oracle Retail roadmap is a concept called 'scripted upgrades' which, according to the Oracle Retail Lifetime Support Policy (see PDF at oracle.com), should be available from R12 or R13 onwards, however I haven't seen it yet.
    Regards, Erik Ykema

Maybe you are looking for

  • Could not initialize Photoshop because of a program error" with PS CC 2014

    I get "Could not initialize Photoshop because of a program error" with PS CC 2014 on a 2099 Macbook Pro running Mavericks. Then the program closes. Can anyone help?

  • Cut myself on a T420i

    I was opening my laptop and the e in "Lenovo" on the left hand side broke off and sliced my thumb pretty good. I put a band-aid on it but I was pretty surprised how this happened. Has anyone else had trouble with their branding breaking off? Link to

  • I can't download yahoo games. when i do i get a page saying "unknown publisher" won't open

    Can't download yahoo games. The Oberon company tells me it is either my windows firewall or my microsoft anti virus.  What can I do to resolve this problem?  Some games do make it through but only a few.   Thanks for the help.

  • Want to learn about xCode

    I bought my first Mac in february and I love everything about it. that said, I've been trying to get my hands on as much software as possible and I'm interested in learning about xCode. is there somewhere I can get started, right from scratch? I don'

  • Sess_sh sucessful,while deployejb fail

    Hi, I meet two problems when I try to deploy ejb in oracle 8.1.6. 1. when I use sess_sh to test the service,like: sess_sh -u system -p manger -s sess_iiop://machinename:2481:oracle. It sucessfully enter the shell. but when I try to deployejb,use: cal