Helo documents on Oracle Marketing OnDemand

Hello Everyone,
Can you people share me e-books , tutorials, help files available with you related to Oracle Marketing OnDemand. Please mail me at [email protected]
Thanks in Advance,
Raghu

Raghu, this YouTube video will give you some insite into our new CRM On Demand Marketing:
http://blogs.oracle.com/crm/2010/10/more_sales-ready_leads_for_les.html
Please contact your CRM On Demand sales rep for more details.

Similar Messages

  • Check it out! The Oracle Marketing Cloud is officially on social.

    The Oracle Marketing Cloud is officially on social media. You can now follow us on:
    Facebook
    LinkedIn
    Twitter
    Google+
    Follow us here to get all the latest updates from the Marketing Cloud.

    Hi Thanks for the reply
    I check check-box of proxy settings and restarted the jdeveloper and tried again but still it throws the same error? one doubt here...what all we need to include / exclude in our proxy settings...
    and the I tried providing service name as both java and javatrial8477 but no luck i followed the same steps which are mentioned in the below document
    Part 2: Deploying ADF Applications to Oracle Java Cloud
    Do i need to do any other configuration? Or i can directly deploy my ear file to java service console rt instead of creating connection tot the server from IDE.
    Regards,
    Kotresh

  • Storing PDF and Word document in oracle database

    any idea, how to store PDF and word document using oracle database.
    thanks

    The common approach is store as BLOB in database, use DBMS_LOB package to handle the loading and reading, sample script source asktom
    Also check this thread in Asktom
    SQL> create table demo
      2  ( id        INT PRIMARY KEY,
      3    theBlob   blob,
      4    dummy_col VARCHAR2(1)
      5  )
      6  /
    Table created.
    SQL> -- --------------------------------------------------------------
    SQL> -- Load a PDF file into a BLOB field and compress the BLOB.
    SQL> -- --------------------------------------------------------------
    SQL> declare
      2      l_blob    blob;
      3      l_bfile   bfile;
      4 
      5  begin
      6      insert into demo (id, theBLOB) values ( 1, empty_blob() )
      7      returning theBlob into l_blob;
      8 
      9      l_bfile := bfilename( 'BLOB_DIR', 'Test.PDF' );
    10      dbms_lob.fileopen( l_bfile );
    11 
    12      dbms_lob.loadfromfile( l_blob,
    13                             l_bfile,
    14                             dbms_lob.getlength( l_bfile ) );
    15 
    16      UPDATE demo
    17      SET    theBlob = utl_compress.lz_compress(l_blob, 6)
    18      WHERE  id = 1;
    19  -- If you don't want compress the LOB just update directly
    20      dbms_lob.fileclose( l_bfile );
    21      COMMIT;
    22  end;
    23  /
    PL/SQL procedure successfully completed

  • How to Edit Word Document in Oracle ADF Application - Apache POI

    Hi All
    I was wondering if there is a way to edit and save word documents in Oracle ADF without loosing the Formatting.
    I was able to edit and save the word document however the Formatting was lost.
    Please let me know if there are any pointers or open source Java APIs that we can use to achieve this.

    Refer the Text Formatting section
    Apache POI - HWPF - Java API to Handle Microsoft Word Files
    HWPF Reads in a Word document with minimum formatting (no lists, tables, footnotes, endnotes, headers, footers)
    Apache POI - HWPF - Java API to Handle Microsoft Word Files
    The _cbt field in class HWPFDocumentCore contains formatting information.
    HWPFDocumentCore (POI API Documentation)
    For more advanced text extraction needs, including Rich Text extraction (such as formatting and styling), along with XML and HTML output, Apache POI works closely with Apache Tika to deliver POI-powered Tika Parsers for all the project supported file formats.
    Apache POI - Text Extraction
    Use Apache Tikka for formatting.
    Apache Tika - Supported Document Formats

  • Recover deleted document from Oracle content server

    Hi All,
    I've deleted some of documents from oracle content server mistakenly. I am using oracle ucm11g.
    I found that we have a feature called "Trash bin". Trash-bin used for recover the deleted document/folder but unluckily settings for "Trash Bin" is disabled in my UCM folder configuration.
    Is there any other way to recover?
    Please kindly help me on this. It's an urgent production issue, please.
    Thanks for your great support in advance.

    Is there any other way to recover?
    Try to take a look at Repository Manager admin application: http://docs.oracle.com/cd/E21764_01/doc.1111/e10978/c03_repository.htm#DAFCGDIE
    If you still can see your items there, you could recover the status.
    If not, I'm afraid your documents are gone from UCM. In that case, you might recover them from a back-up. There is also a chance that documents are still present in the Vault directory, so rather than 'recover', you might 're-submit' them.

  • Oracle Marketing online( Web pages are not opening)

    Hello all,
    I have got 11i installed on my machine. Application is running fine. I was trying my hand on Oracle marketing module and also CRM Administration modules.
    I don't know what's going wrong the web pages are not opening ( Web page not found offline) error is appearing.
    Infact all functions of Oracle Marketing Super user have they type selected as JSP.
    I am unable to resolve this problem. Can some please help me.
    Regards
    Arun ( [email protected])

    Hi Arun,
    Please let me know which OS you have installed apps.
    Just try running adconfig and then check.
    Cheers,
    Kunal

  • Problem casting org.w3c.dom.Document to oracle.xml.parser.v2.XMLDocument

    I have the following problem:
    I get my xml-documents as an XMLType from the database and want to compare these using the supplied Oracle class oracle.xml.differ.XMLDiff (i use the java version supplied with Oracle 9i r2).
    XMLType.getDOM() returns the xml-document as a org.w3c.dom.Document,
    what i need for oracle.xml.differ.XMLDiff is a oracle.xml.parser.v2.XMLDocument.
    How can i cast/convert between these two formats?
    thanks!
    p.s. cross-posting with Re: Casting/Converting XMLType to XMLDocument? (but i think this forum is more relevant).

    Hi,
    thanks for the suggestion: i have written the code shown below. It results in a casting error.
    As far as i know, i don't use a oracle.xdb.dom.XDBDocument, i only use a oracle.xdb.XMLType as the input parameter for my conversion-method:
    any new suggestions ???
    p.s. the second method which is commented does work, but is a bit verbose.
       private static oracle.xml.parser.v2.XMLDocument convert2XMLDocument(XMLType xml) {
         // simple version (should work according to tech. doc. 9i r2/ 10g r1 database)
         oracle.xml.parser.v2.XMLDocument doc = null;
         try {
            // n.b. probleem is dat XMLType.getDOM() een w3c.Document object teruggeeft ipv een oracle.XMLDocument.
            System.out.println("convert2XMLDocument(): casting w3c.Document naar oracle.XMLDocument.");
            doc = (oracle.xml.parser.v2.XMLDocument) xml.getDOM(); // public org.w3c.dom.Document getDOM()
            System.out.println("convert2XMLDocument(): done casting w3c.Document naar oracle.XMLDocument.");
         catch (Exception e) {
            e.printStackTrace(System.out);
        return doc;
       private static XMLDocument convert2XMLDocument(XMLType xml) {
         // complex version: works ok !!!
         XMLDocument doc = null;
         try{
            DOMParser parser  = new DOMParser();
            parser.setValidationMode(oracle.xml.parser.v2.XMLParser.NONVALIDATING);
            parser.setPreserveWhitespace (true);   
            parser.parse(new StringReader(xml.getStringVal()));
            doc = parser.getDocument();
        catch ( XMLParseException e ) {
          e.printStackTrace(System.out);
        catch ( SQLException e ) {
          e.printStackTrace(System.out);
        catch ( Exception e ) {
          e.printStackTrace(System.out);
        return doc;
    convert2XMLDocument(): casting w3c.Document naar oracle.XMLDocument.
        java.lang.ClassCastException: oracle.xdb.dom.XDBDocument
         at pnb.bdb.xml.testJDBC.convert2XMLDocument(testJDBC.java:305)
         at pnb.bdb.xml.testJDBC.main(testJDBC.java:187)

  • How to Read Attached Document In oracle apps.

    Hi All,
    how to read attached document in Oracle apps.
    Select * from   fnd_attached_documents.
    Regards,
    Mohan Reddy

    Hi Husseein,
    how to read pdf file in blob data type column
    i have tried below query but in this part utl_file.fopen asking directory name i don't have directory name.
    could you give any another solution.
    DECLARE
      l_file      UTL_FILE.FILE_TYPE;
      l_buffer    RAW(32767);
      l_amount    BINARY_INTEGER := 32767;
      l_pos       NUMBER := 1;
      l_blob      BLOB;
      l_blob_len  NUMBER;
    BEGIN
      SELECT FILE_DATA
        INTO   l_blob
        FROM   fnd_lobs
         where file_name = 'est-1.pdf' and FILE_ID = 332810;
      l_blob_len := DBMS_LOB.getlength(l_blob);
      -- Open the destination file.
      l_file := UTL_FILE.fopen('IRB','STD_FlipBook_Religion2013.doc','wb',18306);  --(Here I don't have Directory name)
      DBMS_LOB.read(l_blob, l_amount, l_pos, l_buffer);
      UTL_FILE.put_raw(l_file, l_buffer, TRUE);
      l_pos := l_pos + l_amount;
      -- Close the file.
      UTL_FILE.fclose(l_file);
    END;
    Regards,
    Mohan Reddy

  • To add order mgmnt in oracle crm ondemand

    is it possible to add order management in oracle crm ondemand? if it's could u pl tell me the steps involved
    mailid: [email protected]
    Edited by: user9005557 on Jan 19, 2010 4:31 AM

    There are couples of web services provided by oracle for this purpose, by using that you can insert, update, query, delete records in CRM OnDemand.
    So you need to write the web service client program which takes data from your web form and create record in OnDemand. It can be in any language / platform (like java, c++, PHP etc)
    Check web services guide for more details.
    Dinesh

  • Trying to store XML documents in Oracle XML repository using Java

    Hi,
    I am trying to store XML documents in Oracle XML Repository using a Java program. i just need a functionality to be able to store XML files and retrieve them.
    Can anybody PLEASE provide me some sample code.
    Thanks in Advance
    Sasha

    Did you ever get any samples on doing this and if so could you pass it on to me.
    Thanks

  • Write to word document from oracle plsql

    Hi,
    Please provide methods to create and write to a word document from ORACLE PLSQL.We tried using UTL FILE package but it writes as ascii text.

    Divs wrote:
    The server m/c operating system is unix.so we need to invoke the procedure from Unix Os.In that case - not possible. For Windows COM (Component Object Model) to work, Oracle database need to be able to call and load the COM dynamic link libraries.
    Not to say that it is not possible. Have never used DCOM (the Distributed COM interface), and not exactly sure what it requires. Assuming that DCOM is not usable from a Linux perspective, you can still provide a manual interface. You create a NT tcp/ip service that exposes the COM interface calls that you need - in a secure fashion (even better - you can provide a higher level abstraction layer for the COM interface that does the specific job you need to be done).
    From Oracle you can then use PL/SQL's UTL_TCP package to open a connection to it and via this service craft a Word document on that Windows server.
    Are there web services for MS Office? I know Google is pushing that aspect hard (and embroiled in lawsuits with the US government and Microsoft about tender awards in this aspect). Now if Microsoft has "+office-on-the-web+", then one can create a Word document via a web browser. This means that there is an underlying web service - and that this can be called and used. The Evolution (Open Source Mail Reader) project for example uses the MS Exchange web service interface to provide a seamless interface to Exchange mail accounts (have used this everyday for a number of years now).
    The real question I would however ask is why Word specifically? Why not a more common format like PDF? You can even consider generating XML instead. Both Microsoft and Open Office and others are supporting XML formatted word processing documents (as oppose to older proprietary and binary formats).
    And why not use a Report Writer? I'm a big fan of doing as much as possible in Oracle (using PL/SQL most of the time). But certain things, like generating Word-style documents would be better done (and more flexible too) using a Report Writer.

  • Deploy document in Oracle B2B

    I am new in Oracle B2B.At the time of configuration of B2B component at jdeveloper,in the document defination section "No deployed document found" messge is showing .Can any one help me how to deploy the document in oracle b2b server so that the deployed document tree will get visible at document defination section?

    I created protocol version and document type then provided the name of Document Definition then browse to select the defination(in this case salesorder.xsd).after that clicked on save button.i did this configuration.Then in jdeveloper i drag the b2b component to the external ref. section then i tested the server connection it is working fine .but in the document defunation there is no tree visible.please guide me
    Edited by: user8925573 on Apr 5, 2010 5:56 AM
    Edited by: user8925573 on Apr 5, 2010 5:57 AM

  • Errors on viewing the documents in Oracle IPM

    Hi All,
    We're facing the following errors when trying to open some of documents in Oracle IPM - Advance viewer.
    Error Caching Page:_ Server returned HTTP response code: 500 for URL: http://ipmdev:16410/imaging/renderimage/export?documentId=2.IPM_377324&version=1&annotations=false&color=true&....
    Error updating annotations:_ Server returned HTTP response code: 500 for URL: http://ipmdev:16410/imaging/annoations/getAnnotations?documentId=2.IPM_377324&version=1...
    We're getting the following exception when we open the same document in IPM- Basic viewer.
    A cache exception occurred. J2EE-JOC-044 An exception is occurring in the method: CacheAccess.get
    Error counting pages while loading cache entry: J2EE-JOC-043 base exception: null.
    If anybody has a solution for this please share with us.
    Thanks to all in advance.
    Edited by: 902526 on Feb 20, 2012 3:46 AM

    Hi,
    Is this error being thrown after an annotation has been created or is it across all documents when viewed ?
    Do check the UCM repository connection that has been created and if so perform the following steps :
    Correct the Repository Proxy Setting to the UCM Connector in IPM.
    Log into IPM.
    Select Manage Connections.
    Select the UCM Connection.
    Click Modify.
    Verify the Repository Proxy: Enter the name of the repository proxy. By default, the repository proxy name is fmwadmin. This field is required.

  • Technical Document for Oracle BPM 10gR3

    Hi everybody,
    Is there any technical document for oracle bpm 10gR3
    Thanks for your attention

    Hi,
    What do you mean by technical document???
    You can get the details of coding in studio and managing enterprise in 10.3 documnetation
    http://download.oracle.com/docs/cd/E1315401/bpm/docs65/index.html_
    HTH,
    Charan

  • Oracle Marketing & Field Sales Implementation

    Hi Experts
    I'm a complete newbie to CRM and Marketing & Field Sales module. Working hard to grasp and understand the architecture and implementation process of CRM and Marketing & Field Sales module.
    Plz guide me to start this experience. The major questions or doubts infact which comes to my mind right now are:
    1. What is the Oracle CRM architecture? I see an ocean of oracle modules in CRM, but how to go about it?
    2. What is the initiation point? ... From where should i start implementing?
    3. Are these modules interrelated or we can implement each module independently?
    4. If i be specific for now, then i wanna implement Oracle Marketing & Field Sales module. So how should i start exploring and do i need to implement any module as a pre-requisite to implement Marketing & Field Sales?
    5. I'm currently going through the Oracle Lead Management implementation docs. Am i on the right track or do i need to study something else first?
    Guyz, plz clarify these doubts as without clarifying these basic fundamentals, i'm not able to completely dedicate my time and focus on the subject. Until and unless i know that what i'm studying has got the desired end-result i'm not able to concentrate properly.
    Plz help me in figuring out this messy web of modules and its architecture.
    Regards
    Ari :)

    Hello,
    Is someone there who has implemented Oracle Marketing & Oracle Lead Management in Oracle EBS R12 over AS 10g.

Maybe you are looking for