Import Xing Contact to CRM on Demand

Import Xing-Contact to CRM on Demand
Link: [http://wiki.crm-gadget.com/import-a-xing-contact-to-crm-on-demand]
Import all Xing-Contact to CRM on Demand
Link: [http://wiki.crm-gadget.com/import-xing-contacts-to-crm-on-demand]
Any feedback would be nice

Hi
1.The Action 'Update Value' is availble under Triger Event-'Before Modified Record Saved'.
I am not sure why you have to pay for "Assign a Book action". Thats out of the box functionality.
2. Yes, SR status is a read only picklist. One workaround I can think of is to create a Custom field for Status. Then run a WF to sync the values of the Custom Status field with the Original Status field (particuluarly the Open and close values. That will maintain the integrity of all the SR matrices).

Similar Messages

  • Consumer Contact's Web Service CRM On Demand: Problem to do an operation!

    Hi,
    I'm trying to consume a Web service offered by CRM On Demand, namely it is the Contact object.
    The steps I followed were:
    1) Download the file .wsdl associated with contact from CRM On Demand
    2) Generate Proxy web service from JDeveloper 10g (version: 10.1.3)
    3) Configure the client to consume the resource and to do, for example, the contact’s insertion.
    I can make a login and a logout on the Web Service correctly, but when I try to do an insertion I can’t do it.
    The log generated by JDeveloper when running the client is as follows:
    WARNING: Unable to connect to URL: https://secure-ausomxgfa.crmondemand.com/Services/Integration due to java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: www-proxy.au.oracle.com
    error: java.rmi.RemoteException: ; nested exception is:
    HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: www-proxy.au.oracle.com
    java.rmi.RemoteException: ; nested exception is:
    HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: www-proxy.au.oracle.com
    at crmondemand.runtime.Contact_Stub.contactInsert(Contact_Stub.java:283)
    at crmondemand.ContactClient.contactInsert(ContactClient.java:96)
    at crmondemand.ContactClient.main(ContactClient.java:71)
    Caused by: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: www-proxy.au.oracle.com
    at oracle.j2ee.ws.common.util.exception.JAXRPCExceptionBase.<init>(JAXRPCExceptionBase.java:93)
    at oracle.j2ee.ws.common.util.exception.JAXRPCExceptionBase.<init>(JAXRPCExceptionBase.java:89)
    at oracle.j2ee.ws.client.ClientTransportException.<init>(ClientTransportException.java:33)
    at oracle.j2ee.ws.client.http.HttpClientTransport.invokeImpl(HttpClientTransport.java:144)
    at oracle.j2ee.ws.client.http.HttpClientTransport.invoke(HttpClientTransport.java:121)
    at oracle.j2ee.ws.client.StreamingSender._sendImpl(StreamingSender.java:169)
    at oracle.j2ee.ws.client.StreamingSender._send(StreamingSender.java:111)
    at crmondemand.runtime.Contact_Stub.contactInsert(Contact_Stub.java:265)
    ... 2 more
    The HTTP Proxy Server settings (Tools-> Preferences-> Web Browser and Proxy) in JDevloper is:
    - Host name: www-proxy.au.oracle.com
    - Port: 80
    - Exceptions: xpvmware | *. oracle.com | *. peoplesoft.com | *. jdedwards.com | *. mlab.jdedwards.com | *. oracle.com | *. peoplesoft.com | *. jdedwards.com | * . mlab.jdedwards.com
    - No authentication.
    I'm not sure if it's a problem with HTTP proxy server settings or URL/ENDPOINT problem, because maybe I am trying to access an incorrect URL.
    If I try to access from the browser to this URL I can't access the wsdl, so I do not know if this address is correct, but is specified in the file. Wsdl:
    <soap:address location="https://secure-ausomxgfa.crmondemand.com/Services/Integration" />
    For this reason, I supposed that it is correct...
    I have tried to access via URL with the follows:
    - https://secure-ausomxgfa.crmondemand.com/Services/Integration
    - https://secure-ausomxgfa.crmondemand.com/Services/Integration/Contact
    - https://secure-ausomxgfa.crmondemand.com/Services/Integration/Contact?wsdl
    In all I have the next response from the Internet browser:
    <?xml version="1.0" encoding="UTF-8" ?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
    <soap:Fault>
    <faultcode>soap:Client</faultcode>
    <faultstring>Client</faultstring>
    <detail>
    <ErrorCode>SBL-ODU-01001</ErrorCode>
    <ErrorMessage>An invalid command was specified: doGet with no data</ErrorMessage>
    </detail>
    </soap:Fault>
    </soap:Body>
    </soap:Envelope>
    Since the client generated, I have tried with the follows:
    1) System.setProperty("javax.xml.ws.BindingProvider.ENDPOINT_ADDRESS_PROPERTY", endpoint);
    2) myPort.setEndpoint(endpoint);
    where endpoint = "https://secure-ausomxdsa.crmondemand.com/Services/Integration" + ";jsessionid=" + idSesion;
    or "https://secure-ausomxdsa.crmondemand.com/Services/Integration" (with both options I can do the operation...)
    and idSesion = logon("https://secure-ausomxdsa.crmondemand.com/Services/Integration",USERNAME,PASSWORD);
    Do you know what is the correct URL (endpoint)?
    Is that a correct HTTP proxy server configuration to invoke a Web service CRM On Demand? But so, what is the correct setting? And if it is a good configuration, what am I doing wrong?
    The source code from my client is:
    String idSesionFull=null, idSesion=null, endpoint=null;
    try {
    crmod.DefaultClient myPort = new crmod.DefaultClient();
    System.out.println("Invoking: " + myPort.getEndpoint());
    ListOfContact list = new ListOfContact();
    ListOfContact outlist = new ListOfContact();
    Contact[] contacts=new Contact[2];
    Contact contact=new Contact();
    //ContactWS_ContactInsert_Input in=new ContactWS_ContactInsert_Input();
    //ContactWS_ContactInsert_Output out=new ContactWS_ContactInsert_Output();
    // Login WS (HTTPS)
    //URL = "https://secure-ausomxdsa.crmondemand.com/Services/Integration"
    idSesionFull=conexionWS_CRM.logon(URL,USERNAME,PASSWORD);
    idSesion = conexionWS_CRM.getSessionId(idSesionFull);
    //Another option I have tested: endpoint = "https://secure-ausomxdsa.crmondemand.com/Services/Integration" + ";jsessionid=" + idSesion;
    endpoint = "https://secure-ausomxdsa.crmondemand.com/Services/Integration";
    myPort.setUsername(USERNAME);
    myPort.setPassword(PASSWORD);
    myPort.setEndpoint(endpoint);
    System.setProperty("javax.xml.rpc.service.endpoint.address", endpoint);
    System.setProperty("javax.xml.rpc.security.auth.username", USER);
    System.setProperty("javax.xml.rpc.security.auth.password", PASSWORD);
    System.setProperty("javax.xml.ws.BindingProvider.ENDPOINT_ADDRESS_PROPERTY", endpoint);
    // Add contacts
    for (int i = 0; i < contacts.length; i++) {
    contact.setContactId("WSCRM"+i);
    contact.setContactFirstName("JDeveloper"+i);
    contact.setContactLastName("prove"+i);
    contact.setCellularPhone("77777777"+i);
    contact.setExternalSystemId("1234"+i);
    contacts=contact;
    list.setContact(contacts);
    //in.setListOfContact(list);
    //in.setEcho("OFF");
    outlist=myPort.contactInsert(list,"OFF"); //<--- Is it correct????
    Contact[] results = new Contact[2];
    Contact result = new Contact();
    for (int i = 0; i < contacts.length; i++) {
    results=outlist.getContact();
    System.out.println("ID:"+results[i].getContactId()+" Name:"+results[i].getContactFirstName());
    // Logout WS (HTTPS)
    logoff(URL, idSesion);
    } catch (Exception ex) {
    System.out.println("error: "+ex);
    ex.printStackTrace();
    logoff(URL, idSesion);
    Any idea to solve this problem?
    Thank you very much in advance for any help.
    Edited by: user12158402 on 03-nov-2009 12:39
    Edited by: user12158402 on 03-nov-2009 12:45
    Edited by: user12158402 on 03-nov-2009 12:47

    Hi Royston,
    thank you for your help, but unfortunately I have the same error message.
    Here is the XML I use, I added the authentication that you provided me.
    <?xml version="1.0" encoding="utf-8"?>
    <soapenv:Header>
         <wsse:Security>
              <wsse:UsernameToken>
                   <wsse:Username>EUROMASTERFR/AELMASKOUNE</wsse:Username>
                   <wsse:Password>aqwAZE19</wsse:Password>
              </wsse:UsernameToken>
         </wsse:Security>
    </soapenv:Header>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="urn:crmondemand/ws/account/10/2004" xmlns:xsdLocal1="urn:/crmondemand/xml/account">
    <soap:Body>
    <tns:AccountWS_AccountQueryPage_Input>
    <tns:PageSize>10</tns:PageSize>
    <xsdLocal1:ListOfAccount>
    <xsdLocal1:Account>
    <xsdLocal1:CurrencyCode/>
    <xsdLocal1:AccountName>IBM</xsdLocal1:AccountName>
    </xsdLocal1:Account>
    </xsdLocal1:ListOfAccount>
    <tns:StartRowNum>0</tns:StartRowNum>
    </tns:AccountWS_AccountQueryPage_Input>
    </soap:Body>
    </soap:Envelope>
    but for (xmlns: WSSE = "http://schemas.xmlsoap.org/ws/2002/xx/secext" do not forget to enclose the tag with a '>') I do not know to include it.
    Best Regards.
    Anas

  • Siebel CRM On Demand User Group

    Not sure if this specifically fits under this particular forum but...
    Does anyone know if there is a specific Siebel CRM On Demand Users Group? I am aware of the Oracle Application Users Group etc, but I'm not sure if it caters for the On Demand model of Siebel, or just the Enterprise model.
    If anyone knows which group(s) serve Siebel CRM On Demand users either globally, regionally or locally (especially in Australia), please post the details.
    Regards,
    Cameron

    Hi Kathy,
    I believe a users group would be beneficial in APAC (particularly in regional locations e.g. Australia, New Zealand etc).
    I would see it serving multiple roles -:
    1. To act as a forum for Siebel CRM On Demand users to share their collective knowledge and experience with the product.
    2. To act as a collective voice for Siebel CRM On Demand users.
    3. To act as a conduit for communication from Oracle to their customers, and in turn from the customer to Oracle.
    4. To promote and facilitate educational offerings and training opportunities.
    5. To promote and facilitate networking opportunities.
    In a nut shell, it should serve to promote Knowledge, Advocacy, Communication, Education and Networking.
    If I'm not mistaken, such groups exist and represent the user base of just about every product that Oracle sells except for Siebel CRM On Demand. I feel that it is important for the Siebel CRM On Demand user base to be able to benefit from a users group similarly representing them.
    That being said, I can understand why you would have conflicting opinions on the usefulness of such a tool in APAC. As a region, Asia Pacific is particularly diverse and as such, a users group would have to be capable of representing the interests and needs of each unique demographic.
    Regards,
    Cameron.

  • Newbie: Oracle CRM on Demand Import Problem

    Hello All,
    I am loosing my mind here. I am new to Oracle CRM on demand and I am trying to Import 1 Contact record through the application using the Import Data. I am only testing with 1 record but I am not able to do the import, it is always giving me the same error.
    "1","41453","Record Specific Error","External Id: 1-4301","An unexpected error occurred during the import of the following row: 'External Id: 1-4301'".
    The parameters I chose for the import are:
    * External Unique ID
    On Demand Predefined Fields
    On Demand Row ID
    * Create Additional Records
    Don't Import Duplicate Records
    Overwrite Existing Records
    * Create New Record
    Don't Create New Record
    * Add New Value To Picklist
    Don't Import Field Value
    * Create Associated Record
    Don't Create Associated Record
    Date Values Format: EUR -DD.MM.YYYY 24:mm:ss
    File Encoding : UTF-8
    CSV Delimter : ,
    Can anyone PLEASE HELP !!
    Thanks
    Greg

    Hi,
    Remove the Field validations and import the data again it will works, after that place the field level validation on a require field. For example in Opportunity Sales Stage is Mandatory field, if any validation on Sales stage Id(because most of the people uses validation not to goto next stage unless and until previous stage completed). So in data load if at all Closed/won record is there then the validation comes into picture and it gives the error like 'An unexpected error during field import'. I think this is one of bug in CRMOD:-) Try it and i hope you will succeed.
    Cheers
    Subbu

  • Importing CRM On Demand Environment Certificates on SOA Suite.

    Hi All,
    I am trying to invoke CRM On Demand Environment Web Services from a SOA Suite.
    Normally for CRM On Demand Environment you will need to import a Certificate as it is an external Environment hosted by Oracle.
    I am able to do add the certificate on the server using the keytool and create Identity and Trust, but when I try to invoke SOA Process invoking the CRM OD Web Service, the SOA Process fails
    Has anyone tried importing CRM OD Certificates in the SOA Suite.
    Regards,
    Varun

    Download PIM Sync on Demand from your pod's My setup link -> Data Integrations

  • Automatic XML file import to CRM on Demand

    Hi all,
    I am new to CRM On Demand, and I need to set up a real-time automatic import of an XML file to CRM On Demand. I need the information to get entered as a new lead. If anyone has done this before and can guide me through the process, I would really appreciate it. I have done a few tests, but nothing has worked so far. I have no idea where to start.
    Thanks!

    Hi, yes I only use jax-ws to generate client artifacts for On Demand. I can imagine for first time user you have really big problems to generate the client code... The reason for this is in most cases the size of the wsdl files.
    What you can do is.
    1. Think about what you really need of the selected wsdl. eg. if it is account do you need all related objects like PlanAccount etc?
    2. If you know what you need start to delete the not needed definitions from the wsdl and try the generation of client afterwards.
    Best Regards
    SL

  • Database size in Oracle CRM On Demand

    Can anyone tell me what the database limitations on On Demand are? How many records can one store?
    Many thanks in advance
    JC

    Hi everyone...
    I am copying a reply I got from Oracle about Storage Limits. This will be helpfull to all of us.
    We recently instituted a new CRM On Demand storage policy. This new policy is significantly more generous than the former policy at no additional charge. We used to offer 30MB pooled storage for Multi-tenant, 45MB for Single-Tenant Standard Edition, and 60MB for Single-Tenant Enterprise Edition (this space covered standard records and attachments).
    Customers often think in terms of records and not MB, especially when they are considering importing x million contacts or other records. An average record uses 2KB. We have made the following changes:
    Multi-tenant.30MB or 15,000 records. Added 100MB per user for attachments;
    Single-Tenant Standard edition. 45MB or 22,500 records. Added 150MB per user for attachments;
    Single-Tenant Enterprise edition. More than doubled the 60MB or 70,000 records. Added 200MB per user for attachments;
    In summary the new limits are:
    Storage Allotment by CRM OD Offering
    Records per User
    Megabytes for Attachments to Records per User
    Multi-Tenant
    15,000
    100
    Single-Tenant Standard Edition
    22,500
    150
    Single-Tenant Enterprise Edition
    70,000
    200
    Partner Relationship Management
    5,000
    25
    Additional Purchase: 10USD per month
    50,000
    300
    A couple of additional notes:
    When counting records we are only counting primary data records. Meta-data and configuration records don’t count against the limit. Similarly all of the records stored in the analytics data warehouse, back-up, etc. don’t count against the limit.
    Usage is pooled as before (i.e. a customer receives the amount of storage per subscriber as listed above multiplied by numbe! r of subscribers).
    You can view the number of users for a Company on the Company Profile in the Licensed Users field.
    We have added a number of usage reports in R18 but they are focused on users logged in, what objects they are accessing, and configuration information. They do not include storage yet. Similar to ! our current policy, we will not be actively enforcing this limit against all customers. Instead, we look for customers egregiously abusing the storage limit and notify them so they can correct their usage. These limits should also provide a good guideline when customers are deciding how much data to import (i.e. it may be better to clean the data first and import the million records you really need rather than importing all 10 million records when 90% of them are redundant or obsolete).

  • Siebel CRM On Demand Help

    Hi,
    I am in urgent need with the help on the following 3 actions I need to undertake today. I hav not used Siebel CRM for about 2 years and am in urgent need of assistance if anyone can help it would be MUCH appreicated.
    · Enter the business card contacts provided into the CRM system
    · Import the sales pipeline data (provided in Excel format) into the system
    · Produce a sales pipeline report using the CRM system
    Many thanks

    This same question was answered in the CRM On Demand Admin forum.

  • How to use multiple instances in Oracle CRM On Demand

    Hi,
    Just wanted to know if we can have multiple instances in Oracle CRM On Demand? Our company has bought licenses for Oracle CRM On demand and have received a single link for the development / staging, but we have two seperate business units that will be using this systems and their processes are completely different....I thing i wanted to ask is if we can have a sub system within a big system without both interfering into each others processes.
    I hope it makes sense.
    Thanks
    Ahmed

    Hi Ahmed,
    This might be quite possible. Again, it depends on the organizational and technical complexity of both these BU's.
    1. There can be different processes in different geographies in which your application might be used. Inorder to achieve this in a single instance of CRM On Demand.
    There can be some fields that are specific to certain region, in that case you can use Roles, Access Profiles, Dynamic Layouts to change the Fields of the layouts which will allow the user to enter/read information specific to only that user.
    2. Workflows can be used to trigger an event only for users in certain BU defined in your application.
    Also the Sales Process is specific to a Role and by configuring them correctly you can make these processes fit your requirements.
    3. There are somethings that always remain the same though, like Accounts, Contacts , other entities and the pre-defined relationships, their names. Off-course these can be modified but when modified they apply through the applications. So you won't be able to have different names to the Account entity in the Major BU and the subset BU.
    I would suggest you get in touch with Oracle Expert Services if you are looking to get more details on how you can make best out of a single instance.
    Good Luck!
    Royston

  • How to execute an internal WebService from CRM On Demand?

    Hello,
    I would like to know how to execute an internal WebService, for example Contact's WebService, from CRM On Demand?
    I have seen in the online documentation:
    "An integration event is a mechanism for triggering external processes that are based on changes (create, update, delete, associate, dissociate) to the records in Oracle CRM On Demand.
    You can specify which fields on a record that you want to track. If your company wants to use workflow rules to create integration events, contact Customer Care to request support for Integration Event Administration and to specify the total size of the integration event queues that you require".
    I have this option activated. In fact, I have tried to create a workflow rule to assign an integration event to call the WebService process, but I couldn't do it...
    Thank you and regards.

    Hi, sorry for the late answer. I now understand what you are trying to do, it is an automatic approach so you will need to use integration events.
    So if custom object 2 field is changed you have to generate an integration event with a workflow that triggers when modified record is saved. The event should be transfered to the queue you defined.
    What you need is an external componenet e.g. java component that is running in an application server and polls every (let's say 30 seconds for events in the queue. If there is an event in the queue you will need the custom object 3 Id and the value for the field you would like to update and afterwards you can update the related customonject3 record with a ws call.
    If you use java you can start the timer with a servlet lifecycle event (when application is up start the timer for polling)
    Best Regards
    SL

  • CRM on Demand Reporting; Action Links in Pivot Tables

    Hi All
    I have a problem with Action Links for Oracle CRM on Demand. When I click on an action link to navigate to an account detail page, I get the following error:
    The record you are trying to access has been deleted or has been assigned a new owner and you no longer have access to it. If you deleted the record, it may be accessed in Deleted Items. If you continue to have problems contact your Oracle CRM On Demand Administrator.
    Browsing the forums brought up this thread: Can't access a record with an ActionLink
    In this thread it's said to place the Account ID column right next to the Account Name column. This solution works for regular tables, but not for pivot tables.
    Is it possible to link to an account detail page from pivot links?

    For pivot tables you will have to use this method in order to be able to drill down to the detail page:
    On you Report-
    Define Criteria: Add the Account ID (Record ID field is a must)
    - Click on the Properties icon on this column--> Data Format Tab --> uncheck Override Default Data Format and select Plain Text from the Treat Text as drop down.
    Add the below code in the text area.
    "http://"@[html]"<a target=_top
    href=https://*secure-ausomxXXX*.crmondemand.com/OnDemand/user/AccountDetail?OMTGT=AccountDetailForm&OMTHD=AccountDetailNav&AccountDetailForm.Id="@">View Account</a>"
    Add this column on the Rows section of the pivot table.
    Hope this helps!
    Royston

  • Integrating CRM On Demand /JDEE

    Hello Experts,
    We have a requirement of integrating CRM On Demand and JDEE with SOA Suite as an middle ware.
    For initial development phase we have attempt to log in to CRM OD and able to create a Session ID and log out using JAVA code available @ http://www.webbasedcrmsoftware.com.au/crm-on-demand-tutorials/65-java-access-to-crm-on-demand
    When we run the same log in java code from the SOA BPEL @ http://www.oracle.com/technetwork/topics/ofm-siebel-blog-postings-092216.html
    String sessionString = "FAIL";
    String wsLocation = "https://yourinstance.crmondemand.com/Services/Integration";
    String headerName;
    try
    // create an HTTPS connection to the OnDemand webservices
    URL wsURL = new URL(wsLocation + "?command=login");
    HttpURLConnection wsConnection = (HttpURLConnection)wsURL.openConnection();
    // disable caching
    wsConnection.setUseCaches(false);
    // set some http headers to indicate the username and password we are using to logon
    wsConnection.setRequestProperty("UserName", "myusername");
    wsConnection.setRequestProperty("Password", "myencryptedpassword");
    wsConnection.setRequestMethod("GET");
    // see if we got a successful response
    if (wsConnection.getResponseCode() == HttpURLConnection.HTTP_OK)
    // get the session id from the cookie setting
    for (int i=0; ; i++)
    headerName = wsConnection.getHeaderFieldKey(i);
    if (headerName != null && headerName.equals("Set-Cookie"))
    // found the Set-Cookie header (code assumes only one cookie is being set)
    sessionString = wsConnection.getHeaderField(i);
    break;
    String formattedID = sessionString.substring(sessionString.indexOf("=")+1,sessionString.indexOf(";"));
    setVariableData("SessionID",formattedID);
    //System.out.println("Session ID: " + sessionString);
    catch (Exception e)
    System.out.println("Logon Exception generated :: " + e);
    we are not able to get session ID :(
    Are we missing some thing :( like importing CRM-OD certificate to Weblogic Server?
    Please some one guide me

    So does it work on one server and not the other?
    Also -
    String wsLocation = "https://yourinstance.crmondemand.com/Services/Integration";
    wsConnection.setRequestProperty("UserName", "myusername");
    wsConnection.setRequestProperty("Password", "myencryptedpassword");
    You are changing these in your code - correct?

  • Need help integrating the crm on demand in android

    HI i am trying to consume the Oracle CRM on demand web services in android
    I am doing this with ksoap android but confused with the urls to to declared
    right now i am using
    private final String NAMESPACE = "document/urn:crmondemand/ws/ecbs/account/10/2004" ;
      private final String URL = "https://secure-slsomxvka.crmondemand.com/Services/Account/Query" ;;
      private final String SOAP_ACTION = "document/urn:crmondemand/ws/ecbs/account/10/2004:AccountQueryPage";
      private final String METHOD_NAME = "AccountQueryPage";
    and for login
    public static final String ONDEMAND_WS_URL = "https://secure-slsomxvka.crmondemand.com/Services/Integration?command=login";
    i can log in and get get session but not sure about how to call the account info data or contact data
    SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
      request.addProperty("Userid", "XXX");
      request.addProperty("Password","XXXX");
      request.addProperty("ViewMode", "organization");
      request.addProperty("BookName", "");
      request.addProperty("jsessionid", JSESSIONID);
      SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(
      SoapEnvelope.VER11);
       envelope.setOutputSoapObject(request);
      HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
      try {
              androidHttpTransport.call(SOAP_ACTION, envelope);
              SoapPrimitive  response = (SoapPrimitive) envelope.getResponse();
    } catch (Exception e) {
    Log.e(TAG, "Error"+e)

    Hi Prabhu,
    Thanks for your reply.
    But, I am using the Logo as a Standard text and then using that Logo in the window and I was not able to see the Logo on the Print preview page.
    So kindly give inputs on this.
    Regards,
    Vishnu.

  • New Release: Oracle Policy Automation Connector for CRM On Demand 10.3.0

    h1. Oracle Policy Automation Connector for CRM On Demand 10.3.0
    Oracle Policy Automation Connector for CRM On Demand 10.3.0 is now available via Oracle E-Delivery (http://edelivery.oracle.com/)
    This release includes:
    Oracle Policy Modeling Imports CRM On Demand Data Model
    Oracle Policy Modeling 10.3 supports importing the data model of a CRM On Demand web service, including the selection of objects to map for loading data, and both saving and inserting data.
    Oracle Policy Automation 10.3 Runtime
    This version of the Oracle Policy Automation Connector for CRM On Demand works with Oracle Policy Automation 10.3 runtime. Rulebases must be built from Oracle Policy Modeling 10.3.
    Oracle Web Determinations Integration
    The connector allows users to pre-seed Oracle Web Determinations with data from CRM On Demand objects and update the same or new CRM On Demand objects with data collected during the interview session.
    Please read the release notes and installation guide contained in the media pack for more details.
    The build number for this release is 10.3.0.2048.0
    -----

    Hi All,
    Just a Clarification about the Oracle Lite Webcast, only customers with a valid CSI.
    Will be able to Connect to the Webcast.
    Regards.
    Marc

  • Outbound Integration in Siebel CRM On Demand

    As we know that only Inbound integration is possible in Siebel CRM on Demand.Has anybody ever done outbound integration in Siebel CRM on demand using Integration event or using ASP?
    Please repond soon.

    Hi Max,
    Thanks for your reply.
    I have built a workflow.
    Name : SH
    Record Type : Contact
    Trigger Event : When New record saved.
    Then created action .
    Name : Outbound Integration
    type : Integration Event
    I select 'Track Changes' for two fields named : First Name and Last Name as it will save changes in a file whenever any new record saved.
    Then I went to Webservice Administration and downloaded zip file for Integration event wsdl.Also I downloaded wsdl file for contact.
    There are few points where I am stuck.
    1) In pdf,they talked about one xml file which will save all changes whenever any new contact record saved because it is created as Integration Event.
    Which file is this?(Integration Event.wsdl???)
    2) Should I use any of the above downloaded wsdl files to create webservice in siebel as I am doing integration b/w Siebel ondemand and Siebel CRM??
    Can you give me a glimpse of the program to ping the queue ?Where do I need to write code in CRM on Demand?Which changes do I need to do in SIebel CRM?
    Thanks for your help.

Maybe you are looking for