ISetup for use with Oracle Incentive Compensation (OIC)

I have read conflicting reports as to whether or not iSetup would be available for use to migrate Compensation Plans (and all other OIC configurations) across instances of Oracle Apps eBusiness.
Does anyone know if R12 (12.04) is capable of handling OIC migrations? Is there any documentation available as to how one would configure iSetup for use with OIC?
Thanks in advance.

Hi,
This is Mugunthan from iSetup development. OIC is not covered as a part of standard selection sets shipped by Oracle. You may consider logging a SR (product code - 841) to get the coverage.
If you already have java program/scripts that migrate OIC, then you can plugin them with iSetup. You can also write your own BC4J APIs for migration of OIC setups and register with iSetup.
To know more about writing BC4J iSetup Fwk APIs, please log a SR.

Similar Messages

  • ISetup for use with User Management / Resources - Roles and & RBAC

    Hi,
    I have a requirement to migrate Instance Sets, Roles, Grants to Roles etc. Basically, lots of stuff from the "User Management" OAF pages.
    Is it possible to use iSetup for this, or is there an alternative?
    Thanks in advance.

    Hi Mugunthan ,
    sorry, should have mentioned that on my original post. We are on 12.1.1 on all target and source environments. Can you point me in the direction of some doco for creating the sets?
    Supplementary question: Is it possible to export the custom selection set into an artefact, like a file or something that can be stored in version control? Ultimately, I would like to use isetup to manage the export of these artefacts and then use "a" backend version of isetup, similar to the jrad tools for importing XML documents. Does any backend functionality exist? I presume it's API based?

  • Configuring DBI for use with Oracle 8i

    We have problem while openning the connection to Oracle 8i using DBI. The error we keep getting when we run a test script is:
    DBD::Oracle object version 1.03 does not match bootstrap parameter 0.47 at directory path/DynaLoader.pm line 188.
    The same script is working fine on another computer where we have Oracle 8.05 installed.
    Probably the DBD is not installed or configured properly. Is there anything we can do to fix this problem?
    Thanks.

    Based on your description, clearly the SPA941 is not registered to a VoIP provider or a SIP server PBX. I am not familiar with the BT bussinness hub if this serves as the PBX of the VoIP network but youb are correct in saying that you need to configure the URL set up of the unit. You need to access the URL via its IP address. To know the IP address of the unit, follow this link: 
    http://linksys.custhelp.com/cgi-bin/linksys.cfg/php/enduser/std_adp.php?p_faqid=5230&p_created=11688... 
    After this, forll thw link for the registration of the VoIP information: 
    http://linksys.custhelp.com/cgi-bin/linksys.cfg/php/enduser/std_adp.php?p_faqid=16560&p_created=1211... 
    You need to also place in this field the “User ID” (usually you phone number from the VoIP provider), the password and the codec being used but youu VoIP provider. Save the settings and check in the “Info” tab if the extension is “registered”.
    If you still have the same problem, I suggest contacting Cisco Tech support to further look into your concern. I believe this unit belongs to the business series devices that Cisco is now supporting. Try to go to this link for the other business series devices and the site where you can get hold of Cisco for support: 
    http://www.cisco.com/web/products/linksys/index.html

  • Where to locate HTTP Server for use with Oracle Express 10g and Apex?

    Hello,
    Im a newbie and I downloaded oracle express 10g and Apex 3.2.1. The Apex install is referencing "choosing a HTTP Server" specifically "Oracle HTTP Server and mod_plsql and the embedded PL/SQL Gateway". My question is do the HTTP server or PL SQL embedded Gateway come with the 10g install or do I need to download them seperately? If so where can I locate them?
    Thank you!

    user12027813 wrote:
    If using Oracle XE, then which APEX install scenario would I used if I downloaded both the XE and apex from the OTN?Oracle XE includes APEX 2.1 and uses the PL/SQL Gateway for HTTP service work. No separate HTTP Server is required.
    If, after you install XE, you want to upgrade to APEX 3.x, you would select the PL/SQL Gateway for the upgrade.
    If the PL/SQL Gateway (EPG) does not provide the full set of services you need, you could put a regular Apache in front and redirect to APEX for those specific issues.
    If that is to complicated, then you could license Oracle Application Server Standard Edition 1 (for a fee) to get an Oracle HTTP Server and it's mod_plsql to replace the internal EPG.

  • Certified Operating Systems for use with Oracle Designer Repository

    Hi all,
    We have Oracle Designer Repository version 10g(9.0.4.3.14) installed on Microsoft Windows 2000. As our OS and Network team is going to migrate the OS from Windows 2000 to Windows 2003, I want to know if Windows 2003 is certified for our Designer version or not.
    Thanks in advance.
    Iman

    I think you misunderstood Mark's statement. Oracle Designer has two distinct but tightly related parts. One is the Oracle Designer Client, which is a client/server application that only runs on Microsoft Windows. The latest versions are certified for Windows XP R3, but you'll have to check the current certification matrix to see on what OSs your version of the Designer client are certified.
    The other part is the Oracle Designer Repository. This is a set of tables, views and stored procedures that are installed in an Oracle database. The Oracle database can be on any OS or hardware for which that version of the database is certified. There is a certification matrix to show the certified versions of OS and database, and a separate matrix to show certified combinations of database and repository.
    The Oracle Designer Repository and the Oracle Designer client must be matched, but basically, if you run the Repository Administration Utility against a lower version of the repository, it will give you an option to upgrade the repository to the version that is compatible with your client. If you run against a higher version of the repository, it just won't work, and you'll have to upgrade your client.
    Unfortunately, the certification matrices seem to have disappeared from OTN, so they are only available through My Oracle Support.

  • [Oracle JDBC Driver]This driver is locked for use with embedded application

    Hi
    I installed Sun Java Studio Enterprise 8, and am trying to connect to my Oracle database using the attached tutorial code.
    The code compiles fine, but I get the following error whenever I run the file: [Oracle JDBC Driver]This driver is locked for use with embedded application
    I don't understand what is happening.
    Using the Runtime navigation panel on the upper left of the IDE screen, I can right-click and connect to the database, and navigate database files, using the Oracle JDBC Driver that came with JSE8.
    Name: Oracle Driver
    Driver: com.sun.sql.jdbc.oracle.OracleDriver
    Database URL: jdbc:sun:oracle://JAZZPUP:1521;SID=REPO
    If the driver is installed, and can be used to connect to a database by right-clicking on the database definition in the Runtime panel, why can't I connect to it just using java code in the IDE. I would expect both methods to work or to fail, not one of each using the same IDE.
    Many thanks and take care,
    Shayne
    import java.sql.*;
    public class CreateCoffees {
    public static void main(String args[]) {
    //String url = "jdbc:mySubprotocol:myDataSource";
    String url = "jdbc:sun:oracle://JAZZPUP:1521;SID=REPO";
    Connection con;
    String createString;
    createString = "create table COFFEES " +
    "(COF_NAME VARCHAR(32), " +
    "SUP_ID INTEGER, " +
    "PRICE FLOAT, " +
    "SALES INTEGER, " +
    "TOTAL INTEGER)";
    Statement stmt;
    try {
    //Class.forName("myDriver.ClassName");
    Class.forName("com.sun.sql.jdbc.oracle.OracleDriver");
    } catch(java.lang.ClassNotFoundException e) {
    System.err.print("ClassNotFoundException: ");
    System.err.println(e.getMessage());
    try {
    //con = DriverManager.getConnection(url, "myLogin", "myPassword");
    con = DriverManager.getConnection(url, "login", "password");
    stmt = con.createStatement();
    stmt.executeUpdate(createString);
    stmt.close();
    con.close();
    } catch(SQLException ex) {
    System.err.println("SQLException: " + ex.getMessage());
    } //end class CreateCoffees
    ---

    There are two similar threads:
    http://swforum.sun.com/jive/thread.jspa?threadID=61327&tstart=0
    http://swforum.sun.com/jive/thread.jspa?threadID=51057&messageID=188210
    To summarize - the DataDirectDriver that is shipped with the IDE seems to be locked to be used inside the IDE only because of some licensing issues etc..
    That's weird, I agree. I will raise a question on reasons for such a behavior.
    The solution would be to use Oracle's own driver, that is distributed at no charge from their web site - http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html
    HTH,
    Kirill

  • Configuration of XSQL for use with non-Oracle dbs

    If anyone has positive experiences with configuring XSQL for use with non Oracle databases I'd like to hear how they did it, see tutorials, configuration files, etc.
    Specifically setting up to use MySQL or Postgresql on Linux/FreeBSD would be very interesting.
    Also, does anyone use this without setting mime types? How would you go about this so you could point to the relevant servlets in the page?
    Josh

    I don't understand how setting up for Non-Oracle DB's is related to not setting up the servlet as an extension-mapped servlet.
    It might work, but would you run JSP's
    that way? XSQL behaves very similiarly
    inside to how a JSP runner works, which
    wants to be servlet-mapped.
    However, OAS 4.0.8.1 does not support
    extension mapping and XSQL works there
    so i'm assuming it would work on other
    servers set up that way. It's not
    a configuration we test/certify.
    null

  • Help needed in oracle incentive compensation

    Hi All,
    Im working on oracle incentive compensation 11i.
    I have a plan element, which i need to attach to nearly 2000 compensation plans.
    For this, i'm having a custom program which calls the API cn_comp_plan_pub.create_comp_plan, to attach the plan element to all the plans.
    But, the program ends in error and i'm getting an message like 'The data for this compensation plan is not consistent with the plan in the database. Compensation Plan:9999.99'. This error is from the API.
    Has someone came across a similar error before. Can somebody provide some pointers on this.
    Thanks in advance,
    Mohan

    you need to check with OIC functional in your project and understand the plan /data. This will answer your question.

  • What XA JDBC driver should I use with Oracle 8i 8.1.6

    I need to use an XA JDBC driver for Oracle 8i 8.1.6. I am using the driver in
    a ConnectionPool in a TxDataSource for use by some entity beans using EJB 2.0.
    I'm running WebLogic Server 6.0 sp2, EJB 2.0, Java 2 SDK 1.3.1 Server VM, Solaris
    2.7, and Oracle 8i 8.1.6.
    I know of three different Oracle XA drivers: WebLogic jDriver for Oracle XA, Oracle
    OCI type 2 driver XA, and Oracle Thin tyoe 2 XA. Are there any other drivers
    that I can use for Oracle 8.1.6? Which driver and which version should I use?
    For example, can I use the Oracle 8.1.7 JDBC drivers with the Oracle 8.1.6 server,
    or would the Oracle 9i drivers work with the Oracle 8i server? Which drivers
    are faster, and which support more features? I assume that I should not use the
    type 4 driver since I am not using an applet, but I don't know if there are bugs
    in the OCI C library for Solaris or in the JDBC drivers that use it that prevent
    XA from woking. Which version of the Oracle C OCI library should I use if I use
    a type 2 driver?
    Thanks,
    Ross Goldberg

    Hi,
    I think you can't use the 8.1.6 thin driver for XA, you would have to
    use the OCI driver or 2PC-enable your datasource. AFAIK this has been
    changed for 8.1.7
    Check http://e-docs.bea.com/wls/docs61/////jta/thirdpartytx.html.
    Daniel
    -----Original Message-----
    From: Gene Chuang [mailto:[email protected]]
    Posted At: Thursday, August 30, 2001 2:04 AM
    Posted To: jdbc
    Conversation: What XA JDBC driver should I use with Oracle 8i 8.1.6
    Subject: Re: What XA JDBC driver should I use with Oracle 8i 8.1.6
    I've asked this question before. This is the reply from Joe
    Weinstein:
    For reliability and JDBC 2.0 compliance, I recommend the
    Oracle thin driver.
    If not that driver, you should verify that a type-2 driver
    actually does
    deliver better performance, but then I would not have a
    strong preference
    between their type-2 and ours. Theirs may be faster, and JDBC
    2.0 compliant.
    Both are succeptible to OCI bugs, some of which only they can
    fix, but we
    listen.
    Gene
    "Ross Goldberg" <[email protected]> wrote in message
    news:[email protected]...
    >
    I need to use an XA JDBC driver for Oracle 8i 8.1.6. I am using thedriver in
    a ConnectionPool in a TxDataSource for use by some entity beans usingEJB 2.0.
    I'm running WebLogic Server 6.0 sp2, EJB 2.0, Java 2 SDK 1.3.1 ServerVM, Solaris
    2.7, and Oracle 8i 8.1.6.
    I know of three different Oracle XA drivers: WebLogic jDriver forOracle XA, Oracle
    OCI type 2 driver XA, and Oracle Thin tyoe 2 XA. Are there any otherdrivers
    that I can use for Oracle 8.1.6? Which driver and which versionshould I use?
    For example, can I use the Oracle 8.1.7 JDBC drivers with the Oracle8.1.6 server,
    or would the Oracle 9i drivers work with the Oracle 8i server? Whichdrivers
    are faster, and which support more features? I assume that I shouldnot use the
    type 4 driver since I am not using an applet, but I don't know ifthere are bugs
    in the OCI C library for Solaris or in the JDBC drivers that use itthat prevent
    XA from woking. Which version of the Oracle C OCI library should Iuse if I use
    a type 2 driver?
    Thanks,
    Ross Goldberg

  • WebGate Error Report - The URL /access/sso is reserved for use by Oracle...

    We are getting a 500 error on the web gates when logging in.
    They have been working before, but are now reporting the error below.
    2010/01/27@07:09:25.632239 18521 33 WEB ERROR 0x0000151F /export/build40/Oblix/coreid1014/palantir/commonlib/src/apache2_req_info.cpp:170 "WebGate Error Report" Message^The URL /access/sso is reserved for use by Oracle Access Manager and has been used with incorrect parameters. ReqReq^POST /access/sso HTTP/1.1 ReqProto^HTTP/1.1 ReqHost^p1uawbsv1.portal.internal ReqStatLine^ ReqStatus^200 ReqRawUri^/access/sso ReqUri^/access/sso ReqFilename^/u01/app/oracle/product/11.1.1/ohs1/instances/instance1/config/OHS/ohs1/htdocs/access ReqPath^/sso ReqArgs^
    The configuration uses form based login
    Details for Authentication Scheme
    Level           1
    Challenge Method           Form
    Challenge Parameter           
    creds:userid password
    form:/oamsso/login.html
    action:/access/sso
    passthrough:no
    SSL Required           No
    Challenge Redirect           
    Enabled           Yes

    thanks,
    the login post goes to /access/sso, but now i am getting 404 error /access/sso
    Below is what I currently have the following in httpd.conf, which is the same as in a working environment.
    The web gate policy resources include /portal and /public, but no mention of /access. How does web gate know how to intercept /access/sso?
    [2010-01-28T10:50:42.9609+11:00] [OHS] [ERROR:32] [OHS-9999] [core.c] [host_id: p1uawbs02] [host_addr: 10.252.16.223] [tid: 18] [user: oracle] [ecid: 0000Pa_5qz3BP9s5Gj0Fyf0001rV00009_] [rid: 0] [VirtualHost: main] File does not exist: /u01/app/oracle/product/11.1.1/ohs1/instances/instance2/config/OHS/ohs1/htdocs/access
    #*** BEGIN WebGate Specific ****
    LoadFile "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access/oblix/lib/libgcc_s.so.1"
    LoadFile "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access/oblix/lib/libstdc++.so.5"
    LoadModule obWebgateModule "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access/oblix/apps/webgate/bin/webgate.so"
    WebGateInstalldir "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access"
    WebGateMode PEER
    <Location /access/oblix/apps/webgate/bin/webgate.cgi>
    SetHandler obwebgateerr
    </Location>
    <Location "/oberr.cgi">
    SetHandler obwebgateerr
    </Location>
    <LocationMatch "/*">
    AuthType Oblix
    require valid-user
    </LocationMatch>
    #*******Default Login page alias***
    Alias /oamsso "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access/oamsso"
    <LocationMatch "/oamsso/*">
    Satisfy any
    </LocationMatch>
    #*** END WebGate Specific ****

  • PeopleSoft 8.52 Plug-in Implementation Guide for use with Grid Control

    Per the Readme accompanying the download of PeopleSoft 8.52 Plug-in for use with Grid Control (11.1.0.1)-- "For the implementation reference guide, refer to "PeopleSoft Enterprise Environment Management Plug-in 8.52 for Oracle Enterprise Manager Implementation Guide" which you can download from Oracle Technology Network."
    I don't seem able to find it.
    Can anyone point me in the right direction?
    TIA
    Jeri

    Duh, I was looking on the wrong site.

  • Which Jars are recommended to be used with oracle 11.2.0.1 & reason to use

    Can someone please suggest which jars should be used with Oracle 11G(11.2.0.1)
    We are using ojdbc14.jar & ojdbc14_g.jar with Oracle 10.2.0.4.
    Now we are migrationg to Oracle 11G.
    Any help on this is appreciated.

    Hi,
    Can someone please suggest which jars should be used with Oracle 11G(11.2.0.1)
    We are using ojdbc14.jar & ojdbc14_g.jar with Oracle 10.2.0.4.
    Now we are migrationg to Oracle 11G.AFAIK, same should work with 11g.
    Any help on this is appreciated.Welcome 2 Oracle Forums :)
    Refer MOS tech notes:
    *Starting With Oracle JDBC Drivers [ID 401934.1]*
    This tech note can be access at http:support.oracle.com, but for access u need to have a valid CSI number.
    thanks,
    X A H E E R

  • Oracle Incentive Compensation Question

    Hi,
    I would like to know if there are other users who have implemented "Oracle Incentive Compensation".
    We have implemented OIC about a year ago, and are currently running into performance issues in the "Loader, Collection and Calculation" process. We process huge transaction volume of data every day, and our process performance creeps up on some nights (Just before the next purge is due).
    Any help is greatly appreciated.
    Thanks!

    Hi,
    You also may want to analyze the collection and calculation process to see if there are any oppurtunities to tune. In some colelction process, we add some sql statements (indirect mappings, actions etc), that may slow down the process.
    You also may want to consider aggregating transactions before collection toe reduce the amount of data fed into OIC.
    Similarly, depending on how your comp plan is defined there may be opportunities to improve performance. Depending on what version you are on, there some options to aggregate data during rollup process so that calculation runs faster.
    If you need more specific details, you may reach me at [email protected]
    Regards
    Srini

  • JDEVELOPER 3.2.2 for use with 8.1.7 is now available for download on technet

    JDEVELOPER 3.2.2 for use with 8.1.7 is now available for download on technet at :
    http://otn.oracle.com/software/products/jdev/software_index.htm
    PLEASE REVIEW THE "INSTALL NOTES" (INSTALL.HTM) AND "RELEASE NOTES " (README.HTM) FOUND IN THE JDEVELOPER 3.2 ROOT FOLDER TO AVOID KNOWN ISSUES AND REVIEW ANY LIMITATIONS DOCUMENTED THERE.

    > Performance has been improved for applications where all internal Btree nodes do not fit in cache, particularly when performing record insertions.
    This sounds interesting! Could you please provide more information about that (especially in which situations this improvement will take effect)?
    Thanks and regards
    Arthur

  • Can 10G express be used to create an application for use with a 10G instanc

    Hi
    Can 10G express be used to create an application for use with a 10G instance? I am new to Oracle 10G. I like the interface for creating applications, maintaining users, etc. Can this tool be pointed at a regular instance of 10G so that applications can be created against a regular 10G database not the express database?
    Can PL/SQL proceedures that are created in 10G express also be migrated to a 10G database?
    Thanks in advance
    Dean-O

    Can 10G express be used to create an application for use with a 10G instance?Yeah, that's the whole point from a marketing perspective ;)
    Can this tool be pointed at a regular instance of 10G so that applications can be
    created against a regular 10G database not the express database?Yes but it's a different version. Check out:
    http://www.oracle.com/technology/products/database/application_express/index.html
    Can PL/SQL proceedures that are created in 10G express also be migrated to a 10G database?Yes they can!
    ~Jer

Maybe you are looking for

  • IPhoto 6.06 won't import recent photos from iphone

    I've been importing photos from my iPhone for over a year, and suddenly now iPhoto 6.06 doesn't seem to see the most recent pictures on the iPhone, and won't import them. iPhoto simply seems to ignore the last 18 photos on the iPhone. If I repeat the

  • How webDynpro handles exception thrown by adaptive web service

    Hi people, in design time, webdynpro can handle web service's exception by defining return structure based on the <b>Fault </b>which is the exception defined in the web service. But in the runtime, when web service throws exception, webDynpro can not

  • Deactivate serial number of PSE 10

    How to deactivate my serial number for PSE 10 on a previous computer? I looked on internet and saw that you can do that with Creative Cloud (CC). But to join CC you have to subscribeand do monthly payment and I don't want that. Is that the only possi

  • Deploy web service on 9iAS

    I have gone through the tutorial of creating a web service based on PL/SQL code. This all worked fine on my local machine, but now i would like to deploy a web service on a 9iAS application server. I have managed to create a connection to 9iAS. When

  • Restoring navigation bar

    HI, I just got my new imac, looks great but... as I am surfing with Safari, I must have clicked on something because I lost my navigation bar. I don't see the possibility of viewing it again in the view menu. Any suggestion for restoring it back? I c