ODI - SOA Oracle By Example Public Documents

The following ODI <-> SOA OBE's have been posted to oracle.com
Oracle Data Integrator
Developing an ODI XML to Database Transformation Using Interface with ODI Constraint
Developing an ODI XML Transformation that can be executed within a BPEL process
Creating an ODI Error Hospital that Uses BPEL Human Workflow
Asynchronously Invoke ODI Scenario from BPEL Process with Callback
@ http://www.oracle.com/technology/obe/fusion_middleware/index.htm
Thanks,
Denis

The links at http://otn.oracle.com/obe/obeocsr2/index.html are all working properly for me....which URL is giving you problems?
Regards, OTN

Similar Messages

  • Usage of Documents vs. Public Documents folders

    Can someone please explain the usage of Documents vs. Public Documents folders in BOL?
    I understand that if someone is registered in a Group, but not added as a participant to a specific Workspace, he/she will be able to access Team Collaboration but will not have access to any Workspace. Will they, however, be able to access documents in the Public Documents folder, is provided with the corresponding access URL?

    SQL> select xdburitype('/xdbconfig.xml').getXML() from resource_view
    2 where equals_path(res,'/xdbconfig.xml') = 1;
    XDBURITYPE('/XDBCONFIG.XML').GETXML()
    <xdbconfig xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd" xmlns:xsi="http://w
    SQL> /
    XDBURITYPE('/XDBCONFIG.XML').GETXML()
    <xdbconfig xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd" xmlns:xsi="http://w
    SQL> select xdburitype('/xdbconfig1.xml').getXML() from resource_view
    2 where equals_path(res,'/xdbconfig1.xml') = 1;
    no rows selected
    SQL> select xdburitype('/xdbconfig1.xml').getXML() from dual;
    ERROR:
    ORA-31001: Invalid resource handle or path name "/xdbconfig1.xml"

  • OCS Oracle By Example Docs are gone

    When I try to get to the Oracle by Example guides for OCS, which are pretty much the only good documentation made for the product, the link says the documents could not be found. Could someone please put them back?

    The links at http://otn.oracle.com/obe/obeocsr2/index.html are all working properly for me....which URL is giving you problems?
    Regards, OTN

  • Oracle use example

    Hi!
    I make all what needed to connect to Oracle from Tuxedo. (i can see in oracle this
    connections)
    Now i want do something with this connects.
    I try to change simpapp, but can't find some example or document about how do that.
    I write:
    #include <sqlcode.h>          /* TUXEDO */
    #include <sqlca.h>
    #include <sqlda.h>
    #include <oxa.h>
    extern "C"
    #endif
    void
    #if defined(__STDC__) || defined(__cplusplus)
    GETDATA(TPSVCINFO *rqst)
    #else
    GETDATA(rqst)
    TPSVCINFO *rqst;
    #endif
         int i;
    tx_begin();
         for(i = 0; i < rqst->len-1; i++)
              rqst->data[i] = tolower(rqst->data);
    EXEC SQL INSERT INTO emp (deptno) VALUES ('dddd');
    tx_commit(); /*Commit the transaction*/
    tx_close(); /*Close transaction*/
         /* Return the transformed buffer to the requestor. */
         tpreturn(TPSUCCESS, 0, rqst->data, 0L, 0);
    , but here error
    /export/home/tuxedo/apps/simpapp>compile
    BS-1e97.c:
    simpserv.c:
    "simpserv.c", line 117: undefined symbol: EXEC
    "simpserv.c", line 117: syntax error before or at: SQL
    cc: acomp failed for simpserv.c
    CMDTUX_CAT:1832: ERROR: can't execute cc -I$TUXDIR/include -o simpserv BS-1e97.c
    -L${TUXDIR}/lib simpserv.c -ltux -lbuft -ltux2 -lfml -lfml32 -lgp -lnsl -lsocket
    Q
    1) what header file i need to use to make some EXEC calls?
    2) maybe there is some additional task to put oracle and tuxedo together?
    3) maybe i need compile in other whay my simpapp server code?
    4) maybe in internet have some nice example or docs on this thing?
    Signis.

    It isn't good practice to use a Tuxedo global transaction around a
    single update like this. You should simply code your Oracle code as if
    it were a standalone application, using COMMIT WORK to complete the
    transaction. Tuxedo and Oracle will not know anything about one another,
    and will get along much better this way. Remove any references to the
    TMS_ORA, the OPENINFO, and any tx calls from your application.
    You'll need to CONNECT to Oracle from your tpsvrinit, since Tuxedo won't
    be doing it for you.
    Make sure that you rename the sql*.h files in Tuxedo's include
    directory, as they can get included by mistake when building an Oracle
    program.
    Once you get an Oracle service working, you can move on to using Tuxedo
    transactions, but only if you really need them. If you can't answer the
    question, "Why do I need Tuxedo transactions?" then you probably don't
    need them.
         Scott Orshan
    Signis Vavere wrote:
    >
    Hi!
    I make all what needed to connect to Oracle from Tuxedo. (i can see in oracle this
    connections)
    Now i want do something with this connects.
    I try to change simpapp, but can't find some example or document about how do that.
    I write:
    #include <sqlcode.h> /* TUXEDO */
    #include <sqlca.h>
    #include <sqlda.h>
    #include <oxa.h>
    extern "C"
    #endif
    void
    #if defined(__STDC__) || defined(__cplusplus)
    GETDATA(TPSVCINFO *rqst)
    #else
    GETDATA(rqst)
    TPSVCINFO *rqst;
    #endif
    int i;
    tx_begin();
    for(i = 0; i < rqst->len-1; i++)
    rqst->data[i] = tolower(rqst->data);
    EXEC SQL INSERT INTO emp (deptno) VALUES ('dddd');
    tx_commit(); /*Commit the transaction*/
    tx_close(); /*Close transaction*/
    /* Return the transformed buffer to the requestor. */
    tpreturn(TPSUCCESS, 0, rqst->data, 0L, 0);
    , but here error
    /export/home/tuxedo/apps/simpapp>compile
    BS-1e97.c:
    simpserv.c:
    "simpserv.c", line 117: undefined symbol: EXEC
    "simpserv.c", line 117: syntax error before or at: SQL
    cc: acomp failed for simpserv.c
    CMDTUX_CAT:1832: ERROR: can't execute cc -I$TUXDIR/include -o simpserv BS-1e97.c
    -L${TUXDIR}/lib simpserv.c -ltux -lbuft -ltux2 -lfml -lfml32 -lgp -lnsl -lsocket
    Q
    1) what header file i need to use to make some EXEC calls?
    2) maybe there is some additional task to put oracle and tuxedo together?
    3) maybe i need compile in other whay my simpapp server code?
    4) maybe in internet have some nice example or docs on this thing?
    Signis.

  • File Permission Issues from Public Document Library In Workspace

    Hello All,
    I've scanned through the posts and have not seen this issue.
    I've created a workspace for a customer. They are able to login to the workspace with no problem. They can browse the documents and folders under Public Documents no problem. The problem occurs when they try to open a document. They are prompted for windows login credentials. This occurs for anyone using IE, not for Firefox.
    We did find one work around for accessing WebDAV via IE, but I'd like them to use the console if possible.
    Anyone have any thoughts?
    Thanks,
    Ray Parente

    Ray,
    The issue with IE is that when a document is opened it tries to create a back channel via webDAV to allow the document to be edited in place. This is where the login request comes from and if the customer marks the login to be remembered it will only happen each time they access the document for the first time in a session.
    IE uses webDAV but the others just download the doc and it must be resaved.
    Phil

  • I am trg to open a PDF and I am getting a security warning that says allow cancel or block and then it says it needs a signature to open the document I have never had this problem before it is on a public document I am trying to view any help is apperciat

    I am trying to open a PDF in and I am getting a security warning that says block , close , or allow and then it still will not open then it says it needs a signature it is a public document any help is appreciated thank you in advance sorry this is my first time on here

    I have no idea what you're talking about. Are you sure it want a "signature" and not "password"? If it asks you for password then the document is encrypted and you need to know the password toopen it. The fact that it is a "public" PDF, whatever you mean by "public" does not mean anything. If it is not that then:
    Which product are you using, which version (including minor), which platform (Win/Mac), which OS/version? Please, include screenshots of the alerts, warnings that you get.

  • Oracle BPM task flow documents save on server

    Hi,
    I want to know where I can store Oracle BPM process attached document except Oracle Webcenter or UCM. Can I store them in database or some other server. I shall be very thankful for help.

    Maybe this can help you: http://mike.hostetlerhome.com/2007/02/12/weblogic-oracle-and-blobs-oh-my/
    It shows how to obtain a vendor object from the weblogic wrapped instance.
    From the blog
    weblogic.jdbc.wrapper.Blob cast1 = (weblogic.jdbc.wrapper.Blob) o;
    BLOB myblob = (BLOB) cast1.getVendorObj();

  • Install few files in Public Documents Directory

    I am creating an installer in which I am installing the actual application in ProgramFiles folder. Few supporting files have to be added to the Public Documents directory. This directory would be in different locations based on the OS - Windows XP/Vista/7. But I don't find such a category in the Source Files page under "Destination View" list. There is a [PersonalFolder] but as per LV help, this directory pertains to the Windows user who is currently logged in. So, how do I install these supporting files directly into Public Documents folder?
    Thanks,
    Saranya

    I might be wrong.  The following link shows the mapping of the installer to OS folders
    http://digital.ni.com/public.nsf/allkb/811FACF92E678065862576660077CE21
    I often write to a public docs folder from an application but have not had to install from the installer directly into this folder.
    Paul Falkenstein
    Coleman Technologies Inc.
    CLA, CPI, AIA-Vision
    Labview 4.0- 2013, RT, Vision, FPGA

  • Updated OWB module available in "Oracle By Example" series on OTN

    All,
    The Oracle By Example series on OTN has been updated to Oracle9i Release 2. This includes a Warehouse Builder module updated from 3i to 9i. The module is a simple set of hands-on activities using the order entry tables that come with the database. (The module is a high-level overview, not a substitute for the 4-day instructor led course, "Oracle9i Warehouse Builder: Implementation", course code D12157GC20.)
    The URL for the Oracle By Example OWB module is:
    http://otn.oracle.com/obe/
    Click "Oracle by Example Series Release 2".
    Then click #8, "Build a Data Warehouse for Business Intelligence".
    Then click #8, "Creating a Data Warehouse Using Oracle Warehouse Builder".
    Regards,
    Rick

    Hi Paul,
    As far as my understanding.
    You dont want to create "REL_EXPENSE.REL_EXPENSE.REL_TIME_DAY_CODE" in the times dimension since the "code" attribute is already present in the time dimension(once you created using time wizard).
    Soon after you created the cube by mapping the two dimension "category" and "times" to it, all the attributes in both the dimension will be present in the cube automatically. Other than this you will create a measure column named "Expense" in the cube.
    Regards,
    Saro
    Mark Answers Promptly

  • Urgent : Home - Documents - Overiview - Public Documents

    Hi,
    I want to make some modifications in the Public Documents iview which could be found here in the Portal:
    Portal Content -> Content Provided by SAP -> End User Content -> Standard Portal USers -> iviews -> com.sap.km.iviews -> Public Documents.
    Normally, when we click on Home -> Documents -> Overview -> Public Documents, i get the public documents iview in the content area. We can see Entry Points > Public Documents. Here if you right click on Public Documents, you get a context menu which has the following options:
    1) New -> folder, upload, text file, HTML File, Link, External Link and Forms.
    2) Add to portal favourites
    3) Send To
    4) Go to
    5) Details for Link
    6) Details
    The modifications that i want to make:
    1) Remove the options Link, External Links and Forms from Context Menu Item or Option "New"
    2) Remove the options 'Send to', 'Go To' and 'Details for Link' from the context menu.
    How can i achieve this ? Point would surely be awarded !!!
    Thanks in advance.
    Regards,
    MA

    You find more information on how to configure the Explorer interface here:
    http://help.sap.com/saphelp_nw04/helpdata/en/87/41389793deac4f92696f38378e56fb/frameset.htm
    Information on commands and command groups can be found here:
    http://help.sap.com/saphelp_nw04/helpdata/en/4c/9d953fc405330ee10000000a114084/frameset.htm
    As far as I know you have to modify the "DetailsGroup" command group (or assigned command groups).
    The Public Documents iView has "ConsumerExplorer" set as Layout Set which itself has the "DetailsGroup" configured as "Commands for the details menu".
    These settings can be modified at
    System Administration > System Configuration > Knowledge Management > Content Management
    > User Interface > Settings > Layout Set
    and
    > User Interface > Commands
    But be careful, a modification of the DetailsGroup could also affect other iViews using this group! Maybe you should use copies and modify them instead of the original settings.
    Regards, Alex

  • Documents in public documents could not be downloaded

    Hi Guru:
    I can upload document to the public documents folder, and also could see the download menu item, but when I tried to download it, I will get a portal runtime error.
    I then check the KM content, and I can see my document is there.
    Also all the icons in the public documents folder are display as 'X'.
    Any suggestions?
    Thanks.
    Eric

    check if there is any locked object, if so unlock it and then try.
    is the document uploaded sucessfully?
    Regards,
    Yogesh...

  • To set permisson for folders within a folder in KM Public documents

    I have lot of folders created in Public documents section and permission to add more folders are given only to few users.
    I want all the users to upload or download documents within these main folders.
    ISSUE:
    I do want want all the users to create sub folders within the main folders.I want them only to add/download documents so that there will not be any unstructured mess of folders.
    I'm unable to set permission as described above.When i give "Read/Write" permission for all users within the main folders then user will be allowed to create sub-folders which i want to avoid.
    Is there any method i can solve the above issue.
    Thanks and Regards,
    Pradeep

    Hi Pradeep:
    There is also a work around solution for this problem (which is not a direct way).
    For this you need to create TWO iViews to the folder path:
    1. Navigation iView: you might've already create this iView. Now make Everyone or your UserGroup as 'Read' only in Details > Setting > Permissions. Remove Read/Write to them.
    2. Upload iView: Now create an 'Upload iView' to the same path (same as Navigation View). This way users can only upload content (files) in to the said folders and can't create the Folders.
    Hope this helps and solves your issue.
    Tnx,
    MS
    points to useful answers

  • Oracle Extensions Examples & WebLogic Server

    I've run the oracle extensions examples with weblogic server and cannot get the
    string representation for the addresses, as indicated in the examples documentation.
    I get a hexadecimal representation. I'm running structs, refs and arrays business
    object examples. My output is, for example:
    [java] Employee#: 103
    [java] Name: Fred Couples
    [java] Address: 0x39323031205061726B205374
    [java] 0x416C6578616E64726961, 0x5641
    [java]
    [java] Employee#: 105
    [java] Name: David Toms
    [java] Address: 0x343433312043616E616C20537472656574
    [java] 0x4E6577204F726C65616E73, 0x4C41
    [java]
    So my questions is how do I get a string representation? Is there a hextostring
    conversion java method? Why do I get hex in the first place?. The source file
    is using system.out.println.
    The output should be, for example:
    Address: 4431 Canal Street
    New Orleans, LA
    Look at the AddressBO.java file in the C:\bea\weblogic700\samples\server\src\examples\jdbc\oracle\extensions
    directory.
    I use BEA 7.0 and Oracle 9.0.1.1.1.
    Steve.

    The datatype for address may clob.Clob values cannot be retrieved directly .please try the following code.
    Clob clob = rs.getClob(3);
    Reader reader = clob.getCharacterStream();
    int l=1;
    StringBuffer str = new StringBuffer();
    if(reader!=null)
    while((l=reader.read()) != -1)
    str.append(new Character((char)l).toString());
    reader.close();

  • Can any one help me sending Oracle application server Cloning  document 9.0.4 version

    Can any one help me sending Oracle application server  Cloning document 9.0.4 version (Mail id removed by moderator)
    Many Thanks in advance
    Deepak

    Hi Deepak,
    In first place application server 9.0.2 is desupported since 30th June 2007.So oracle would always recommend its customer to be on the latest versions.
    Please follow the below URL for cloning Appplciation Server 9.0,.4
    Cloning Application Server Middle-Tier Instances
    Regards,
    Prakash.

  • Oracle 10g Example Database

    How can I install the Example Database via Script?
    My System:
    Oracle 10g on SuSE Linux 8.2
    Thanks!

    Perhaps you will more chance to find a response with posting your question into Oracle By Example (OBE).<br>
    <br>
    Nicolas.

Maybe you are looking for

  • Bluetooth not available after upgrading to Mountain Lion

    Mine is a mid-2011 iMac. I tried all the ways listed in https://discussions.apple.com/message/4874277?messageID=4874277#4874277?messageI D=4874277 but with no luck. Anyone experienced similar issue with a solution? Thanks. Wenbin

  • Has anybody else noticed burn marks on bottom of screen?

    I have 2 Macbook pro's non-unibody previous models and on both of them I have noticed charred marks on the bottom of the screen (silver portion) and on the bar that connects the screen to the body.

  • Running Hibernate 3 in Weblogic 10

    I am attempting an upgrade from WL 9.2 to WL 10.0. I have encountered an issue as I am using Hibernate3 (3.2.6). and also DROOLS,JBPM Ostensibly, from what I have read on various sites, the issue is with the use of ANTLR as the new query parser/trans

  • Presets : Interpolation vs Apply (or Undo)

    Hello, I'm quite frustrated with the preset as they are. Of course it's time saving, but most of time a preset fit perfectly for one picture, the one you were working on when you saved that preset. And they often require adjustements after being appl

  • Deleted Recovery Partition and It no longer shows up on reboot! HELP!

    Accidently deleted Recovery Partition and it no longer shows up on reboot! HELP! I'm trying to install windows on my mac so i do some CAD, but i don't want to proceed without getting the Recovery Partition back.