CRM 5.2 WEB UI Technical - Copy Category2 field data to Description field

Hi All,
I am working on CRM technical part.
   In the process of creating a sales request/Complaint, the end user input the data in category 1 and category 2 fields. In the same page/screen there is a field called Description. What ever the value user enters in the Category 2 field should appear in Description field before the serveice ticket is saved.
guys, could you please help me out in achieving this?

Hi,
U can assign an event to your Description field. End user will input value in Category2 field and then will click on description field. IAt this moment event will get triggered and in this event U need to write code to fetch value of category2 and then dispay this value through a variable assigned to Description field in .htm page.
Reward points if it helps.
Regards,
Viks

Similar Messages

  • What is master data in SAP CRM 2007 in Web Client

    Hi All,
    plz could you explain what is the master data in SAP CRM 2007 In Web client intraction center.
    regards,
    pasha

    Master Data are as under:
    Business Partner
    Product
    IBase
    Regards,
    Rajesh Banka

  • Customize SearchResultList for BP Employee on CRM 7.0 Web UI

    - Hello Experts,
           Hope you guys are doing fine,
           Need your help on the following: I want to make the addess data for partners Employee (and just for this partner role) not to be displayed on the component "HEAD_SEARCH" - view "SearchResultList" on CRM 7.0 Web user interface.
           I´ve tested different types of objects to make a new view configuration but no one works...I have to make the address data for partners Employee not visible on the search result list screen and also on the partner detail screen.
            Hope you can support me on this.
            Thanks in advance,
            Daniel

    Hello Shiromani
    Thanks for your reply,
    I´m aware of the procedure withi txn "BSP_WD_CMPWB" but what I need to help is which configuration I need to create to have the address fields not displyed just for the BP with function "Employee" - I´m considering that I have to create a new configuration, copy if the std view "BP_HEAD_SEARCH/MainSearch" but using anothe object as 'BP_EMPLOYEE' but I´m not sure which object to consider...I´ve made already somes testing with different objects but not successful so far...hope anybody can help.
    Take Care,
    Daniel

  • 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

  • ID for Outbound Email in CRM 5.0 Web IC

    Hi !
    We would like to get the turn around time for an email request in the CRM 5.0 Web IC. We are able to get the timestamp of the inbound email from the Service Ticket in the business context. Is there a way to retrieve the outbound email (reply) timestamp ? This is needed urgently for reporting purposes.
    Cheers,
    Ashok.

    Hi,
    You can create an interaction record which in other words is a business activity for emai interactions you do. You can take this create date/time of this interaction as reference to your email responses.
    I hope this helps.
    Regards,
    Gaurav Gera

  • Search criteria drop down not working in CRM 7.0 Web UI for few users.

    Hi Gurus,
    i have come across problem in sap CRM 7.0 web ui,
    it goes here....
    when a user opens a webui page and goes to "account management" work center page under "search" work center link group... he selects "accounts"(or contacts or account plan)... there in search criteria fields..(account id,role,country etc ) drop down list is not working for him...he can only see only which is maintained as default but if wants to change it by drop down list selection it is not possible...for me it is working ..can u please suggest what is missing in his case..?
    if it is authorization issue please tell which object should i check..?
    Thanks,
    gaurav

    Hi,
    Please check if the user is assigned to a Business Partner.If not then assign the User to a Business Partner and check.
    Regards.
    Deepak Ramchandran.

  • "Cipher not initialized" when trying to invoke CRM On Demand web service

    Hi,
    I'm try to invoke CRM On Demand web service for which there is a pre-req to get a session ID by making an https request. I've the below java embedded code which does that. It works fine if I run the below code in my desktop as a java program, but when I deploy it on SOA 11g I get "Caused by: java.lang.IllegalStateException: Cipher not initialized" error (find below the stack trace). Please let me know what's going wrong here?
    String sessionString = "FAIL";
    String wsLocation =
    "https://secure-********.crmondemand.com/Services/Integration";
    String headerName;
    try {
    // create an HTTPS connection to the OnDemand webservices
    java.net.URL wsURL =
    new java.net.URL(wsLocation + "?command=login");
    java.net.HttpURLConnection wsConnection =
    (java.net.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",
    wsConnection.setRequestProperty("Password", "***********");
    wsConnection.setRequestMethod("GET");
    // see if we got a successful response
    if (wsConnection.getResponseCode() ==
    java.net.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);
    if (sessionString != null ||
    sessionString.startsWith("JSESSIONID")) {
    break;
    String formattedID =
    sessionString.substring(sessionString.indexOf("=") + 1,
    sessionString.indexOf(";"));
    setVariableData("SessionID", formattedID);
    //System.out.println("Session ID: " + sessionString);
    } catch (Exception e) {
    e.printStackTrace();
    setVariableData("SessionID", e.getMessage());
    System.out.println("Logon Exception generated :: " + e);
    throw new RuntimeException(e);
    Caused by: java.lang.IllegalStateException: Cipher not initialized
    at javax.crypto.Cipher.c(DashoA13*..)
    at javax.crypto.Cipher.update(DashoA13*..)
    at com.certicom.tls.provider.Cipher.update(Unknown Source)
    at com.certicom.tls.record.MessageEncryptor.compressEncryptSend(Unknown Source)
    at com.certicom.tls.record.MessageEncryptor.compressEncryptSend(Unknown Source)
    at com.certicom.tls.record.MessageFragmentor.write(Unknown Source)
    at com.certicom.tls.record.WriteHandler.write(Unknown Source)
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireAlertSent(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.fireAlert(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.fireAlert(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.handleHandshakeMessage(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.handleHandshakeMessages(Unknown Source)
    at com.certicom.tls.record.MessageInterpreter.interpretContent(Unknown Source)
    at com.certicom.tls.record.MessageInterpreter.decryptMessage(Unknown Source)
    at com.certicom.tls.record.ReadHandler.processRecord(Unknown Source)
    at com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)
    at com.certicom.tls.record.ReadHandler.readUntilHandshakeComplete(Unknown Source)
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.completeHandshake(Unknown Source)
    at com.certicom.tls.record.WriteHandler.write(Unknown Source)
    at com.certicom.io.OutputSSLIOStreamWrapper.write(Unknown Source)
    at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65)
    at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123)
    at java.io.FilterOutputStream.flush(FilterOutputStream.java:123)
    at weblogic.net.http.HttpURLConnection.writeRequests(HttpURLConnection.java:158)
    at weblogic.net.http.HttpURLConnection.getInputStream(HttpURLConnection.java:363)
    at weblogic.net.http.SOAPHttpsURLConnection.getInputStream(SOAPHttpsURLConnection.java:37)
    at weblogic.net.http.HttpURLConnection.getResponseCode(HttpURLConnection.java:952)
    at orabpel.productquerybpelprocess.ExecLetBxExe0.execute(ExecLetBxExe0.java:93)
    Thanks!

    Same question...did you ever got this resolved...for me, even the simple java program, when run on JDev 11g is ALSO not working. I am getting this.
    Using JDev 10g on the same machine (or for that matter SOA 10g) works perfectly.
    Have posted this thread too - Getting SSLHandshakeException when trying to login to OCOD using Jdev 11g
    Thanks,
    Amit

  • Need idea : Integration of CRM On Demand web services with Oracle SOA 10g

    Hi Al,
    Can anyone have any idea on integration of CRM on Demand Web service with Oracle SOA 10g specially BPEL 10g.
    If you have any idea please share with us. Or if you know any good link on the same... please let me know.....
    Thanks in advance
    Debarshi

    AFAIK there is no such mapping available, however you may want to take a look at this Support Community thread that discusses the migration and even gives some samples.
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • WEBAS Java Technical system

    Hi all,
            Could you please give me an example of an application for which we would need to create WEB AS JAVA technical system?
    Regards,
    Ashish

    Hi,
    <i>Could you please give me an example of an application for which we would need to create WEB AS JAVA technical system?</i>
    In case of java proxies,u will create java proxies from interfaces in IR.
    But u would need some java application which will call methods of those java proxies,these proxies can be called using EJBs in java application.
    You will create EJBs from thses proxies and then use one java application to call these EJBs.
    When this java application gets executed it sends proxy message to XI,XI identifies this message with the help of technical ystem which should be of type WEBAS JAVA,because the server on which u deploy ur JAVA application is of type WAEAS JAVA.
    So u need to create WEBAS JAVA technical system to send message from JAVA proxies.
    Thanks.

  • CRM 5.2 Web Channel, ICSS, E-Commerce configuration guides

    Hey all,
    Would someone be able to provide me with the Configuration Guides for CRM 5.2 Web Channel applications (ICSS, E-Commerce)?
    I can't seem to find them ANYWHERE on service marketplace. 
    I would greatly appreciate it!!
    John

    Hello,
    One of the major features introduced after CRM 5.0 in Web Channel is the introduction of "Product Structure Management in CRM" mainly for addressing packaged products for telecom industries - packaging products and services with different pricing stuff.
    In the product catalog, we now have "Catalog Staging". The last thing I heard about E-Service was availability of Extended Complaints and Returns scenario. These two features are available as a part of "Service Parts Management" and all Java apps in SPM have to be deployed.
    Well, there are no configuration guides available yet. In the mean time, the online help seems to provide the best possible information.
    CRM 5.2 help: http://help.sap.com/saphelp_crm60/helpdata/en/1a/023d63b8387c4a8dfea6592f3a23a7/frameset.htm
    For Structured products - look into "SAP CRM for industries -> Telecommunications"
    For the SPM (catalog staging and Extended Complaints / Returns scenario): http://help.sap.com/saphelp_crm60/helpdata/en/df/556c4b57344a49ac98a0dcf655a01c/frameset.htm
    Hope this is helpful.
    Easwar / Venky
    http://www.parxlns.com

  • Client Copy: copy only master data

    Hi!
    Is it possible to copy only master data from e.g. client 100 to client 200?
    If yes, which technical steps are necessary (tcode, etc.)?
    Client 100 is the copy of client 200 without master data.
    Thank you,
    regards
    Thom

    You can Copy all the customizing data from one client to another client using clent copy(SCC1). Ie, data stored in a customizing request.

  • Some kind of technical problems (like slow data processing)...

    Some kind of technical problems (like slow data processing) with Leopard appears during the working in the local network.
    OS Snow Leopard 10.6 is installed; including all updates, the computer I currently use is Mac Pro. So I have some kind of technical problems (like slow data processing) with Leopard during the working in the local network. (Windows network).
    During the attempt to connect with network sharing (the computer is in the network) automounter process took approximately one minute.
    Later on, after the automounter process is finished it’s working quite normally over remote computer, but when you try to automount again, everything starts from the very beginning.
    The internet is working very well, it’s connected with domain, and everything is adjusted.
    I use to ask our system administrator; maybe it is necessary to activate the some kind of protocol?
    The OS Tiger is installed on the second hard disk, and it’s working well.
    Maybe someone could help me, I try to find the similar problems, but I could not find them.
    Thanks//

    A couple of things.
    First, thanks for the tips. I was starting to suspect the network might be an issue (bad nic, bad router, something).
    But netstat -s was showing an average of about .15% packet loss. For a web server that seems to be a pretty good value so I'm not sure.
    I did, however, ask someone else to look at the server because I'd spent the whole week on just server performance and was going out of my mind. This second pair of eyes really helped as he found that the pagefile for the server was set at 2mb!? Still trying to figure out how that happened. But we increased the pagefile to a much better value. There wasn't an immediate change in performance, but over time the server appears to have begun to respond better.
    Occasionally I still get these 'lag spikes' but nowhere near what they were and the delay is much smaller as well, which is probably being caused by something else entirely (like bad programming on my part, hah).

  • How to compare and copy the fields from repeating subform to another subform, same structure.

    Dear All,
    I am using LiveCycle Designer 8.2.
    I have the following requirement, and did not figure out the best way to implement it using JavaScript.
    The Form has, say, Subform A with Repeating Inner Subform, say it has the Education History of the Staff.
    I want to put another Subform B, with similar structure to From A, and create a button/function to copy the field data values from A to B.
    Subform A will show the user the fields of education with Read-Only Mode.
    Subform B will show the user the same data values with write-enable mode. This subform will allow the user update his Education Records.
    The fields are:
    0. Staff ID: Text (Key 1) (always read-only and hidden, becuase it is on the main form),
    1. Degree: Text,
    2. Specialization: Text,
    3. Institution: Text,
    4. Start Date: Date (Key 2),
    5. End Date: Date.
    Another function is needed is to compare the same records between form A and Form B.
    (Note: The Education record of a Staff has primary key of Staff ID and Start Date. Meaning, the Staff cannot have tow different degrees in starting on the same date.)
    The user may change the Institution in form B or change the Degree. I need to highlight, on Subform B, the row which was changed or added by the user. This means I need to do lookup against Subform B using the Key Values from Subform A.
    I have already developed the Form, and I have about 5 Subforms to allow updated by Staff: Education, Experience Inside the company, Experience Outside the company, Job Skills, Membership Record, ..etc. One thing I did is that the Field Names I used in Subform A are not the same of the fieldname in Subform B, but the have same suffix, and different prefix. For example, for the Education:
    Subform A - Original Values:
    1. Degree: OrgDegreet,
    2. Specialization: OrgSpecialization,
    3. Institution: OrgInistitution,
    4. Start Date: OrgDateStart (Key),
    5. End Date: OrgDateEnd.
    Subform B - Updated Values:
    1. Degree: UpdDegreet,
    2. Specialization: UpdSpecialization,
    3. Institution: UpdInistitution,
    4. Start Date: UpdDateStart (Key),
    5. End Date: UpdDateEnd.
    I understand if the Key field is updated, then it is like it was deleted, and added a new one.
    I know how to do that in ASP.NET, but need help in Adobe LiveCycle using JavaScript.
    Please help me to write these two functions, as they are very urgent requirement.
    Tarek.

    In the event Exit of the 1st subforum.invoice you will find the code to assign the value to it's "brother" on page4.
    Also, on the add button i added the code to add a record to the page4 subforum.
    To make this work you will have to copy/past the code of the exit event to all fields you want to copy and in the xfa.resolvenode("XXXXXXX[].fieldName") command replace fieldname with the actual name of the field you're at.
    I didnt't do anything to te remove line button because i don't know how you want it to work, but, if you want to control the p4 subform with the p1 subform, you shouldn't allow for lines to be removed directly in the p4 subform.
    Hope this helps.

  • What is the difference between copy requirement and data transfer routines

    Hi Experts,
    I am writing a copy control routine for maintainence quote
    from sales quote.Where do i have to write it in VOFM?
    Is it in copying requirements or data transfer.
    Actually according to the business all the line items from the sales quote are copied
    into the maintainence quote and additional line items are added into maintainence quote
    and the line items copied from the source document are linked to the two newly added
    line items.
    Please advise.
    And is it possible to add the 2 new line items to the new document into VBAP at the runtime?
    Regards,
    Chitrasen

    First of all you have to have a link between the sales documents. You can check it in Tcode: VTAA. if not, talk to your functional people. Try to make this equal to quote to order but instead make it quote to quote.
    You need to put break point in copy requirement as well as in data transfers and check for your requirement.
    Well, the code you want to put in will be the requirement
    I am not sure if you can add 2 line items runtime into quote. this has to go through different checks and i dont think it is possible.
    Good luck

  • How to add a role so user can do Export, Copy & paste Master Data?

    How to add a role so user can do Export, Copy & paste Master Data? Thanks!

    Add S_GUI to the user role.

Maybe you are looking for

  • Image not printing dynamically

    Hi all, I m trying to print the image in RTF template by the giving reference through XML data template but its not taking reference in RTF. When i am giving direct path of that image in web property of image its coming but when trying to get the pat

  • Error while filling the aggregates

    I have re-created the cube as it got deleted by accident. When I run the Process Chain to load the cube, it is loading the cube but it is failing while "filling and activating"(by ABAP program) process type. Here are the errors. If somebody can make

  • Mail 1.3 for 10.3.9 version : application refuse to function correctly

    My problem is the following : when I open Mail 1.3, on my 10.3.9 version, the application refuse to function correctly : the first window wich must open at the beginning doesn't want to open, and when I want to quit this, I can't quit it normaly, it'

  • Hit error Validation Unsuccessful in MIGO

    Dear SAP expert and guru, Would like to seek for your assistant to to check whats wrong with the goods issue that I always hit error Validation Unsuccessful error. I was able to post goods issue for the similar PO last week without any error message,

  • Lost preset  tone curve - Lightroom Default

    I think I deleted by accident. I cannot find any way to restore factory defaults. Surely there must be. Tried right clicking but that does not work. I am running LR 1.1 Any suggestions?