Spell Check Functionality in CRM 2007

Hi Experts,
Do we have spell check functionality in CRM 2007, If yes, How & where can we enable it ?
For example if a sales representative/Manager types something in NOTES, they should able to spellcheck.
Thanks & Regards
Shiven

I dont think there is SAP spellcheck functionality available. Your best bet would be to download a spellcheck plug-in for your web browser.
Hope this helps
Regards
David

Similar Messages

  • BP merge functionality in CRM 2007 Web UI - Buswu02 objects

    hello champs,
    Could any help me out to resolve the below issue:
    I have a issue with BP Account merge functionality in crm 2007, I have made the config change to create the cleansing case, create task, triggered the bupa_realign to merge the duplicate customer to Master record.
    In this case, Task is created and transferring the BP master data and marked the duplicate BP to to be archived but the issue is, we do want to transfer the service tickets from duplicate customer to master customer.
    I have also check all the setting in buswu01 and buswu02 (clear and clear_rep variants), for me its looks every thing fine but service ticket are not transferred to master account.
    It would be great help if any one help to resolve the issue!     Thanks a lot in advance.
    Regards
    Praveen

    This question has been resolved by me only, we have implemented the BP merge functionality with web ui crm 2007.
    And
    It was the issue with objects maintenance in tran buswu01 and transportation to testing client and other systems.
    now BP merge fun. works fine:
    to config:
    User the BP merge funn. in web ui.
    Assign the Task for merging the BP's
    Maintain the all relevant object to transfer.
    which will trigger a batch job and will transfer all the transact from duplicate account to master account and will mark the duplicate account to Archive.
    any ho thanks for all your suggestions and help.
    regards
    praveen

  • Spell check functionality in OA Framework

    In the absence of spell check functionality for OA applications, is there any workaround or custom code to have a spell check functionality in OA framework. The customer does not want to use the Google spellcheker or JSpell.

    Check this link http://weblogs.asp.net/pwelter34/archive/2005/07/19/419838.aspx
    Do a google on this topic and you will find more similar references.
    --Shiv                                                                                                                                                                                                                                                                                                                                   

  • How to use Spell-check functionality for textbox (like Orkut, gtalk)

    How to use Spell-check functionality for tex Hello Friends,
    I am working on a JSP application. I wanted to add Spell check for text box like we have here, when we post a message. It automatically shows red line under the word, when ever spelling is wrong. Please tell me how I can do this. If possible, the code too.
    Thanks.

    I believe the spell checking you see here, or on any other site, is the spell checking built into Firefox. At least that's what I see. Are you using Firefox?

  • Is there a spell check function in iCloud pages?  Doesn't seem to be.

    Is there a spell check function in iCloud pages?  Doesn't seem to be.

    Select the spanner > Settings > Check Spelling.

  • Spell checker Functionality to be Implemented in a Oracle Ebiz Custom form

    Hi,
    I have tried implementing the Spell checker functionality in one of our Custom form,I used the OLE2 Built in Package in forms 6i to invoke the Spell checker functionality in Microsoft word but i am getting an error,Could anyone please help me in implementing the functionality?
    I used the following procedure to Implement the spell checker functionality in Forms 6i and registered the same in Oracle Applications 11i,
    PROCEDURE spell_check (item_name IN VARCHAR2)
    IS
    my_application   ole2.obj_type;
    my_documents     ole2.obj_type;
    my_document      ole2.obj_type;
    my_selection     ole2.obj_type;
    get_spell        ole2.obj_type;
    my_spell         ole2.obj_type;
    args             ole2.list_type;
    spell_checked    VARCHAR2 (4000);
    orig_text        VARCHAR2 (4000);
    BEGIN
    orig_text := NAME_IN (item_name);
    my_application := ole2.create_obj ('WORD.APPLICATION');
    ole2.set_property (my_application, 'VISIBLE', FALSE);
    my_documents := ole2.get_obj_property (my_application, 'DOCUMENTS');
    my_document := ole2.invoke_obj (my_documents, 'ADD');
    my_selection := ole2.get_obj_property (my_application, 'SELECTION');
    ole2.set_property (my_selection, 'TEXT', orig_text);
    get_spell :=ole2.get_obj_property (my_application, 'ACTIVEDOCUMENT');
    ole2.invoke (get_spell, 'CHECKSPELLING');
    ole2.invoke (my_selection, 'WholeStory');
    ole2.invoke (my_selection, 'Copy');
    spell_checked := ole2.get_char_property (my_selection, 'TEXT');
    spell_checked :=SUBSTR (REPLACE (spell_checked, CHR (13), CHR (10)),1,LENGTH (spell_checked));
    COPY (spell_checked, item_name);
    args := ole2.create_arglist;
    ole2.add_arg (args, 0);
    ole2.invoke (my_document, 'CLOSE', args);
    ole2.destroy_arglist (args);
    ole2.RELEASE_OBJ (my_selection);
    ole2.RELEASE_OBJ (get_spell);
    ole2.RELEASE_OBJ (my_document);
    ole2.RELEASE_OBJ (my_documents);
    ole2.invoke (my_application, 'QUIT');
    ole2.RELEASE_OBJ (my_application);
    END;
    I am getting the following error,
    *305501:non-ORACLE exception*
    I get this error exactly after the following line of the procedure,
    my_application := ole2.create_obj ('WORD.APPLICATION');
    This Spell check functionality works fine when implemented in a standalone form(When a form is ran from the Form Builder),Facing issue only when it is registered in the Oracle applications 11i.
    I searched various Forums,But i unable to find any solution,Expecting your help on the same asap.
    Thanks,
    Venkat
    Edited by: 946005 on Jul 12, 2012 3:47 AM

    Hi Raja,
    Thanks for the Reply..
    Thanks a lot for your quick and efficient responses.
    But Iam unable to figure out how to implement this auto save functionality in this BSP Applicaition. If anyone has worked on this BSP Application <b>HAP_DOCUMENT</b>, can you please tell me how to do this auto save functionality. Is it possible that when I give this popup to save using java script and when the User clicks on OK, can I get the return code for this and use it to trigger the auto save functionality? And where exactly do I have to code this. Because the code here is bit confusing and the pages are called dynamically, even Iam unable to figure out the Button Id. Can anyone please help me out on this. This is a very urgent requirement.
    As specified by you, I have used this code to give the popup.
    <script type="text/javascript">
    function alertUser()
    alert('Please Save the changes by clicking Save button');
    window.setInterval("alertUser()",300000);
    </script>
    Can I use the same code for save also, like this:
    <script type="text/javascript">
    function autosave()
    htmlbSL(this,2,'SAVE:SAVE');
    window.setInterval("autosave()",300000);
    </script>
    I was trying with this but it is not working.
    Regards,
    Raju
    Message was edited by:
            Narayana Raju Sampathirao

  • AMI (Advanced Metering Infrastructure) functionality in CRM 2007

    Hi Gurus,
    Do we have AMI A(dvanced Metering Infrastructure) functionality in CRM 2007 ?
    Actually one of our client is having CRM 2007 and wants to test the AMI functionality in Interaction Center Web Client
    in CRM 2007. They are not sure whether CRM 2007 also support AMI and if yes to what extent.
    Is there any SP avaible to get this functionality.
    Post of the presentation available in the net is mentioning CRM 7.0.
    Any help/information in this regards will be appreciated,
    Thanks,

    Hi
    AMI features comes with the combination of CRM 7.0 & ECC 6.0 (specifically Enhancement Pack 4, which is due for release soon.  AMI is not part of CRM 2007.
    Ramana

  • How to integrate personalize function in CRM 2007 WebUI to portal

    Hello Experts,
    I have a requirement in regards to the CRM 2007 and portal integration.
    We have integrated a business role from CRM and CRM 2007 WebUI is now an integrated part of the portal. But in this we are missing the 'Personalize' option that is in CRM WebUI in portal.
    So can anyone suggest me any solution how to go ahead for the personalize development in enterprise portal.
    Thanks.

    Hello, Aparna,
    In CRM 2007 integrated into portal, the links like Personalize are part of so called Masthead iView. To get that view instead of the standard one, you need to configure the portal rules to load CRM desktop, instead of the standard one. You can find the instructions how to do it at the following path:
    http://help.sap.com -> SAP Business Suite -> SAP Customer Relationship Management -> SAP CRM 2007 6.0 -> Application Help -> SAP Customer Relationship Management -> Components and Functions -> Basic Functions -> UI Framework and Configuration -> Portal Integration-> Adapting the CRM Portal Desktop
    Sincerely,
    Arman

  • Spell check function in my iworks pages does not work, how do I fix this?

    I have a new IMac (intel) and I am struggling learning to use the ipage part of the iwork suite.  There does not appear to be a spell check feature working, since I'm trying to create some new documents, this is a real hassle.  And does anyone know how to do a cut and paste of images from the web.  I'm doing a presentation, have permission to use the photos and can't get it to work!!  sigh  I beginning to think I should have paid the xtra bucks and bought the window suite version, at least I know where they hid the bells and whistles in that one. 
    Thanks any help would be greatly appreciated.
    doccat5

    Greetings,
    For questions on Pages post in the Pages forum: https://discussions.apple.com/community/iwork/pages
    -- You can read about the various spell check features in Pages by typing in the word "spelling" in the Pages help menu.  This entry should get Spell check up and running for you: http://docs.info.apple.com/article.html?path=Pages/4.0/en/sl150c96ab.html
    If there is an image on a website you want to use locally on your computer usually just dragging the image from the web page anywhere on your desktop is enough to copy the image.  You can then drag the image from the desktop anywhere you want.
    Alternatively you can right-click (or hold down the control key and regular click on the image) on the image and then choose "Copy Image.  You can then perform an Edit > Paste into a Pages document for example.
    Hope that helps.

  • Spell checking function?

    I am familiar with spell checking since Claris Works but am having a glitch in emails, etc. From what I understand if you control click a misspelled word a list of possibles is supposed to appear. All I get is a menu to choose from that will get to suggestions in a round about way.
    I thought that control clicking the highlighted word would automatically show possible suggestions without going through extra steps.
    Am I doing something wrong?

    This discussion is getting confused. The question was about spell check but most of the discussion is about Dictionary. Command-Control-D should pop up a definition of the word the mouse is pointing at (no click needed). But the word has to be spelled right.
    For spell check: Select *Edit > Spelling and Grammar > Check Spelling While Typing*. If a word you type is not recognized, it should be underlined with a dashed red line. Put the mouse pointer on an underlined word. Control-Click on the word. The first item or several items in the pop-up menu should be suggested alternatives for the misspelled word.
    It sounds like that is what you are expecting. Does that not work when you do as I described?

  • Why wont the spell check function work in a fillable form? Please help deadline looming.

    Spell check wont work. Have read through various internet help solutions but no luck so far.
    I have windows 7 64 bit.
    The forms are on a CD-Rom (from about 10 years ago) but I have up to Adobe date software on my PC.
    Edit-Preferences-Spelling shows I have English United Kingdom selected and the check box, check spelling whilst typing is ticked.
    When I press F7 and start it finds nothing even though I have made deliberate mistakes to check if it's working.
    Any help would really be appreciated.
    Message was edited by: Awel-y-coed

    It's possible the author of the file disabled the spell-checking option for this field.

  • Duplicate Check Function in CRM when creating new BPs?

    Hi
    Three questions:
    1. does anyone know if there is some standard way in CRM (we are on CRM5.0) to enable a duplicate check to happen when a new business partner is created - one that will warn that a similar BP already exists when the user goes to save (or even better, when part way through creation)? I have already looked into using the data cleansing cases in CRM, which is ok for existing duplicate records, but doesn't help with stopping them being created in the first place.
    2. Is there a standard function/report available that will go through the database and identify any potential duplicate records? Or, does anyone know of some standard function calls/bapis etc that can be used by our developers to design something to do this for us?
    3. Failing the above two, are there any recommendations out there for 3rd party add-ins for address/duplicate checks?
    Any insight would be most gratefully received!
    Regards
    Cara

    Hi Cara
    SAP Business Address Services (BAS) is used for maintaining BP address data.
    You can maintain any number of addresses for each business partner. One address per business partner is always flagged as being the standard address. You can define address usages by assigning the different addresses to the relevant business processes.
    Postal data and information on different communication types, such as phone numbers, fax numbers and e-mail, can be assigned to the address. If you have only the name and the (mobile) phone number of a business partner but you donu2019t know the address, you can create a BP with this address-independent communication data.
    Now Answer to your question
    A postal validation for the postal code, the city and the street can be carried out by checking against the SAP Regional Structure. You can also use external software for postal validation, checks for duplicates, and error-tolerant searches. (For more information, please see SAP Note 176559.)
    The following are examples of possible checks:
    Postal codes, cities and streets, and combinations of all of them are checked for consistency. During the check, missing elements are added. For example, if you enter only the city, the postal code is added.
    When you create and change a business partner, several phonetically similar, existing BPs are proposed for comparison purposes.
    This prevents you from creating the same partner more than once.
    Please let me know if this answered your questions.
    Regards
    Dinesh

  • Spell check function

    Does the iPod touch have the ability to "learn" new words? I.e. "add to dictionary" function on the PC?
    If so, how do you do it?
    It keeps "auto correcting" my email address, among a couple other items I continually use. I don't want to disable the auto complete function though,
    Thanks,
    Cathy
    Dell Inspiron 1720   Windows Vista    

    The manual does not reflect what shows upon my ipod screen when I select the Keyboard. I only have the followng selections:
    Auto-Capitalization
    Auto-Correction
    Check Spelling
    Enable Caps Lock
    ","Shortcut
    and
    International Keyboards.
    Per the previous response, it is not "learning". I have had it for a couple of months, and it still hasn't learned my email address. Keeps wanting to change it to something else.
    Its using v 4.2.1
    Thanks,
    Cathy

  • Firefox crashes when I click on the spell check function on a fanfic website

    I tried to write a review for a fanfic on TTH and accidentally clicked the check spelling button on the page, I hit the X to close it and firefox promptly crashed.
    I repeated it with random fic review pages on that site and got the same result.
    I verified it on an identically configured firefox installation on a different computer.
    no other website has elicited this reaction from firefox.

    Problematic plugins
    Depending on your browser version and OS, Firefox may hang or crash because of a problematic plugin. Visit Mozilla's Plugin Check page (using another browser If Firefox crashes at startup) and update all outdated plugins to see if that resolves the problem.
    http://kb.mozillazine.org/Firefox_hangs#Problematic_plugins

  • CRM 7.0 Email Spell Check

    Hello all,
    Iu2019m currently working on an upgrade project.  My client is upgrading  from CRM 4.0 to CRM 7.0.  During the upgrade we are implementing Email for CRM and my client is looking for auto spell checker to scan the body of the email.  My client does not want their agent to have to push a button to activate the spell check but just auto underline the incorrect works, like in Microsoft products.  My client is using the Web IC functionality of CRM 7.0.   I was hoping someone could recommend a third party vendor since SAP CRM does not do it.

    Hi Eric,
    Check if John Burton's weblog solutions for spell checking may help you. It's located here:
    /people/john.burton/blog/2008/04/14/spell-check-integration-with-crm-and-ic-webclient
    Kind regards,
    Garcia

Maybe you are looking for

  • PLEASE HELP, iPhone bricked, but not in the 'usual' ways

    I have a horrible problem with my iPhone, which usually I have been able to fix most iPhone problems. I've seen a lot of issues as I used to administer a 200 strong iPhone4 fleet, but this has me stumped! I have an iPhone4 GSM. Up until yesterday it

  • SQL SELECT Query Help   ..Please its very Urgent!!

    Hi All, I am having Oracle Database whice is storing 1000's of records daily. I need to select some information based on date and time. I am having two coloumns for Date and time. The first column(testDate) of type Date stores date as MM/DD/YY format

  • Color of opened document's url not changing (visited color)

    Hi guys, Just like a visited url is presented with a different color in browser, i want document links in my SharePoint libraries to take a different color when a user clicks on them so that later on the user can easily distinguish which documents he

  • Simple state machine Where to begin?

    Hello Got a question that is simple for the experienced people here I guess. But don't know where to start..... Here is what I want to try to do: I have got a lot of inputs, to keep the question simple I have only drawn a few of them but eventually t

  • Nokia Series 40 SDK, preverify error

    When making my first project with JBuilder9 and Nokia Developer's Suite 2.2 for J2ME && Nokia Series 40 SDK, such an error appears: ERROR: floating-point arguments should not appear Error preverifying class java.lang.String However I dont use any flo