Navigation problem in CRM On Demand

Hi,
I have encounter a problem when returning to a page contained within web tab from an Contact Detail Page. Upon clicking the Back button (on IE toolbar), navigation will halt. Has anyone encountered this before?
Liza

I have seen some creative work used within custom web applets that were added to related information before. It is possible if you want to spend the time to experiment or if you want to get consulting services involved.
If you would like to experiment a little try creating a report. On step 2 you can create narratives. From here you have allot of flexability and control. This is where you may be able to find some options.

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

  • 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

  • Head-Up Display Greatly Simplifies Navigation - CRM On Demand 17 Release

    I'm an admin of CRM On Demand.
    I'd like to apply new features of CoD 17 Release.
    In particular, I want to use Head-Up Display in detail page of each objects.
    I mean, How can I apply Head-Up Display function as admin ?
    Please let me know how can I set up the feature.

    Go to Admin, then Company Administration, then Company Profile and under Company Setting select Head-up Display to On.

  • Error while calling siebel crm on demand web service

    Hi.
    Has anyone encounter this problem before while trying to invoke the Siebel crm on demand web services? Please help.
    Also, do I have to set up the SSL Trust Key and trust file to include the Siebel crm SSL cert?
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
    faultString: com.ibm.wsspi.channel.framework.exception.ChannelException: com.ibm.wsspi.channel.framework.exception.ChannelException: Invalid trust file name of null
    faultActor: null
    faultDetail:

    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

  • Oracle CRM On Demand Outlook Integration - Add-in shows inactive

    I have followed the steps given in the Oracle CRM On Demand->MySetup.
    After installing the OEI, the dll file is registered.
    In MS outlook->Tools->Trust Center->Add-ins. The Siebel Outlook Integration Add-ins is shown in the "Inactive Application Add-ins".
    How can this be enabled/Active so that Oracle CRM On Demand application is integrated with Microsoft Outlook?
    kindly advice.

    Finally found a solution for this problem:
    In MS Outlook 2007, navigate to Tools->Trust Center->Macro Security-> Select option "Warnings for all macros".
    Restart MS Outlook and the Oracle CRM email Integration buttons will appear..
    Hope this helps..

  • 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

  • How does CRM on Demand determine the highest priority Task?

    In the "My Homepage -> My Open Tasks" List there is a sortable priority column. If you have a number of tasks in the list with different priorities and click on the priority column they will be sorted in descending order by priority as follows:
    "1-High"
    "2-Medium"
    "3-Low"
    I have tried editing the order on the Edit Picklist screen for the Activity Priority field (by navigating to Admin -> Application Customization -> Activity -> Activity Field Setup) but this appears to have no effect on the priority sort order on in the Task List. I have also tried adding new values to the picklist and they always appear as the lowest priority.
    So my question is how does CRM on Demand determine that the priority picklist value "1-High" is the highest priority when sorting the tasks?

    There is a sort order on the activity applet based upon the priority field. As 1 comes before 2 and 3, it would be sorted to the top.

  • Crm on demand on mac with safari

    Hi, is anyone using crm on demand in a mac notebook with safari? i'm getting trouble accesing the list on some hopepages, i have to click not over the list name, sometimes to the left. Any help?

    Hi Marcelo,
    I have the same problem.
    I use firefox and have not encountered any problems (or you can always run IE in 'Parallels').
    Good luck.

  • 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

  • Failed to load data from CRM On Demand. ServerThe server is temporarily una

    Hi,
    I would just like to ask if any of you are encountering this error when sending SOAP requests to CRMOD. Is this just because CRM On-Demand is down?
    Failed to load data from CRM On
    Demand. ServerThe server is temporarily unavailable. Please try again later.
    thanks,
    John

    Hi Royston,
    The instance that we are accessing is: https://secure-ausomxdsa.crmondemand.com.
    I assume that it's a test environment. So I navigated to (https://ebusiness.siebel.com/odcustomercare/support/alerts/staging/index.asp) "Staging & Test Environments" -> "Planned Maintenance - Staging" (since there is no Testing link) and saw a calendar of downtimes which didn't quite match-up to the date when we encountered the error. We encountered the error on November 25, which was marked on the calendar as a planned 8-hour downtime. During that day we didn't encounter continuous downtime but just erratic spurs of the the error. Am I looking in the right place? Thanks

  • Integrating CRM On Demand with EBS (12.1.3) using BPEL

    Hi,
    I am working on POC for the integration between EBS and CRM On Demand. We are EBS R12.1.3 and have SOA Suite 10g.
    We are planning to use BPEL to do this communication between EBS and CRM OD. Is this something that is possible using BPEL. In additional to BPEL, do we need Java coding or any other language coding?
    I donwloaded the Account WSDL from the CRM OD website. Created a new BPEL Process using that WSDL. I read that we need to pass the login credentials using a soap header. Can you please let me know how we can do this in a BPEL Process.
    Any pointers would help me alot.
    Thanks in advance.
    Thanks,
    Sreenivas.

    Hi,
    I found a document about using this feature with EBS 11i. I could not find any document that says it is not supported.
    http://simplelogic.in/casestudy/Oracle_EBS_11i_Resumable_Space_Allocation_For_Manufacturing_Sector.pdf
    Regards,
    Bashar

  • Still having navigation problems and need help with how to debug

    Hi,
    I've been porting over a servlet project to JSF and I'm still having navigation problems. I thought the problem might have been because the original project used HTML frames and so the "from-view-id" JSP defined the frame/framesets and the specific JSP that does the submit (and so is named in the "from-view-id" is never defined in a "to-view-id" attribute). I've now switched to using an IFRAME, and that resolves that problem. So now the JSP is defined in a "to-view-id" attribute and it includes an named IFRAME that can be used as a target. I press the submit button and I get not the JSP expected butinstead the same JSP displayed inside its own IFRAME.
    Here is the code for the submit. I've simplified it as much as possible with a static action (originally it was a call to a method) just to try and get things to work. This is the current version:
    <h:commandButton value="View Alias" action="foo" styleClass="select" type="submit" />Here is the navigation rule in faces-config.xml. Again, the problem is that SelectManager get redisplayed in the IFRAME instead of display.jsp.
    <navigation-rule>
       <from-view-id>/SelectManager.jsp</from-view-id>
       <navigation-case>
          <from-outcome>foo</from-outcome>
          <to-view-id>/display.jsp</to-view-id>
       </navigation-case>
    </navigation-rule>I have also tried it without the "from-outcome-value" which I presume means that the "to-view-id" gets displayed unconditionally and it still fails. Any ideas on how I can debug this? (I'm using GlassFish if that's important to know)
    Rob Tanner
    Linfield College

    Raymond, The real trick is avoid doing technical things when coming down with the flu (I should also add that I'm a JSF newbie). Reading your original message this time I see what you're suggesting and found a conversion error although I don't understand it. Here's the code (including the <h:message/>):
                <h:selectOneMenu value="#{members.dcodes}"
                  style="color: #7f0000" id="selector">
                  <f:selectItems value="#{members.departmentList}" />
                </h:selectOneMenu> 
                <h:message for="selector" style="color:white"/>And here's a snippet of the generated HTML:
    <select id="j_id_id26:selector" name="j_id_id26:selector" size="1" style="color: #7f0000">
             <option value="aad" selected="selected">Academic Advising</option>
         <option value="aaf">Academic Affairs</option>
         <option value="adm">Admission</option>
         <option value="up">Upward Bound</option>
    </select>If I select "Admission" for example, the error I get is:
    Conversion Error setting value 'adm' for 'null Converter'.Since everything is a String value, I don't get the error. Could someone please enlighten me.
    Thanks.

  • Problem in CRM WEBUI

    Hi,
    I am on CRM WEBUI. When I click on any of the buttons on WEBUI, after a while, it is showing a blank page, instead of required page. However if I click on back button, then it is showing the required page.
    This is happening very sporadically. I am not able to undertstand the reason.
    Could you please let me know, any settings I need to do to avoid this problem. (CRM Settings or Internet settings).
    Thanks in advance for all the responses.
    Thanks,
    Sandeep

    Hello Sandeep,
    Please have a look at note 1244321 which contains the general information on analysing WEBUI problems.
    Please also try to get a HTTP trace of the problem which would be helpful on analysing.
    There was the similar case which was caused by network.
    Best regards,
    Maggie

  • 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

Maybe you are looking for

  • EDI Shipment Output  Master Data Conversion

    Hi, I am using LSMW to upload EDI Shipment Output Master Data into file can anyone suggest me any standard BAPI or Idoc avail for the same or any function module available to do this. Thanks Dhirendra

  • SERVER COMPONENT id=UTLRP_END

    Any idea on why the alert log file comes with the following message?? replication_dependency_tracking turned off (no async multimaster replication found) Starting background process QMNC QMNC started with pid=15, OS id=19502 Wed Apr 11 11:07:54 2007

  • Echo colored text in a shell script?

    As part of a shell script I'm working on, I want to be able to print colored (preferably red) text to the Terminal window, to provide warnings to the user. How can I code in echoing colored text? (I did some googling and couldn't find anything that s

  • UNCAUGHT_EXCEPTION CX_RSR_X_MESSAGE

    Hi All,            I am trying to load data till update rules it is showing "GREEN" status but after update rules when it is updating from update rules to the Info cube it is not updating. In Enviornment -> Short dump -> Data warehousing i found What

  • RH6: External Links Won't Open

    In the newest issue I've encountered compiling RH5 projects with RH6, none of the several hundred external file links work in IE7: the file will not open. I ran a file compare on the published version of one RH6 topic with its RH5 equivalent -- they