Change to change user email from long format to short format

Hi, folks:
I created a new administrator (Preference) and type in an email address. However, there is no place to specify long or short format. I browse the MGMT_NOTIFY_DEVICES table and the TYPE is 1. Right now, I manually changed it to 5 in the table to have short format. Is there anywhere on grid control I can changed it on-line.

You have two questions
- Login your GC with sysman and change in preferences the long format for shor format. This option is possible if you edit the emoms.properties file in the sysman\config directory of your oms machine
- your other user
have notification rules of himself or he suscribe to sysman rules
In the second option you must change the sysman options.
In the first option you must change your preferences for this user
If the situation is combination of both, change the preferences in all the administrator users
Regards

Similar Messages

  • How can I change the email from my app store an use a different email forgot password

    How can I change the email from my app store an use another email

    Hi there,
    You may find the article below helpful.
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/HT1311
    -Griff W.

  • How to change user password from default realm programaticaly

    Hello,
    I would like to know if there are any ways to change a users password from a file
    realm through java classes ie . programaticaly.

    Thank you for the support.
    After looking at the code, I noticed RealmManager is not documented in the BEA
    Javadocs. Am I missing something or is it not documented. Lot of other methods
    also not documented. Do you have the latest Javadocs?
    Thanks
    John
    "Tom Moreau" <[email protected]> wrote:
    >
    See message #4589 - it posts the code magic needed
    to change the password. The caller doesn't have to
    be aware of which realm is being used - that's taken
    care of for you.
    -Tom
    "John M" <[email protected]> wrote:
    Hello,
    I would like to know if there are any ways to change a users passwordfrom
    a file
    realm through java classes ie . programaticaly.

  • Need help to change user email id in table ADR6

    Hi,
    i want to update user email id in table adr6. i hv written following code but not working to change email in table adr6.
          DATA lo_nd_email TYPE REF TO if_wd_context_node.
          DATA lo_el_email TYPE REF TO if_wd_context_element.
          DATA ls_email TYPE wd_this->element_email.
          DATA lv_mail_id LIKE ls_email-mail_id.
        navigate from <CONTEXT> to <EMAIL> via lead selection
          lo_nd_email = wd_context->get_child_node( name = wd_this->wdctx_email ).
        get element via lead selection
          lo_el_email = lo_nd_email->get_element(  ).
        get single attribute
          lo_el_email->get_attribute(
            EXPORTING
              name =  `MAIL_ID`
            IMPORTING
              value = lv_mail_id ).
          DATA:lv_bname TYPE BAPIBNAME-BAPIBNAME.
          DATA:lt_return TYPE TABLE OF bapiret2.
          DATA:PER_NO TYPE AD_PERSNUM,
               ADDR_NO TYPE ADRC-ADDRNUMBER."AD_ADDRNUM.
          DATA:SEARCH TYPE REF TO IF_WD_CONTEXT_NODE.
          SEARCH = WD_CONTEXT->GET_CHILD_NODE( 'USER' ).
          SEARCH->GET_ATTRIBUTE( EXPORTING NAME = 'BNAME'
               IMPORTING VALUE =  lv_bname ).
          DATA:wa_address TYPE bapiaddr3.
          DATA : CONS_NO TYPE AD_CONSNUM.
        IF lv_mail_id IS INITIAL.
              get message manager
              DATA lo_api_controller TYPE REF TO if_wd_controller.
              DATA lo_message_manager TYPE REF TO if_wd_message_manager.
              lo_api_controller ?= wd_this->wd_get_api( ).
              CALL METHOD lo_api_controller->get_message_manager
                RECEIVING
                  message_manager = lo_message_manager.
              report message
              CALL METHOD lo_message_manager->report_error_message
                EXPORTING
                  message_text  = 'Please Enter Email Id'.
        ENDIF.
       DATA:l_addr type addr_keynr.
       DATA:C_YES(1).
            CLEAR:C_YES.
            C_YES = 'X'.
       TYPES: ty_comm_smtp TYPE  adsmtp ,             
            ty_returncode TYPE SZAD_FIELD-RETURNCODE,
            ty_error TYPE ADDR_ERROR,
            adsuse TYPE ADSUSE.
        DATA:EMAIL_ID TYPE AD_SMTPADR,
             lt_comm_smtp TYPE STANDARD TABLE OF ty_comm_smtp,    """"Data Object
             lv_returncode TYPE STANDARD TABLE OF ty_returncode,
             error_table TYPE STANDARD TABLE OF ty_error,
             lt_adsuse  TYPE STANDARD TABLE OF adsuse.
        data:ls_comm_smtp like LINE OF lt_comm_smtp,
             ls_returncode like LINE OF lv_returncode .
        CALL FUNCTION  'SUSR_USER_ADDRESSKEY_GET'
          EXPORTING  BNAME    = lv_bname
          IMPORTING  PERSNUMBER    = l_addr-persnumber
                     ADDRNUMBER    = l_addr-addrnumber
               EXCEPTIONS ADDRESS_NOT_FOUND = 1
                          OTHERS            = 2.
      IF SY-SUBRC = 0.
        REFRESH: lt_comm_smtp.
          CALL FUNCTION 'ADDR_PERS_COMP_COMM_GET'
               EXPORTING
                    address_handle    = ''
                    address_number    = l_addr-addrnumber
                    person_handle     = ''
                    person_number     = l_addr-persnumber
                    DATE_FROM         = '00010101'
                  LANGUAGE          = SY-LANGU
                    table_type        = 'ADSMTP'
                    iv_current_state  = space                       "*981i
               IMPORTING
                    returncode        = ls_returncode
               TABLES
                    comm_table        = lt_comm_smtp
                    error_table       = error_table
                    et_usage          = lt_adsuse                   "*981i
               EXCEPTIONS
                    parameter_error   = 1
                    address_not_exist = 2
                    person_not_exist  = 3
                    internal_error    = 4
                    OTHERS            = 99.
          IF sy-subrc <> 0.
            IF sy-subrc = 1 OR sy-subrc = 2 OR sy-subrc = 3.
             raise_message 'AM' 'A' 885 'ADDR_PERS_COMP_COMM_GET' space
             space space internal_error.
            ELSE.
             same_message_dia_a internal_error.
            ENDIF.
          ENDIF.
      ENDIF.
        CLEAR:ls_comm_smtp, email_id.
        READ TABLE lt_comm_smtp INTO ls_comm_smtp INDEX 1.
        EMAIL_ID = ls_comm_smtp-smtp_addr.    """""""OLD EMAIL ID which we get from ADDR_PERS_COMP_COMM_GET
        CONS_NO = ls_comm_smtp-CONSNUMBER.
        CLEAR:ls_comm_smtp.
        ls_comm_smtp-CONSNUMBER = CONS_NO.
        ls_comm_smtp-FLGDEFAULT = 'X'.
        ls_comm_smtp-HOME_FLAG = 'X'.
        ls_comm_smtp-UPDATEFLAG = 'U'.
        ls_comm_smtp-smtp_addr = lv_mail_id.
        TRANSLATE email_id TO UPPER CASE.
        ls_comm_smtp-smtp_srch = email_id.
        REFRESH :lt_comm_smtp.
         append ls_comm_smtp to lt_comm_smtp.
      IF SY-SUBRC = 0.
        CALL FUNCTION 'ADDR_PERS_COMP_COMM_MAINTAIN'
             EXPORTING
                  address_handle    = ' '
                  address_number    = l_addr-addrnumber
                  person_handle     = ' '
                  person_number     = l_addr-persnumber
                  table_type        = 'ADSMTP'
                  iv_time_dependence = C_YES                   "*981i
            IMPORTING
                 returncode        =  ls_returncode
            TABLES
                 comm_table        =  lt_comm_smtp
                 error_table       =  error_table
            EXCEPTIONS
                 parameter_error   = 1
                 address_not_exist = 2
                 person_not_exist  = 3
                 internal_error    = 4
                 OTHERS            = 99.
          IF sy-subrc <> 0.
            EXIT.
          ENDIF.
      ENDIF.
      IF sy-subrc = 0.
          COMMIT WORK.
      ENDIF.
    i hv also tried second approch available on sdn CALL FUNCTION 'ADDR_COMM_MAINTAIN'. but in this fm person number we can't pass.
    please help me

    Hi Abhilesh,
    You can use the following FM's to update the Email ID. There are many posts ADDR* FM using for updating Email ID.  Please have a look if you have a doubt.
    DATA: iadsmtp TYPE adsmtp    OCCURS 0 WITH HEADER LINE.
    "Retrieving Address Details
    CALL FUNCTION 'ADDR_COMM_GET'
          EXPORTING
            address_number =  addrnr
            table_type     = 'ADSMTP'
          TABLES
            comm_table     = iadsmtp
          EXCEPTIONS
            OTHERS         = 0.
    READ TABLE iadsmtp index 1.
    if sy-subrc is initial.
    iadsmtp-SMTP_ADDR = 'new mail ID'.  " Here pass your New Email ID
    Modify iadsmtp.
    Endif.
      CALL FUNCTION 'ADDR_COMM_MAINTAIN'
          EXPORTING
            address_number           = addrnr
            table_type               = 'ADSMTP'
            substitute_all_comm_data = 'X'
          TABLES
            comm_table               = iadsmtp
          EXCEPTIONS
            OTHERS                   = 0.
    Then call FM 'ADDR_SINGLE_SAVE'  to do the Commit.

  • How can I change how email "from" and "to" are being handled by Groupware?

    When a follow-up business activity (e.g. sales visit) is created in CRM and assigned to another by the "person responsible" field, it triggers the following action in Outlook:
    u2022 Outlook recognizes that "created by" and "person responsible" are different
    u2022 This recognition triggers sending an email invitation for an appointment
    u2022Groupware presents / Outllok reads the "person responsible" to populate "from" Email field and "created by" to populate "to" Email field
    u2022Outlook Email invitation is received by creator of the assigned follow-up (confusing the user since they are naturally thinking that the person they made responsible for the follow-up would need to accept the assignment)
    How can I change how the email "from" and "to" are being handled by Groupware/Outlook ... in standard functionality?  ... In custom work?
    Edited by: Daniel A. Joseph on Jul 24, 2008 4:00 PM

    Welcome to the Apple Community.
    If you have a @me.com address, you can change the address you use to send email from using the drop down box in the from field in your email.

  • Changing outgoing email from ipad

    I just bought an ipad for my dad. I sent out a test message to my mom's iphone and my email address shows up. How do i change that? I dont want him to text people using the ipad with my email showing up.

    You can set up MobileMe to use any email address as a 'push' email on the iPhone. The first thing you need to do is set your non-MobileMe (.Mac) email address for auto-forward to your MobileMe (.Mac) account.
    When you create the email account, make sure you set it up as Other (not as a .Mac or MobileMe account.) Then select IMAP as the type of account. Enter the name and auto-forwarded email address. (This is the email address that will show as the "From" email, even though you're using your MobileMe account.)
    For your mail server settings, use your MobileMe settings:
    * Incoming settings:
    o Host Name: mail.mac.com
    o User Name: MobileMe user name
    o Password: MobileMe password
    * Outgoing Settings:
    o Host Name: smtp.mac.com
    o User Name: MobileMe user name
    o Password: MobileMe password
    * Advanced:
    o Use SSL - On
    o Authentication - Password
    o Server Port - 587
    Now you're able to receive 'push' email from your non-MobileMe account, and reply without using the @me.com address. (You can use those same settings in the Mail App as well.)

  • I cannot change send emails from iOS5

    Hi all,
    I have an old "mac.com" userID Apple and I made a new "me.com" email address that I use on iCloud.
    Everything works fine, except on my iPhone 4. I cannot send email from my me.com address from the phone.
    I found out that in "Preferences>iCloud>Account" my email is the mac.com userID and not the me.com email address.
    I think the phone tries to send emails using "mac.com" account, therefore the SMTP doesn't match.
    I checked on the iCloud Account Informations on my preference pane of my iPhone and the "mac.com" email address in written in light grey, which means that I am not able to change it.
    Any suggestions?
    Thank you
    G.S.

    Hello,
    Who is your eMail provider, the part after the @ sign?
    In Mail's Window Menu, choose Connection Doctor, any red dots for status, if so what is the message?
    Then click the Show Details button & Check again.

  • How to change the email from the iCloud account info?

    HOw to change the email set in the iCloud account info? My Apple ID is different from my icloud account I like to keep same email for both.
    please help with the steps.
    thanks

    You can change the non-Apple address which forms your ID to another non-Apple address at http://appleid.apple.com . However you cannot make your @icloud.com address into your ID address.

  • How can I change my email from update

    I change my email thought everything. But now my apps need to be update I can't cause it's show my old email every time I want to update the apps

    If you updated your existing account then try logging out of it on the iPad by tapping on the id in Settings > Store (Settings > iTunes & App Stores on iOS 6) and then log back in and see if that 'refreshes' the account on the iPad.
    If you created a new account then any content that you purchased/downloaded via the old account will remain tied to that old account, and only that old account can download updates to its apps.

  • Yahoo Home page - change to original from optimized format.

    With the recent upgrade to 17.01 my Yahoo Home page has changed to the "yahoo optimized?" format. It is so awful, that I am considering changing default browsers!! How do I get rid of it and just use the standard Yahoo format? I clear the cache upon closing and cookies. I suppose I could also clear the flash cookies (have the Yahoo one not being deleted - most others are also cleared upon closing.) Any suggestions?

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • Programmatically Changing User Email Addresses

    Currently I cant change email address for a user.
    I've moved onto group memberships but if I cant sort this out,
    I'll need to delete the user and recreate each time.
    // Create a hashtable to store options that can be set
    for the new user.
    Hashtable userOptions = new Hashtable();
    userOptions.put(UserManager.HAS_EMAIL , new Boolean
    (true));
    if (aEmail != null)
    userOptions.put(UserManager.EMAIL_ADDRESS, aEmail);
    //Create the user.
    try{
    dUser = usermanager.createUser(aUserid,password,
    userOptions);
    System.out.println("New User Created : " + dUser.getName
    System.out.println(" DistinguishedName = " +
    dUser.getDistinguishedName());
    }catch (IfsException e){
    //create user failed so look up existing user and
    modify it.
    //Fetch the DirectoryUser instance to be deleted.
    duColl = mSession.getDirectoryUserCollection();
    dUser = (DirectoryUser) duColl.getItems(aUserid);
    //dUser.setAdminEnabled(false);
    /**@todo make this work!!!!!! */
    dUser.putProperty
    (UserManager.EMAIL_ADDRESS,AttributeValue.newAttributeValue
    (aEmail));
    System.out.println("Email::"+dUser.getAttribute
    (UserManager.EMAIL_ADDRESS));
         // try to change email though the pup
    PrimaryUserProfile pup=dUser.getPrimaryUserProfile();
    pup.putProperty(UserManager.EMAIL_ADDRESS,
    AttributeValue.newAttributeValue(aEmail));
    System.out.println(UserManager.EMAIL_ADDRESS);
    System.out.println(AttributeValue.newAttributeValue
    ("Modified user : ") + dUser.getName());
    Any ideas?

    Check the table HZ_PARTIES.

  • How do i change iPhoto email from icloud my to aol account?

    When I click "share" to use email for sending a photo from my MacBook Pro....it automatically use my iCloud acct but it won't go though after I clicked "send" so how do I change it to my AOL account?? Or resolve this situation to why it won't send with iCloud acct??? Please help! Thank you for your response in advance!

    iPhoto > Preferences > Accounts

  • Change user account from mac to mac

    Witch steps are required for copy the iTunes Account from the old Mac mini to the new Mac Book Pro?  The old Mac mini it isn't in operation. I need only the iTunes Account for the iPhone, Music and ohters.

    Unfortunately the 'require password change at next login' option is badly phrased and unsuitable for you.  If this checkbox is set, the only thing the user can do with their account is log into it on a Mac using a standard Mac login screen.  Logging in in this way will automatically trigger the 'enter your new password' dialog.  Attempts to use the account with other services will lead to an error message like 'account disabled' or 'no such username/pasword'.
    Since your users are not using Macs to log in, this option is useless to you.
    You can allow your users to change their passwords remotely, no matter whether they're using Macs or Windows or iPads, by enabling the 'change password' option which, I think, is part of the wiki service.  This gives you a web-facing 'change password' page which can be used from any web browser.  However, even this option will not work if you set the 'require password change at next login' option.  No, it makes no sense to me either.

  • Change user role from "Publisher" to "Administrator"

    Have three users on a particular website - all need to be
    "administrators".
    Two are listed as administrators (one of which is me), the
    third is listed as a "publisher".
    How can I simply change this person to be an
    administrator?

    Create a new connection key with the role of administrtaor
    and send this to your publisher. He/she will replace the old
    connection with the new one, and you can delete the user from the
    publishers roles.

  • I can't change default email from microsoft outlook to aol - have followed the directions to the t

    i am using a different computer...my old one would always go right to aol when i wanted to send a link - this one goes to outlook and i can't seem to get it changed no matter what i do.

    Login to your webmail (http://yourwebmailaddress) and if you don't know it ask your IT department for it, this is different from loging into outlook, then go to options(upright corener) and click on Mobile Devices, select the device you see there and delete, wait a couplke of minutes then try setting up the E-mail on your phone, if that does not work then ask your IT to make sure you webmail account is not locked since this is how it get sync'd up with your iPhone.

Maybe you are looking for

  • Weird error message when trying to use migration assistant?

    We gave my mom a Macbook Pro for Mother's Day. While trying to set it up for her using migration assistant pc to mac, her Dell kept coming up with an error message saying msidcrl40.dll is missing?? What the heck does that even mean? Needless to say m

  • Oracle databse control console with Oracle EBS R12.1.1

    Hello, Can we configure Oracle database control EM console through <ORACLE_HOME>/bin/emca for dbtier of Oracle E-business Suite R12.1.1. We have database version "Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production".

  • Why cannot i see my payment information on my itunes account?

    I am unable to find 'payment information' anywhere on my account.  I need to change my credit card for purchases, but I just cannot locate it.

  • The MP Role, how many do you need?

    On a previous post I was told that the MP role is random and your CM2012 clients can use any MP they find at random.    If that is the case is the following scenarios fine to use? We have 1 CM2012 server that is a MP (plus many other roles) We have 6

  • Issues with 'Structure Refresh'  of OLAP Universe!

    I have a report based on .unv which in turn is based on a BEx query.  I need to update the universe to retrieve objects I recently added to my Bex      query.   I am facing the following issues while refreshing the universe structure through Universe