Default email addr of supplier in invite/register external usr pg(iSupplier

I have a question on iSupplier customization. When registering/inviting an existing supplier to join the iSupplier portal, is there a way that the email address for that particular supplier gets defaulted when the supplier user administrator selects the supplier in the register external users page.
Is there a setup to default the email address in the register/invite external users page?
Please suggest. Thanks.

Ritesh,
I am aware of the fact that CO extension is not recommended, but I listed it down as the last step to resort for value binding.
Definitely, if the personalization does the mapping, then CO extension is not required.
Now because the email field is a seeded bean and there might be some code attached to the seeded controller with this bean's handling, it might be good to override that behaviour. Also the email field population is required on a particular action and not all the time, why would you like to default it all the time through the personalization.
Hope, you got my point.
--Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • Supplier User Management- Register Supplier User

    Supplier User Management > Register Supplier User
    I do this on the form and it sets up a supplier user with no problem. It even sets up the securing attribute for the user with the iSupplier Portal id.
    Is there a way to do this registering on the backend? An API I don't know about? Or some other way to do this?
    Thanks

    Not sure about APIsor WFlows, but I did some work on iSupplier a while ago, and found this SQL useful.
    #       iSUPPLIER APPS.PO_SUPPLIER_USERS_V VIEW
            GENERATES LIST OF iSUPPLIER USERS
            LINKED TO SUPPLIER TABLES
    SELECT *
      FROM apps.po_supplier_users_v;
    #        iSUPPLIER EXTERNAL SUPPLIER REGISTRATIONS
    SELECT   *
        FROM pos.pos_supplier_registrations psr
    ORDER BY psr.creation_date DESC;
    #        iSUPPLIER FND REGISTRATIONS
    SELECT fr.registration_id
         , fr.creation_date
         , DECODE(
              fr.registration_type
            , 'POS_REG', 'BY_CCC'
            , 'POS_SUPP_REG', 'ONLINE'
           ) status
         , fr.registration_status
         , fr.user_title
         , fr.first_name
         , fr.middle_name
         , fr.last_name
         , fr.email
         , fr.phone
         , fr.requested_user_name
      FROM apps.fnd_registrations fr;
    #        iSUPPLIER PRODUCTS AND SERVICES
    SELECT *
      FROM apps.pos_sup_products_services psps
         , apps.fnd_lookup_values_vl
    WHERE psps.vendor_id = '65352'
       AND fnd_lookup_values_vl.lookup_type = 'POS_SUP_PROD_SVC_STATUS'
       AND fnd_lookup_values_vl.lookup_code = psps.status
       AND fnd_lookup_values_vl.enabled_flag = 'Y'
       AND fnd_lookup_values_vl.start_date_active < SYSDATE
       AND (
               fnd_lookup_values_vl.end_date_active IS NULL
            OR fnd_lookup_values_vl.end_date_active > SYSDATE
    #        iSUPPLIER BANK ACCOUNT CHECKING
    SELECT   psbar.creation_date
           , psbar.request_status
           , fu.description supplier_user
           , fu.user_name supplier_username
           , pv.vendor_name supplier
           , psbar.last_update_date
           , fu2.user_name last_updated_by_userid
           , fu2.description last_updated_by_name
           , psbar.bank_name
           , psbar.bank_number
           , psbar.bank_branch_name
           , psbar.bank_branch_number
           , psbar.bank_branch_type
           , psbar.bank_account_name
           , psbar.bank_account_number
           , psbar.account_description
           , psbar.account_type
           , psbar.account_holder_name
           , psbar.notes_from_supplier
           , psbar.notes_from_buyer
           , psbar.address_line1
           , psbar.address_line2
           , psbar.address_line3
           , psbar.address_line4
           , psbar.city
           , psbar.county
           , psbar.state
           , psbar.zip
        FROM pos.pos_sup_bank_account_requests psbar
           , applsys.fnd_user fu
           , applsys.fnd_user fu2
           , po.po_vendors pv
       WHERE psbar.created_by = fu.user_id
         AND psbar.last_updated_by = fu2.user_id
         AND psbar.vendor_id = pv.vendor_id
         AND pvsa.purchasing_site_flag = 'Y'
    ORDER BY 1 DESC;
    #       iSUPPLIER APPS.PO_SUPPLIER_USERS_V VIEW
            GENERATES LIST OF iSUPPLIER USERS
            LINKED TO SUPPLIER TABLES
    SELECT   fnd_user.user_name user_name
           , fnd_user.creation_date user_creation_date
           , fnd_user.last_logon_date
           , po_vendors.vendor_name supplier
           , po_vendors.vendor_id supplier_id
              user_parties.person_first_name || ' '
              || user_parties.person_last_name
             ) user_party_full_name
           , user_parties.email_address
        FROM apps.fnd_user
           , apps.hz_parties user_parties
           , apps.hz_parties company_parties
           , apps.po_vendors
           , apps.hz_relationships vendor_relationship
           , apps.hz_relationships employment_relationship
       WHERE fnd_user.person_party_id = user_parties.party_id
         AND employment_relationship.object_id = company_parties.party_id
         AND employment_relationship.subject_id = user_parties.party_id
         AND employment_relationship.relationship_type = 'POS_EMPLOYMENT'
         AND employment_relationship.relationship_code = 'EMPLOYEE_OF'
         AND employment_relationship.start_date <= SYSDATE
         AND employment_relationship.end_date >= SYSDATE
         AND vendor_relationship.object_id = po_vendors.vendor_id
         AND vendor_relationship.subject_id = company_parties.party_id
         AND vendor_relationship.relationship_type = 'POS_VENDOR_PARTY'
         AND vendor_relationship.relationship_code = 'PARTY_OF_VENDOR'
         AND vendor_relationship.start_date <= SYSDATE
         AND vendor_relationship.end_date >= SYSDATE
         AND fnd_user.last_logon_date IS NOT NULL
    ORDER BY 2 DESC;
    #        iSUPPLIER SPECIFIC PROFILES
    SELECT DECODE(
              fpov.level_id
            , 10001, 'Site'
            , 10002, 'Application'
            , 10003, 'Responsibility'
            , 10004, 'User'
            , NULL, 'Not Set'
           ) profile_level
         , mw_level_values.mw_set_against set_against_id
         , fu.description person
         , fpot.user_profile_option_name
         , fpot.description
         , fpo.profile_option_name
         , fpov.profile_option_value
         , fpov.last_update_date
         , fpov.last_updated_by
      FROM applsys.fnd_profile_option_values fpov
         , applsys.fnd_profile_options fpo
         , applsys.fnd_profile_options_tl fpot
         , applsys.fnd_user fu
         -- TABLE BELOW GROUPS ALL DATA INTO A BIG UNION FOR USE LATER ON
         -- ALL RESPS, ALL APPLICATIONS, AND ALL USERS
    ,      (SELECT '10001 0' mw_level_id
                 , 'Set at Site Level' mw_set_against
              FROM DUAL
            UNION
            SELECT '10002 ' || fat.application_id
                 , fat.application_name
              FROM applsys.fnd_application_tl fat
            UNION
            SELECT '10003 ' || frt.responsibility_id
                 , frt.responsibility_name
              FROM applsys.fnd_responsibility_tl frt
            UNION
            SELECT '10004 ' || fu.user_id
                 , fu.user_name
              FROM applsys.fnd_user fu) mw_level_values
    WHERE fpo.profile_option_id = fpov.profile_option_id(+)
       AND fpot.profile_option_name = fpo.profile_option_name
       AND fpov.level_id || ' ' || fpov.level_value = mw_level_values.mw_level_id(+)
       AND mw_level_values.mw_set_against = fu.user_name(+)
       AND fpo.end_date_active IS NULL
    --   AND LOWER(mw_level_values.mw_set_against) LIKE
    --                           '%ccc internet procurement catalog administration%'
    --   AND LOWER(fpov.profile_option_value) LIKE '%gov%'
    --   AND LOWER(fpot.user_profile_option_name) LIKE '%one%time%'
    --   AND fpot.profile_option_name LIKE '%FND_OA_ENABLE_DEFAULTS%'
       AND fpot.user_profile_option_name IN
              ('POS: External Responsibility Flag', 'Apps Servlet Agent'
             , 'Application Framework Agent', 'Applications Servlet Agent'
             , 'Applications JSP Agent', 'Applications Web Agent'
             , 'Default Country', 'Node Trust Level', 'HZ: Generate Party Number'
             , 'Applications Portal Logout', 'GUEST_USER_PWD'
             , 'iSP Default Responsibility For External User'
             , 'POS: Allow Invoice Backdating'
             , 'POS: Default Responsibility for Newly Registered Supplier Users'
             , 'PON: External Application Framework Agent', 'POS: External URL'
             , 'Sourcing Default Responsibility For External User'
             , 'Responsibility Trust Level', 'Default Country'
             , 'GL Set of Books Name', 'Applications Portal Logout');

  • Need to change default email for iCal and Discussions

    I have a dual problem tonight.  my first problem is trying to reset my default email address in iCal to my new email address since we changed ISP.  I have read that I need to change the default in MAIL, but everything there is with my new email address (@Telus).  My old email was (@Shaw).  When I set up a meeting on iCal and send it out to others, the reply email is @shaw and I can't seem to find how to change it to @telus.  No one can reply with confirmation since it is going to a dead letter box.
    However, in trying to find something here on the discussions I noticed that my apple account to log into discussions still has my @shaw address, but for the life of me I can not find the account settings that will let me change my email on my user name/profile.  I won't get a notice of a solution of either of these questions through the automatic reply as it will go to dead email land.  I don't want to have to close this user name and my history and start all over again.  Yet the edit profile only lets me reset my biography information, not my email account.
    Since I won't get a reply automatically, please CC your post here to mrbarth @ telus.net as well.  Thanks,

    On Mac OS X, 10.7.2:  After several days of trying all the suggestions, I went to the Apple store.  It took 2 Geniuses two hours to figure out that invitiations were being sent from the email that I have set as primary with Apple.  It didn't matter that the account wasn't even listed on My Card in Address book nor was it even anywhere in mail preferences.  What mattered was that I had that email as primary.  So, I went to
    https://appleid.apple.com/
    and changed the Primary Email address.  Now all my invites come from that address.
    Supposedly iTunes and everything else will come along...

  • How can I change my default email to my hotmail account, as I do not have gmail, or yahoo?

    I do not have, nor do I wish to have an additional email account. I have an account with hotmail and would like to make it my default email for my browser. Hotmail is not currently one of the options I am given, the options being yahoo or gmail. I could find no place to change this setting or add hotmail.
    Is it possible to add a third option to the two that are given? If so, how?

    Here's the official approach which embeds the change more deeply in Firefox so any feature which wants to send an email can use it.
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the filter box, type or paste '''gecko''' and pause while the list is filtered.
    (3) Double-click '''gecko.handlerService.allowRegisterFromDifferentHost''' to toggle its value from false to true. The line should turn bold.
    (4) In another tab, containing a normal web page, open the Web Console using one of these methods:
    * Ctrl+Shift+k
    * orange Firefox button > Web Developer > Web Console
    * classic Tools menu > Web Developer > Web Console
    A small area should open below the current page.
    (5) Copy the following line of script and paste it next to the ">" at the bottom of the Web Console (it all goes on one long line):
    navigator.registerProtocolHandler('mailto','https://mail.live.com/secure/start?action=compose&to=%s','Live Mail');
    Then press the Enter key to execute it. An infobar should open at the top of the page. Click "Add Application". You now can close the Web Console using any of the same methods you used for opening it.
    ''If instead of an infobar the Web Console displays "Not allowed to register a protocol handler for mailto" then switch to your about:config tab, filter on mailto. If the line is bold and set to false, double-click '''network.protocol-handler.external.mailto''' to toggle its value back to true. Then try this step 5 again.''
    (6) Open the Application preferences dialog using:
    (WIN) orange Firefox button (or Tools menu) > Options > Applications<br>
    (MAC) Firefox > Preferences > Applications<br>
    (LINUX) Edit > Preferences > Applications
    In the search box on that tab, type or paste '''mailto''' and pause while the list is filtered. If you click the drop-down list on the right side, should should now find Live Mail.
    (7) Return to the tab with about:config, if you changed the filter change it back to gecko, and double-click '''gecko.handlerService.allowRegisterFromDifferentHost''' to return its value to false. You can close about:config.
    Okay, you're all set up and ready to test. Success?

  • Newsletter email campaign - Mailling list with non "default" email address

    Hi all.
    We need to implement a newsletter email campaign but, with standard campaign execution, SAP CRM gets the "default" email addressess of BPs.
    We have a malling list of newsletter that contains a list of emails of our Business Partners.
    This mails sholdn't be the standard ones of this BPs. BPs can has many email addressess (more than one) and they can be subscrited with a non default email (email without default flag in SAP CRM).
    When we try to execute a Marketing campaign with these BPs, SAP CRM uses the default mail address to send the campaing.
    Is possible to execute a Mailling campaign setting the email receivers?
    Thanks a lot.

    Hi Mauro.
    We already have tried to use CRM_MKT_ADR_SEARCH Badi. We have implemented CHANGE_SEARCH_RESULTS method but with this it's only possible to choice between diferent Addresses Numbers.
    But, we have the same Addr. Number with more than one email address in ADR6. All this email address are in the same Adrress Number and Person Number.
    About your question, we are storing the newsletter emails into a Z table. This email adresses are already in BP address.
    Thank you for your idea.
    Do you have another way?

  • ICal not using the default email application?!??

    Hello,
    I use Thunderbird as my default (and only) email application. In the preferences of Apple's Mail application, I selected Thunderbird as the default email reader.
    However, when sending email from iCal, it attempts to use Mail, not Thunderbird?!? This happens both when emailing an event and when sending an invite for a published calendar.
    How do I make iCal use Thunderbird for sending mail?
    Tried searching the forum and Apple Support site, but failed to find an answer.
    Thanks,

    I am also now having this issue. I didn't have this problem previously. Other apps (e.g. AddressBook) are using my default mail program, but iCal strongly prefers Mail.app? I am seeing this on my laptop that I don't use as often, but will confirm on my desktop machine tomorrow ...

  • Punchout Catalog-Sending Email value to supplier catalog

    Hi,
    I have configured punchout catalog for one supplier from customizing>>defining external web services in SRM.  We have to send user's email ID to supplier catalog page so that this will be unique value which  will identify user. can anyone please suggest me how to send SAP SRM email value to supplier.
    I could able to send SAP SRM userID to supplier by setting parameter value as "SY-UNAME" and type as sap filed.
    Thanks in advance.
    Regards,
    Satish Aralkar

    Hi,
    Please implement the BADI BBP_CAT_CALL_ENRICH for passing additional parameters.
    Here is IMG description.
    Transfer Additional Parameters
    Use
    With the Business Add-In (BAdI) BBP_CAT_CALL_ENRICH, you can transfer additional parameters to an external Web Service, such as a product catalog or a vendor list.
    The SRM Server always calls the BAdI when an external Web Service is called up. You can modify the BAdI to your requirements, for example, in order to transfer dynamic data that could not be imported via system tables.
    Standard settings
    In the standard the Business Add-In is active. The default coding is carried out automatically. The standard implementation is only run for the business type E-Forms.
    The BAdI is reusable.
    The BAdI provides the following methods:
    CAT_CALL_ENRICH
    Activities
    You can transfer additional name-value pairs to the Web Service:
    1. Create a new BAdI definition (see Implementation).
    2. Add new entries to the internal table
    ct_post_values. The table has the line category SAVWCTXT . Enter a field name and a value for each entry. Do not enter a field index.
    Example
    You wish to order business cards and you want to provide the text for the cards to the vendor (Implementation CL_IM_BBP_BUSINESSCARDS).
    Regards,
    Masa

  • How can I change iCal's default email program for sending alerts?

    Using iCal 1.5.5 with OS 10.3.9.
    I have Thunderbird as my default mail client in my OS.
    When I set iCal to send an alert via email it opens up Apple Mail instead of using Thunderbird which is my OS default.
    Is there a way to change this so iCal will use Thunderbird?
    Thanks, Rob

    I'm not positive on this and am not at my Mac right now, but I could you check if it has to do with the 'system-wide' default email client?
    Follow the steps here to set the system wide email client to be Thunderbird: http://www.mariasguides.com/2007/12/21/changing-mac-os-xs-default-e-mail-applica tion/. I would quit iCal and Thunderbird first (if they are open), open Mail and complete the described steps, then open iCal and try to send an invitation.
    Hopefully it works! If not, then it's not related to the default email client; my suspicion is that it would have to do with Apple simply making iCal to function this way.
    -John

  • I've recently set up microsoft office exchange and would like that to be my default emailer. How do I get firefox to open the exchange and not outlook when I want to click an email link?

    I would like Microsoft exchange to be my default emailer. How do I stop outlook being the default when I click on an email link

    See if this helps you:
    [http://support.mozilla.com/en-US/kb/Changing+the+e-mail+program+used+by+Firefox]

  • When I click on an email link in Firefox, I get a message in the far left corner of my screen that says "mail to:email address". Outlook doesn't open up like it does in Internet Explorer. I've set Outlook as my default email in Windows 7.

    When I click on an email link in Firefox, I get a message in the far left corner of my screen that says "mail to:email address". Outlook doesn't automatically open like it does in Internet Explorer. I've made Outlook my default email in Windows 7.
    == This happened ==
    Every time Firefox opened
    == When I upgraded to Windows 7.

    See this:
    [http://support.mozilla.com/en-US/kb/Changing+the+e-mail+program+used+by+Firefox]

  • Help! I can email when I am in my gmail web world, but cannot get my gmail default email to work.   I have recently disabled my exchange email - and did select gmail as my default.  When I try and use the mail icon, my email doesn't work.  HELP!

    How can I get my default email to work on my iPad?  Gmail in my browser is fine, but I can't send anything if I am not in gmail.  Why is my mail icon not working?

    You probably messed up the password/ server set up.  Delete the account from the pad, and re enter it.  Pay real close attention to the password entry. Upper lower case etc.   if they ask you for an optional name a second time, fill it in.  G mail works fine on mine.

  • I am trying set my email (my old uni one) as the default email on my iPad. It's a microsoft exchange one. How can I do this it asks me what the server is and I have no idea how to find this out? And even if I do will that work?

    An answer to a similar question on this said they (they not specified as to who) needed to enable two things POS or something and I have no idea what that means. Is it even possible to make it my default mail if it's Microsoft exchange?

    If you're simply referring to adding a mail account that uses an IMAP server, the short answer is yes, it will work. What did you mean by default email? You can setup multiple mail accounts so you shouldn't have to worry about a default mail account. To setup additional accounts (or delete for that matter), you can go to Settings>Mail, Contacts, Calendar>Select the Account (Delete) or Add Account.
    What is your mail provider? Often you can contact your IT department, or if it's a common mail server, googling will find the server relatively easily (ie: gmail: 'Google'  'imap server for gmail'). If, by default mail, you mean your Apple ID, yes you can also create an Apple ID that uses an IMAP associated email address. Your Apple ID can pretty much be any email address as long as you have access to it to confirm the account's creation.

  • HT204150 How do I change my default email on the "Me" contact from a Facebook email to my normal email address in the same contact?  Or at least change it for the autofill information?

    How do I change my default email on the "Me" contact from a Facebook email to my normal email address in the same contact?  Or at least change it for the autofill information?
    Perfernece for contact to change.  Do I just have to dis-associate my contact fromt the facebook account?  Is only the autofill changable?

    If you allow Facebook to access your contacts and you have the @facebook.com email alias turned on, it will add the @facebook.com email to your contact info, and because it has the fixed label of "email" it overrides every other email address.
    They didn't fix this in iOS 8.
    There are two ways to remove the @facebook.com email from your contact info:
    If you don't need your Facebook friends and their info updating your contacts, go into iOS Settings -> Facebook and turn off access to Contacts.
    If you don't use your @facebook.com email address (all it does it forward to the primary email address) you can go into the Facebook app, More -> Settings -> General -> Email -> and uncheck "Use your Facebook email". Removing it from Account Emails does not work, you have to turn it off. Once you do this, go to iOS Settings -> Facebook and turn Contacts off and on again to make it update your info. The @facebook.com address should be removed.

  • Mail -- How can I change the default email account from which my messages go, without having to change it each time I draft a message?  It currently assumes an email account that I rarely use. Thanks.

    How can I change the default email account from which my messages go, without having to change it each time I draft a message?  It currently assumes an email account that I rarely use. Thanks.

    sorry, but I can't find the mail preference in the latest Yosemite OS. Do you know where I can find it?
    Thank you
    Don

  • How to set default email address for input

    G'day all
    Summary: I'm sick, it's difficult to type, and a combination of autocorrect, default Shift key settings for input fields and my iPad completely ignoring my default email account is making it laborious to input my email address. Help!
    (Edit: I had a micro-brainwave and checked my "Me" card in Contacts, since I have Safari set to autofill from that card. My default email address is not listed first in the card. I've now put it on top, Gmail second and "me.com" last. I'll comment later on if I see this help with point 3 below.)
    Details:
    I love my shiny new iPad2. I really do. But autocorrect is driving me crrrrrazy when I try to input my email address.
    Typing in general is an issue for me, because I am disabled and have difficulties with coordination and movement. On my laptop (MacBook Pro mid 2009), I used TextExpander. It lets you set an abbreviation for any text, so you can just type that abbreviation instead of the whole thing, and TextExpander automagically inputs the whole thing for you.
    I have a long email address, because my ISP has quite a long domain name. So only typing 4 characters (my abbreviation) instead of the whole 23 characters was a big help for me.
    Enter the iPad.
    I need to use the iPad now, because my laptop is now too heavy for my legs (and I do occasionally need a full-on laptop, so the MacBook Air isn't the solution). The iPad in general has been great for me. The simplification of the interface (while annoying at times, e.g. not being able to view full headers in an email) saves brain cycles, so I can read for longer.
    However, where on my laptop I only needed to input 4 chars for my email address, on my iPad I have to input the whole 23 chars. How many places online are you asked to input your email address? Way too many. Safari may eventually catch up and record some of them, but currrently, I'm using too much of my day's energy just on trying to input my email address. (Note: this post is written on my laptop, so I can use my abbreviations.)
    TextExpander is available for iOS, but due to Apple's current refusal to allow integration with its apps, TextExpander isn't allowed to input stuff directly. Just like with the indispensable password program 1Password, you have to switch from Safari to the other app., search for and select and copy the text you want, then switch back to Safari, select the field and press Paste.
    Grrr.
    I may get desperate enough to go through those steps each time, if things don't improve with my email address. My problems are:
    1. Very few email-address fields in webpages currently have the appropriate settings to instruct the iPad keyboard not to start with the Shift key down. This means every time you try to input your email address, it will start with an upper-case letter.
    Half the time I don't notice until I've got part-way through typing my address, so I have to delete all those chars and start again. About a quarter of the time, after deleting, I don't notice that the Shift key has been activated again, so I go through the whole process again.
    2. Even when the email-address field turns off the Shift key, or when I remember to do it myself before entering text, autocorrect will insist on changing the first letter back to upper-case, because my username is also my first name. Cue more deleting and getting confused.
    3. This is the big one: once my username is up there, autocorrect insists on entering my "me.com" email address. This is the email address I use least. When I laboriously (again) delete this text and start again, it will either insist again on "me.com", or input my Gmail address. That is the email address I use second least. Autocorrect never inputs my main email address, set as my default account in the Mail-Con-Cal Settings. (This is a POP-only account.)
    4. Even if I do manage to input my whole email address correctly, autocorrect will insist on capitalizing the first letter of the domain name (which is also a location). Cue yet more deletion and retyping.
    Are there any ways to avoid wasting so much energy on trying to input my email address?
    Is there any way to set the default input email address? Or to tell the iPad/Safari that an email address field doesn't require the Shift key?
    I've had my iPad for nearly three months now, using it for my day-to-day activities, and I've been hoping this problem would gradually go away, that the software would finally catch on to my main email address (from the default account) which I have input over and over (and OVER) into email-address fields.
    Evidently not.
    Any ideas?
    Thanks in advance for any help you can offer.

    As Roosevelt suggested, you can turn off Auto Correction in the keyboard settings. Go to Settings>General>Keyboard>Auto Correction>Off.
    This will also turn off spell check (unfortunately) and there is no fix for that. Auto Caps can also be turned off as well and so can the keyboard shortcut for the space/period. Frankly, all of these features drive me nuts and I wish the iOS allowed for more control, but it does not.
    As fars as typing your email address, be aware that even if you type your email address in all caps it still works. So if Autofill insists on capitalizing the first letter in your name in the email address - and it will insist on doing so - you can just let it go as is and it will still work. Doesn't really get to the heart of the matter but it would save you the laborious deleting and retyping.
    Having said that, when the Auto Correction suggests a word or wants to set a capital latter, you can tap the "x" in the pop up suggestion to ignore that word, cap, whatever. The dictionary is then supposed to "learn" your word if you refuse that suggested word enough times. This is another feature that seems to have a mind of it's own at times since sometimes it may take more than a few attempts to get the Auto Correct to not come up and instead allow your chosen word to be freely typed as desired.
    Lastly, with regard to your correct email address popping up, that is another case of if repeated time and time again, It should be another case of the iOS "learning" through repetition that your default email should popup when you begin entering the address.
    You could try to rectify all of this by resetting all of your settings and clearing Autofill but you would be starting all over again which is something I think you would rather avoid.
    Settings>General>Reset>Reset All Settings
    Settings>General>Reset>Reset Keyboard Dictionary
    Settings>Safari>Autofill -tap names and passwords>Clear all
    As Roosevelt suggested, submit feedback, and I hope you find some resolution to this.
    Quick Note - I originally typed this post on my iPad and when I read a few of the words that were substituted by auto correct - I quickly turned to my iMac to change the words. I do feel your pain with regard to auto Correct!
    Message was edited by: Demo

Maybe you are looking for

  • Required  Java Code for Validation

    Hello Everybody I need a java Code  To validate the  value exist in  system For an user Defined Function.                         System A value Need to Compare in System B.                           IF the value exist in System B Then need to sent t

  • ISE password reminder email

      We are evaluating ISE and I have set up an admin account to use to login. Password policy is set to 60 days, however I have been getting Password reminder notices every day since the first week it was set up.  I've looked all over and I don't see w

  • Update license assigned documents when a position in rejected

    Hi, we have a license that belongs to a customer and have some assigned documents. In one of this documents we have rejected some positions (not deleted) but the license doesn't update these positions, so the licensed has exceeded the maximun quantit

  • S order table

    HI, Please give me the link of  t-code of sales order table no & item table no. Thanks, Rajesh.

  • Dreamweaver CS5 and xampp problem

    Hi folks, i had cs5 trial installed on my last laptop running vista 32bit with xampp, i could edit wordpress files no problem, but i just got a new laptop now running windows 7 64bit, i installed cs5 trial fine and xampp. I just went to edit wordpres