How to set capital letter automatically after enter.. during email

how to set capital letter automatically after enter.. during email
as it defaults to lower case all the time..  just like above
However would like to know how to change so its like the H in the word However automaticlly
thanks.

thanks.
i tried this..
in transformations the three options are in ghost txt.. not bold.
tried them all.. and no change..

Similar Messages

  • How to create Oppertunity doc automatically after lead in CRM SALES

    Hi,
    how to create oppertunity doc automatically after creating lead in crm sales
    Thanks7regards
    kishor kumar

    Hi Kishore,
    Create SAP Business Workflow for Opportunity from Lead 
    Use
    A lead is a business transaction that describes, stores, updates, and manages the potential business interests of a business partner, and the interactions based on this over a period of time. The goal is to provide the "sales" area with the information gained in the lead, in order that it can be used as a basis for deciding whether to create an opportunity.
    The information gathered in the lead is transferred to the "sales" area via the workflow "create opportunity from lead".
    In the workflow, you decide whether the opportunity is generated manually or automatically.
    If the lead-specific attributes Priority and Lead group fulfill specific criteria, the workflow automatically generates an opportunity. Otherwise, the workflow sends a work item to the sales employee responsible, for manual creation. Once he has checked the data in the lead, the sales employee can either reject this lead or create an opportunity from it.
    The workflow is automatically started when the lead is saved.
    The sales representative entered in the lead is first taken as the sales employee whose task it is to create the opportunity based on the information in the lead. This person can be determined using partner determination in CRM, depending on the prospect in the lead, and can, for example, be a manager of a sales area. If no sales representative is entered, the workflow takes an organizational unit assigned in the workflow template, and sends the work item to all users assigned to the organizational unit.
    Prerequisites
    u2022     The type linkage for the start events AttributeChanged and SetErrorFree for the workflow WS10001011 are deactivated as a standard procedure, and, if you wish to start the workflow template, they have to be activated again in Customizing. The workflow task processors must also be maintained. In Customizing, choose Customer Relationship Management  Basic Functions SAP Business Workflow  Perform Task-Specific Customizing.
    u2022     The workflow template uses the user statuses SAAC (accepted by sales) and SARE (rejected by sales) of the status profile CRMLEAD. If you have defined several user statuses, the data flow for task TS10008154 (set status) must be adapted accordingly.
    u2022     When the opportunity is created, the workflow template uses the opportunity transaction type OPPT. If you have defined several transaction types for the opportunity, the data flow for task TS10008151 (create opportunity) must be adapted accordingly.
    u2022     If the sales employee rejects the lead, the workflow resets the qualification level to value 02 (warm). If you have specified your own qualification levels in Customizing, you need to adapt the data flow for task TS10007918 (change qualification level) accordingly.
    Process of Workflow WS10001011 (create opportunity from lead)
    The workflow "create opportunity from lead" is started when a lead is saved with qualification level Hot and status Error-free. The system uses the lead-specific attributes Priority and Lead group to check whether an opportunity can be automatically created, or a sales employee first needs to decide. If the sales employee decides that an opportunity can be created, the lead status is set to "accepted by sales", and an opportunity is created in the background. If necessary, this is forwarded to the sales employee to check. If the sales employee rejects the lead, the lead status is set to "rejected by sales", and the initiator is informed by mail.
    The workflow is ended if no opportunity is created and
    o     the lead is deleted or
    o     the qualification level of the lead is changed to a value other than Hot or
    o     the status of the lead is changed to a value other than Error-free.
    Path for the workflow:
    ==> SPRO
    ==> Customer Relationship Management
    ==> Basic Functions
    ==> SAP Business Workflow
    ==> Perform Task-Specific Customizing
    Select the Application Componenet  Abbrevation as CRM and expand
    Select CRM-BTX and expand
    Select CRM-BTX-LEA and click on Activate event linking  and acivate workflow WS 10001011
    It may helps you
    Regards
    Narayana

  • How to set up an automatic upper case at the begining of a sentence

    Can someone help me if or how to set up an automatic upper case at the beggining of each sentence. I am doing huge amount of writing and just got fed up with it.

    What application? Pages? If so, that option (and many others) is not available in the current version. You can use the previous version which should be in your application folder. Or you can do what I finally did and use Open Office or Libre Office.

  • Can Firefox Download dialog box be set to closed automatically after download completes?

    Can Firefox Download dialog box be set to closed automatically after download completes?

    See also:
    *Tools > Options > General : Downloads : "Close it when all downloads are finished"
    *Press F10 or tap the Alt key to bring up the "Menu Bar" temporarily if the Menu Bar is hidden.
    *Use "Firefox > Options" instead of "Tools > Options" if the menu bar is hidden.
    *https://support.mozilla.org/kb/Options+window+-+General+panel
    *https://support.mozilla.org/kb/Downloads+window

  • How to lock a pdf form after entering data

    Hi
    I have created certificate with editable fields for a client, I was of the thinking that the certificate is to be filled-in and printed however the client informed me that it is instead emailed to recipients. How can I make it possible for the client to lock the certificate after entering data.
    Bear in mind that the client is using Adobe Reader not Acrobat. I have tried setting a security password but Reader does not require the password in order to enable or disable the fields.

    If the user has Acrobat, not the free Reader, they could flatten the PDF form. If they only have Reader they can make the fields read only. They also might want to use a digital certificate to invisibly sign the PDF. Signing the PDF will add code to disclose if the PDF has been changed since it was signed.

  • How to create credit note automatically after PGR?

    Hello SD Gurus,
    Client's Business Process: Return Order (ZRE, ZPOR, ZARE, and ZMTR) is created with reference to billing document number and item category used for this order type is REN or ZREN. After the order is created, they do PGR (Return Delivery Type is LR) and then credit memo is created "manually". So, the issue with this process is that it is very time consuming and a lot of manual intervention is required.
    To-be Process: The requirement is to create credit note "automatically" after the PGR is done to reduce the manual intervention and expedite the process. If item category is REN, then credit note will be created with invoice value. If item category is ZREN, then credit note will be created with Zero Value.
    How should I write code in the user exit MV50AFZ1?
    Regards,
    Mohammed Anwar

    Hi
    Apart from Lakshmipathi's suggestion you can share the below logic with your ABAPER. There are two BAPIs we use to create billing automatically. Check whether you can call these BAPIs in userexit you have mentioned in your post.
    CALL FUNCTION 'BAPI_BILLINGDOC_CREATEMULTIPLE'
    * EXPORTING
    *   CREATORDATAIN         =
    *   TESTRUN               =
    *   POSTING               =
            TABLES
              billingdatain         = billingdatain
              conditiondatain       = conditiondatain
    *   CCARDDATAIN           =
    *   TEXTDATAIN            =
    *   ERRORS                =
              return                = return3
              success               = success
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
            EXPORTING
              wait = 'X'.
          READ TABLE return3 WITH KEY type = 'E'.
          IF sy-subrc = 0.
            record-inv_rem = return3-message.
          ENDIF.
          WAIT UP TO 2 SECONDS.
    *      READ TABLE return3 WITH KEY type = 'E'.
    *      IF return3-type = 'E'.
    *        WRITE:/ return3-message.
    *      ENDIF.
          READ TABLE success INDEX 1.
          CLEAR: vbeln_vf.
          vbeln_vf = success-bill_doc.
        ENDIF.
    Thank$

  • How to set auto shut down after download finishes?

    How to set notebook to auto shut down after Firefox finishes download?

    Firefox 4 Auto Shutdown has been updated for Firefox 4 and has been featured here - [http://www.techiechips.com/auto-shutdown-after-download-firefox-4/ Auto Shutdown after Download for Firefox 4]

  • How to set exceptions for automatic cookie-clearing on closure?

    Firefox is forgetting my two-step google logins. On the google two-step verification page, there's a checkbox which says "Don't ask for codes again on this computer."
    But firefox keeps asking for codes.
    i have firefox set to clear cookies on closing.
    i also have the urls below set as exceptions, in two places:
    -in about:permissions, they are all set to allow, and also to keep offline data without asking
    -in options/privacy/exceptions
    mail.google.com
    maps.google.com
    calendar.google.com
    www.google.com
    shopping.google.com
    plus.google.com
    *.google.com
    google.com
    gmail.com
    this forum is messing up my list, above. Each url is a separate item in exceptions. The bulleted one actually starts with a star. (good job mozilla, thanks for this ancient text editor)
    how do clear all cookies EXCEPT the ones above, when i close firefox? Or, is this not a cookie problem?
    do i need to include "http://"
    this article did not help
    https://support.mozilla.org/en-US/questions/974020

    That worked. (no, it didn't)
    It's very confusing that Firefox has settings for how to handle cookies on closing in three different places. They should change that.
    "Keep until I close Firefox" seems redundant with "Clear History when Firefox closes" with "Cookies" checked. Then there are settings in "about:permissions". No way to know which one takes precedence. That's poor user-design.
    For others having this problem, here's a clear explanation. However, this is only PART of the fix, hoping to find the complete fix later in this thread.
    You CAN make FF keep only certain cookies on closing, and erase all others. Here's how to set all cookies to be cleared as soon as you close firefox, except your exceptions:
    # Go to Tools > Options > Privacy.
    # Under "History", pick "Firefox will Use custom settings for history"
    # Click "Exceptions", and add the cookies you want to keep. Click "Close"
    # Click "Keep until I close Firefox"
    # If you have "Clear History when Firefox closes" checked, then:
    * Click "Settings"
    * Uncheck "Cookies", and click "OK".
    6. Click "OK" to close the settings box.
    (now this forum has a formatting toolbar, thx! why didn't have one before?)

  • HT201320 DOES ANYONE KNOW HOW TO SET-UP A SHAW ACCOUNT FOR SENIDNG EMAIL

    does anyone know how to set-up shaw as an outgoing email account?

    Just Google for:
    setup shaw mail on iphone.

  • Why won;t my phone respond when i press next after entering rescue email

    Hi,
    After a message to upgrade to ios7 i have answered all security questions and entered rescue email address but when i press next nothing happens.I am now stuck on this page and cannot use phone.
    If anyone can help please i would be very gratefull.
    Thanks
    Rob

    What troubleshooting steps have you tried so far?

  • How to set selection in UIPickerView after view has loaded?

    I have a UIPickerView working just fine, and I can set the current selection when a button is clicked, but how can I set the current selection when the view appears?
    I've tried to set the selection in viewDidLoad, viewDidAppear and viewWillAppear to no avail, I've also tried to do it in initWithNibName. Again no joy.
    As far as I can tell, the sequence of events is that my nib gets loaded by the view, my UIPickerViewDelegate interface methods are called to configure the picker, but what message can I pick up after all that has occured to set the selection?

    Hey Paul-
    I use this in one of my apps and it works great. Once the view loads, the picker gets set to the value I want with a nice animation. Let's say you want to set it to row 3.
    - (void)viewWillAppear:(BOOL)animated {
    [myPicker selectRow:3 inComponent:0 animated:YES];
    Of note: If you have the function - (void)viewWillAppear without the :(BOOL)animated part, it won't throw an error on compile, nor will it get called. Yes, I learned that firsthand.
    Hope this is what you are looking for.

  • How to set travel time for after a meeting?

    Hi,
    I hope you can help solve this problem...
    Scenario: I have to go to a meeting and come back again.
    Problem: In the Calendar application I can set the travel time for before a meeting but there is seemingly no functionality to set the travel time for after a meeting. Hopefully it hasn't escaped all those fantastic developers that people have to travel back from a meeting as well as travel to it?
    Question: How do I set the travel time in an event for travelling back after a meeting? I would like to avoid the kind of solution where I have to create another separate event just after the meeting event and call it 'travel time'.
    Hope you guys can help...
    Thanks
    Clown Guy

    first make a Locale object as
    public Locale(String language,
    String country)
    Construct a locale from language, country. NOTE: ISO 639 is not a stable standard; some of the language codes it defines (specifically iw, ji, and in) have changed. This constructor accepts both the old codes (iw, ji, and in) and the new codes (he, yi, and id), but all other API on Locale will return only the OLD codes.
    Parameters:
    language - lowercase two-letter ISO-639 code.
    country - uppercase two-letter ISO-3166 code.
    Throws:
    NullPointerException - thrown if either argument is null.
    and then use following method.
    public SimpleDateFormat(String pattern,
    Locale locale)
    Constructs a SimpleDateFormat using the given pattern and the default date format symbols for the given locale. Note: This constructor may not support all locales. For full coverage, use the factory methods in the DateFormat class.
    Parameters:
    pattern - the pattern describing the date and time format
    locale - the locale whose date format symbols should be used

  • How to set-up  Time Machine after Restore

    After having restored an entire system back from Time Machine, it looks to me as Time Machines wants to completely backup all data already held on the hard-disk. With this effect, the harddisk is not big enough. I do not want to buy another disk. Is there any way how to persuade Time Machine that it should use the existing data on the disk?

    Hi Aulia,
    I don't believe that you will be able to have Time Machine understand that you only want it to continue with the same data : once it has detected that a file changed, it makes another copy, even if you know that it's the same file : it's based on messages telling it that a file has changed, not on files comparison.
    I think that the "inprogress" file will be replaced by another one if you let TM do it's job : it won't make a third copy of your data. If there is enough space on the disk, you can let TM continue, and try to manage with the following trick, with patience and much care.
    Make sure that the "Action" menu is visible in a Finder's window (it is if you did not customize the toolbar to remove it), and dive into Time Machine. Select a item in the window : the Action menu now has an item that should read "delete all backups of this element" (or something like that : I'm translating my French version). Take care that "all" here really means ALL versions in the backup : the only copy left would be on your main disk.
    The next backup may not make a fresh copy unless you help it a little : after all, there was no message telling TM that the original was changed, since it was not ! Just do anything in the folder containing the item that you deleted from the backup (like creating and immediately deleting a folder there) : this will tell TM that something has happened there, the next backup will check the folder, detect the missing element and make a fresh copy.
    Having only one copy of a really important folder may not suit you, even if it's only for the short delay until the next backup. You can make a copy of it, and run TM to backup the copy (a right click on the icon in the dock shows a "backup now" item). You now have a backed up version, you can delete the original, and all the backup copies of the original with the previous method. But if you rename the copy back to it's original name, it will be saved again... just iterate one more time !
    I hope that this can help you, but please do not hesitate to try and validate your method on small copies before you delete something in your backup !
    PS : I just tested my proposals with my 33Gb iMovie Events folder : a new copy of an event folder is created in the backup each time you rename an event, and I gained more than 40 Gb by deleting all previous redundant versions.
    At least, it works for me !

  • How to set default value and after that , use it as control

    Hello,
    Currently i am making motor driver from labview, and i am facing one problem.
    When i connect to my board via labview, it will relay last position to global variable. After that, i have to go to loop, where i can send back  modified position to my motor control board
    In short, i have to control number, but that number default value should be writtem by another function when i start vi.
    any ideas how to do it ?
    Solved!
    Go to Solution.

    Let me know if any clarification is needed
    Kudos are always welcome if you got solution to some extent.
    I need my difficulties because they are necessary to enjoy my success.
    --Ranjeet
    Attachments:
    VI.vi ‏13 KB

  • How to set a job ran after another job finished?

    Dear Experts,
    Our requirement is to have 2 JOBs defined in SAP:
    JobA and JobB
    The requirement is JobA will firstly ran and finished everyday.
    Then JobB will start to run upon JobA finished everyday also.
    Then what i did is set 2 jobs, and set JobB ran after with JobA. I set JobA's name in 'After Job' for JobB.
    Right now, the issue is:
    JobB will run after JobA, but only could run one day..
    The next day after JobA finished, JobB will not run...
    Please kindly help what issue here??
    Thank you very much.

    Dear Hoo,
    It is possible to follow one job after another.
    For this set up please go to transaction "SM36"
    fill your details and then press "Start condition" a new screen opens where you can see several tabs,
    and there is one tab with "After Job" , please enter the name of Job e.g jobA.
    here you can set all the conditions to start a new job.
    I hope this solves your problem.
    Regards,
    Paresh

Maybe you are looking for

  • Load balancing Java instances with EP

    Hi all, I am wondering if EP provides load balancing when connecting to backend java systems. For example, when a user connects to the enterprise portal and then, through portal, connects to a java system like BI portal or Biller Direct, are they bei

  • OIM 11g Entity Adapters

    Hi all, I have developed an Entity Adapter using Oracle Identity Manager Design Console which generates different account user ids against a user defined field on Process Form. Here I'll provide more details about my scenario. SCENARIO* a. OIM versio

  • Certification to become MCSA: Windows 7

    What certification do I need to require the title MCSA: Windows 7 (after 31th of January 2014)? Do I need to require 70-680 + 70-685 + 70-686

  • How do i delete this apple support acct.

    how do i delete this apple support acctount?

  • Updating custom fields in DFKKOP when returning a refund

    Hi all, I am looking for an event to update custom fields on DFKKOP on the item level when returning a refund in PSCD. So far I have tried using events 290, 295. I know that somewhere the clearing document(AUGBL) is cleared. Haven't as yet found out