Smartform-Want to change addtext to password protected form

Hi Experts,
There is one customized smartform.Want to change/add new text to page but its showing message 'The document is password protected.
Special restriction in effect.You may only insert comment to this region.' and not allowing me to change text.
Please suggest the steps to chenge the text.Its very orgent so please reply soon.
Thanks,
Subhashree.

Hi,
You have entered the smartform in display mode.
Just come out of smatform and enter into from 'SAP Smart Forms: Initial Screen' in change mode by clicking on Change button.
Regards,
Dep

Similar Messages

  • HT201355 His there I want to change my iTunes password because I forgot it how do I go about this?? HELP!!

    His there I want to change my iTunes password because I forgot it how do I go about this?? HELP!!

    Reset your Apple ID password
    https://support.apple.com/en-us/HT201487

  • Convert SmartForm into PDF(PDF should be password protected)

    Hi Friends,
                  This is my requirement.
    Need to convert SmartForm into PDF and this PDF should be send as an email with attachment and PDF should be password protected.
    Can anyone plz help me???

    Dear Jena,
                   This is my code.
       CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname = 'ZBIN_SMARTFORM'
        IMPORTING
          fm_name  = v_fm.
    *&   ASSIGNING VALUES TO FORM CONTROL STRUCTURE AND FORM COMPOSER
      gs_ctrlop-getotf = 'X'.
      gs_ctrlop-device = 'PRINTER'.
      gs_ctrlop-preview = ' '.
      gs_ctrlop-no_dialog = 'X'.
      gs_outopt-tddest = 'LOCL'.
    *                   GETTING THE OTF DATA
      CALL FUNCTION v_fm
        EXPORTING
    *     ARCHIVE_INDEX        =
    *     ARCHIVE_INDEX_TAB    =
    *     ARCHIVE_PARAMETERS   =
          control_parameters   = gs_ctrlop
    *     MAIL_APPL_OBJ        =
    *     MAIL_RECIPIENT       =
    *     MAIL_SENDER          =
          output_options       = gs_outopt
          user_settings        = ' '
          wa_lfa1              = wa_lfa1
          wa_t001              = wa_t001
          wa_ekko              = wa_ekko
          wa_adrc              = wa_adrc
        IMPORTING
    *     DOCUMENT_OUTPUT_INFO =
          job_output_info      = gs_otfdata
    *     JOB_OUTPUT_OPTIONS   =
        TABLES
          it_ekpo              = it_ekpo
        EXCEPTIONS
          formatting_error     = 1
          internal_error       = 2
          send_error           = 3
          user_canceled        = 4
          OTHERS               = 5.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    *        ASSIGNING THE OTFDATA TO OTF STRUCTURE TABLE
      CLEAR gt_otf.
      gt_otf[] = gs_otfdata-otfdata[].
    *                   CONVERTING THE OTFDATA
      CLEAR gt_lines.
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format                = 'PDF'
          max_linewidth         = 132
    *     ARCHIVE_INDEX         = ' '
    *     COPYNUMBER            = 0
    *     ASCII_BIDI_VIS2LOG    = ' '
    *     PDF_DELETE_OTFTAB     = ' '
    *     PDF_USERNAME          = ' '
    *     PDF_PREVIEW           = ' '
    *     USE_CASCADING         = ' '
        IMPORTING
          bin_filesize          = bin_file
    *     bin_file              = bin_file
        TABLES
          otf                   = gt_otf
          lines                 = gt_lines
        EXCEPTIONS
          err_max_linewidth     = 1
          err_format            = 2
          err_conv_not_possible = 3
          err_bad_otf           = 4
          OTHERS                = 5.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      DATA l_file TYPE string  .
      CONCATENATE  'D:\usr\sap\CID\DVEBMGS00\work' '.PDF' INTO l_file.
      OPEN DATASET l_file FOR OUTPUT IN BINARY MODE  .
      IF  sy-subrc = 0 .
        LOOP AT gt_lines INTO gs_lines .
          TRANSFER gs_lines TO l_file .
        ENDLOOP.
        CLOSE DATASET l_file .
      ELSE.
        WRITE : / 'operating system could not open file' .
      ENDIF.
    *      ASSIGNING THE DESCRIPTION OF THE OBJECT SENT IN MAIL
      CLEAR gs_docdata.
      gs_docdata-obj_name = gc_tst.
      gs_docdata-obj_descr = gc_testing.
      gs_docdata-obj_langu = sy-langu.
    *        ASSIGNING THE EMAIL-ID TO STRUCTURE OF API RECIPIENT LIST TABLE
      CLEAR : gt_reclist,gs_reclist.
    ***IF INTERNAL MAIL-ID
    *  gs_reclist-receiver = sy-uname.
    *  gs_reclist-rec_type = 'B'.
    ***IF EXTERNAL MAIL-ID
      gs_reclist-receiver = '[email protected]'.
      gs_reclist-rec_type = 'U'.
      APPEND gs_reclist TO gt_reclist.
    *     PASSING THE SAP SCRIPT LINES TO SAP OFFICE
      CLEAR : gs_objbin,gs_lines.
      LOOP AT gt_lines INTO gs_lines.
        gv_pos = 255 - gv_len.
        IF gv_pos > 134.
          gv_pos = 134.
        ENDIF.
        gs_objbin+gv_len = gs_lines(gv_pos).
        gv_len = gv_len + gv_pos.
        IF gv_len = 255.
          APPEND gs_objbin TO gt_objbin.
          CLEAR : gs_objbin,gv_len.
          IF gv_pos < 134.
            gs_objbin = gs_lines+gv_pos.
            gv_len = 134 - gv_pos.
          ENDIF.
        ENDIF.
      ENDLOOP.
      IF gv_len > 0.
        APPEND gs_objbin TO gt_objbin.
      ENDIF.
    *           FILLING THE DETAILS IN SAP OFFICE
      DESCRIBE TABLE gt_objbin LINES gv_tab_lines.
      CLEAR gs_objbin.
      READ TABLE gt_objbin INTO gs_objbin INDEX gv_tab_lines.
      IF sy-subrc = 0.
        gs_objpack-doc_size = ( gv_tab_lines - 1 ) * 255 + strlen( gs_objbin ).
        gs_objpack-transf_bin = 'X'.
        gs_objpack-head_start = 1.
        gs_objpack-head_num = 0.
        gs_objpack-body_start = 1.
        gs_objpack-body_num = gv_tab_lines.
        gs_objpack-doc_type = 'PDF'.
        gs_objpack-obj_name = 'ATTACHMENT'.
        gs_objpack-obj_descr = 'TEST'.
        APPEND gs_objpack TO gt_objpack.
      ENDIF.
      DATA: BEGIN OF command_list OCCURS 0.
              INCLUDE STRUCTURE sxpgcolist.
      DATA: END OF command_list .
      DATA: BEGIN OF exec_protocol OCCURS 0.
              INCLUDE STRUCTURE btcxpm.
      DATA: END OF exec_protocol.
      DATA: status LIKE btcxp3-exitstat,
       commandname LIKE sxpgcolist-name VALUE 'ZB_TEST',
        sel_no LIKE sy-tabix.
    * GET LIST OF EXTERNAL COMMANDS
      CALL FUNCTION 'SXPG_COMMAND_LIST_GET'
        EXPORTING
          commandname     = commandname
          operatingsystem = sy-opsys
        TABLES
          command_list    = command_list
        EXCEPTIONS
          OTHERS          = 1.
      CALL FUNCTION 'SXPG_COMMAND_CHECK'
        EXPORTING
          commandname                = command_list-name
          operatingsystem            = sy-opsys
        EXCEPTIONS
          no_permission              = 1
          command_not_found          = 2
          parameters_too_long        = 3
          security_risk              = 4
          wrong_check_call_interface = 5
          x_error                    = 6
          too_many_parameters        = 7
          parameter_expected         = 8
          illegal_command            = 9
          communication_failure      = 10
          system_failure             = 11
          OTHERS                     = 12.
      CLEAR command_list.
      REFRESH command_list.
      DATA: v_dir_input      TYPE sxpgcolist-parameters.
      DATA: v_dir_input1      TYPE sxpgcolist-parameters.
      command_list-name = 'ZB_TEST'.
      command_list-opsystem = 'Windows NT'.
      DATA : doc  TYPE string.
      DATA : pass TYPE string ,
            name(40).
      doc = 'invoice'.
      pass = '123456'.
      CONCATENATE   'cnd/c d:\pdf\encryptpdf.exe' doc'.PDF' INTO name.
      CONCATENATE 'cmd /c d:\pdf\encryptpdf.exe' '-i'  name  '-o ' name  '-u'  pass INTO v_dir_input SEPARATED BY space .
      READ TABLE command_list INDEX sel_no.
      CONCATENATE command_list-opcommand v_dir_input INTO command_list-opcommand SEPARATED BY space.
    * CHECK AUTHORIZATION
      command_list-addpar = 'X'.
      APPEND command_list.
      CONSTANTS: c_extcom    TYPE sxpgcolist-name VALUE 'ZB_TEST',
       c_oper      TYPE syopsys VALUE 'Windows NT'.
      DATA: t_result         TYPE STANDARD TABLE OF btcxpm.
      v_dir_input  =  command_list-opcommand.
      CALL FUNCTION 'SXPG_COMMAND_EXECUTE'
        EXPORTING
          commandname                   = c_extcom
          additional_parameters         = v_dir_input
          operatingsystem               = c_oper
        TABLES
          exec_protocol                 = t_result
        EXCEPTIONS
          no_permission                 = 1
          command_not_found             = 2
          parameters_too_long           = 3
          security_risk                 = 4
          wrong_check_call_interface    = 5
          program_start_error           = 6
          program_termination_error     = 7
          x_error                       = 8
          parameter_expected            = 9
          too_many_parameters           = 10
          illegal_command               = 11
          wrong_asynchronous_parameters = 12
          cant_enq_tbtco_entry          = 13
          jobcount_generation_error     = 14
          OTHERS                        = 15.
      OPEN DATASET l_file FOR INPUT IN BINARY MODE.
      IF sy-subrc = 0.
        READ DATASET l_file INTO itab_attach.
        CLOSE DATASET l_file.
      ENDIF.
      CALL METHOD cl_bcs_convert=>xstring_to_solix
        EXPORTING
          iv_xstring = itab_attach
        RECEIVING
          et_solix   = t_attachment.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data                    = gs_docdata
       PUT_IN_OUTBOX                    = 'X'
       COMMIT_WORK                      = 'X'
    * IMPORTING
    *   SENT_TO_ALL                      =
    *   NEW_OBJECT_ID                    =
        TABLES
          packing_list                     = gt_objpack
    *   OBJECT_HEADER                    =
       CONTENTS_BIN                     = gt_objbin
    *   CONTENTS_TXT                     =
       CONTENTS_HEX                     = t_attachment
    *   OBJECT_PARA                      =
    *   OBJECT_PARB                      =
          receivers                        = gt_reclist
    * EXCEPTIONS
    *   TOO_MANY_RECEIVERS               = 1
    *   DOCUMENT_NOT_SENT                = 2
    *   DOCUMENT_TYPE_NOT_EXIST          = 3
    *   OPERATION_NO_AUTHORIZATION       = 4
    *   PARAMETER_ERROR                  = 5
    *   X_ERROR                          = 6
    *   ENQUEUE_ERROR                    = 7
    *   OTHERS                           = 8
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
           WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
        WRITE 'SENT SUCCESSFULLY'.
      ENDIF.
      SUBMIT rsconn01 WITH mode EQ 'INT' AND RETURN.
    The mail is sent to inbox successfully,but when am opening the attachment am getting the below error as,
    ---> There was an error while opening this file.The file is damaged and couldnt be repaired.

  • HT1689 i just changed my Apple ID.  Does this automatically change my password for ITunes?  THat is my overall goal.  I want to change me ITunes Password.

    I just changed my Apple ID.  Does this automatically change all previous passwords associated with Apple products?

    Changing your account id doesn't change your password. If you want to change your password then you can log into your account on your computer's iTunes via the Store > View Account menu option, or you can change it by logging into http://appleid.apple.com

  • Want to change My "Super" Password

    I want to change my File Vault password. I thought it was the password I use to authorize software downloads, change settings, etc. When I try and use it, I am told it's the "Incorrect" password. If I try to do anything on my MAC, it works, so what am I doingf wrong?

    About FileVault
    You can prevent others from seeing or copying your files by using FileVault to encrypt the files in your home folder. FileVault creates a separate volume for your home folder and encrypts the contents of it. The data in your home folder is encoded and your information is secure if your computer is lost or stolen. FileVault uses the latest government-approved encryption standard, the Advanced Encryption Standard with 128-bit keys (AES-128).
    When you turn on FileVault, you also set a master password for the computer that you or an administrator can use if you forget your regular login password.
    WARNING: Don’t forget your master password. If you turn on FileVault and then forget both your login password and your master password, you won’t be able to log in to your account, and your files and settings will be lost forever.
    If you store sensitive information on your computer, you should consider using FileVault. For example, if you carry all your company’s financial data on your portable computer, losing it could allow someone to access sensitive data that might hurt your business. If you are logged out of your account when your computer is lost and FileVault is turned on, your information is safe.
    Because your home folder is encrypted, some tasks that normally access your home folder may be prevented. If you’re not logged in to your computer, other users won’t have access to shared folders in your home folder. Also, some automations or scripts that require data stored in you home folder may not run.
    For example, backup utilities may see your home folder as one that’s always changing, and this could slow down your backup.
    Kj

  • SMARTFORMS - want to Change Editor - For 'Code'

    Dear Friends,
    I can work on Report & Screen efficiently.
    But, I learned Smartforms as Trial & Error - also developed a few.
    For Smartforms - In 'Code' - I have to write no. of lines ( a lengthy code).
    Is it possible u2013 to change the editor (like u2018textu2019) or display the Code in full page.
    Thanking you in anticipation
    Regards,
    Ashlesha

    HI,
    If you want to change the code of smartform, Open the smartform and go to Global Definitions -> then click on initialization tab. Click on pencil button to change it to write mode.
    Alternatively,
    After activating the Smartform, Go to Menu -> Environment -> Function Module Name ->Click.
    Copy the name of the FM including slash. open SE37 and paste the FM name to display the source code of the Smartforms.
    Hope it will help you.
    Thanks & Regards
    Rocky Agarwal

  • HT5569 Is there a way to store a wi-fi password on an iPad and then copy and paste it into the proper space when you want to connect to your password protected network?  (the password is 31 random characters)

    Is there a way to store a wi-fi password on an ipad and then copy and paste it into the proper space when you want to connect to your password proctected newwor?  (the password is 31 random characters)

    Yes, if both the Mac and iPad are setup using the same iCloud account, then any notes you enter on the Mac will be synced across to the iPad almost instantly.
    Same occurs with the 1Password app I mentioned. If you have both the Mac and iPad versions of it, and setup either iCloud or Dropbox syncing, any passwords entered on the Mac will be synced to the app running on the iPad ready for copying and pasting. This would be the most secure method, but not the cheapest.

  • Distributing a password protected form

    I need to password protect the form I created in live cycle and also need to distribute it so that the users can fill and save the form using Adobe XI...any suggestions.  The user must be able to save a copy while also having the document signed....

    You need to tell Firefox to remember your usernames and passwords. Select Tools > Options > Security. Ensure that "Remember passwords for sites" is checked. For more information, read this article: [http://support.mozilla.com/en-US/kb/Passwords Remembering Passwords]. After changing the settings, if Firefox is still not remembering your usernames/passwords, check [http://support.mozilla.com/en-US/kb/Username%20and%20password%20not%20remembered here].

  • Password-protected form autocompletion was available on PC, not on MAC?

    I just switched from PC to iMAC. I was able to autofill password-protected standard info into forms on the PC. I think this was a Firefox function. Is this supported for the MAC?

    *Autofill Forms: https://addons.mozilla.org/firefox/addon/4775

  • Password Protecting Forms on LiveCycle

    Hello,
    I have a form that will be used by multiple users. These users will fill in data, then submit a pdf via email. I need these pdf's to be password protected with a specific password for each report, but not a random generated one...they will enter the information that will be included in the password, on the form.
    So, preferably, I would like them to be able to enter information into fields, then click a submit button. This would start a process of using information in the fields to create the password. Is this possible?
    If not, the second option would be to have the users manually type in the password each time they submit...I do not know how to accomplish this either.
    Thank you for any help.
    Regards,
    Brett

    Also, I would like the name of the file to be customly created, prefereably via fields in the form.
    Thanks Again

  • I wanted to change my icloud password

    i would like to change the password bbut i have no longer remember the security Q's ans. nor do i have acess to the alternative email
    i tried many times to change my primary e-mail but i dont why my icloud account loves the initial primary email
    any help/ suggestion
    thanks in advance

    I've had this happen before, the ONLY solution is to call Apple's phone support. They were magnificent on the phone, and can help you, a bit of a journey through the automated dialing system to get someone, but it's the only way.
    1-800-MY-APPLE
    Good luck!

  • Why Are Password Protected Forms not Fillable on Reader App

    I have made a fillable form on Acrobat X Pro that is protected with password security in order to deny printing or editing (other than filling the form and commenting), however the app will open but will not allow you to fill it. The document's forms are fillable on any other computer. How can this be fixed?
    It is reader version 10.4.1 on a Asus Transformer TF300T android Ver 4.1.1

    As you have discovered, Adobe Reader for Android does not yet support filling encrypted forms. It is something we are considering for the future, but I cannot give any insight into when we will have that support available.

  • Password protected form in Reader

    I have a form that I created in LiveCycle Designer.
    I would like the form to be filled out by others in Adobe Reader (not Acrobat Pro or Pro Extended) but only with a password that I specify.
    I have Acrobat Pro Extended.

    Security is actually not a concern. This is an internal document and I only worry about accidental editing.
    I have no Acrobat scripting experience as this is the first form I've created.
    I would prefer the password feature to be more of a discrete operation instead of a button entitled "Edit" (something like if they click on a field that should be editable, then that's when they would get prompted). However, once the document is unlocked, clicking on the same field should not prompt them again for a password.
    Another feature that should be implemented is to automatically re-secure the document once it is saved and/or closed with the same universal password.
    Where can I get help with creating such a script?

  • Password protected form

    Hello
    Here's what i'd like to do:
    1- Authentification page (ask for an ID).
    2- ID must be verified in a db and then "posted" to the main form.
    3- the main form will display content in fields depending of the ID entered.
    Is it possible?
    Thanks in advance for your help.
    Regards,
    Jerome, Belgium.

    Users are using Adobe Reader to open the PDF form
    With Best Regards
    George Flowers

  • So you want to change your primary mail but can't get past the password question?

    Claudius,either you didn't read my post, or you jumped to conclusions. I had a skype account that was created using a microsoft account (NOT THE ACCOUNT I AM USING NOW). PURE MICROSOFT ACCOUNT NO OTHER ACCOUNT LINKING.I had to change the primary mail of that account.I was told "no can do" by skype support.I found that if I went to account settings and clicked on the link on the line below the one that said "MICROSOFT etc" (labeled something along the lines of "TV or Device") I got the opportunity to set the password of the "live:username" account (WHICH YOU COINCIDENTALLY HAVE TO DO IF YOU WANT TO USE SMART TVs ETC).Once that was done, I COULD SUCCESSFULLY DO WHAT SKYPE SUPPORT SAID WAS IMPOSSIBLE- I could change the primary mail address. once that was done, and NOT BEFORE, I linked the account to a facebook account as well, just to be sure I have more than one way to access the skype account. What caused you to get the impression that I was writing something else? furthermore this sentence - "The solution you described in your initial message isn't actually once since all the time you were operating on different account that weren't actually linked" does not make sense, I think you mis-edited it.and I need to point out that you are incorrect. I WAS NOT OPERATING ON DIFFERENT ACCOUNTS I WAS OPERATING ON ONE SKYPE ACCOUNT, THAT WAS CREATED USING A MICROSOFT ACCOUNT just like you say you recommend. I still don't know how you can misread my initial entry like that.  If you have a better solution to my initial problem - changing the primary mail of a skype account created throuth either a microsoft account or a facebook account, Please write a sticky to explain how to do it, and please inform skype support that Yes it can be done, and this is the way it is done. So far my "lucky shot" seems to be the only way to do it.     

    Hi!I ran into the same problem as a lot of other people seem to have done. I am changing ISP and because of that I have to change my mail address from my 10 year old [e-mail removed for privacy and security] to something else, this time I choose to use an outlook.com address in the hope that I will be able to keep that a bit longer. last week I realized that my skype account had my old expiring address as the primary mail, and that the primary mail was the only mail that skype will use for communication with me - I already had 2 other mail addresses in my skype profile (outlook.com and gmail). The skype account was created last summer using my microsoft account, and the microsoft account is the only means I have for accessing the skype account. So I logged on and opended the profile page, went on to edit the info and marked my outlook mail as the primary, clicked save and got the password question. I entered the password I use for logging on (ie the microsoft account password), but was told that the password was wrong. I tried everything and some more things, I spent 40-50 minutes on a text chat with skype support, only to be told that it can't be done and that the skype account was hard tied to the mail address I had used when creating the account, which I found very strange as I had used my microsoft account. yes, when I created the skype account, the only mail I had connected to the microsoft account was my "[e-mail removed for privacy and security]" mail, but I have since then, without any problems, been able to create an outlook.com address, and have that added, added a gmail account, set the outlook.com as the primary for the microsoft account and remove the "[e-mail removed for privacy and security]" address from the microsoft account. no problem.The problem is actually worse as the mail account will be free for use after april 1, which means that a person claiming that mail address will risk getting extremely confusing mails regarding a skype account they don't have, they will have difficulties creating a skype account of their own, AND they can take over my skype account (as they are the owners of the mail address) and I won't be able to stop them. How is that for security  Fortunately I spent 2 more hours and stumbled on the solution  This is where a normal scam artist would ask you to click on a link to a web apge that would releive you of all your money, but I won't do that. so, what is going on when you want to change the primary email, why isn't your password accepted??? It turns out that when you create a skype account using your microsoft account (and I guess  your facebook account), skype will actually create a "proper" skype user account as well, but they hide it from you, and you won't get a password set for it. It is the password for this "hidden" account you have to enter when you want to change the primary password It turns out that I was also unable to connect my facebook account to my skype account for the very same reason, but here it was more obvious, as I had to enter my skype username and passwor when connecting the accounts, and the microsoft account wasn't accepted there . so what do you need to do? well - those of you who have a smart tv (or some other device) that can't log on to skype using a microsoft account, have already done the work (provided you use that tv/device with skype) you log on to skype and open the account settings page, on the line below "microsoft account   [email protected]  unlink           change microsoft password" you'll see a line saying "TV or Device" or something similar (I have no idea what the english text is) here you have a link you can click on where you will be prompted to enter the password for your "live:username" account. once you have  done that you get instructions saying that for smart TVs etc, you enter "live:username" as the skye user and the newly created password as your password.The good news is that you now have 1) the identity of your skype user ("live:" and your name where the user name is the combined string "live:username" which in my case was "live:myname"); and 2) a password that is valid for your skype account. what I did next was open up the profile page, edit the profile, mark the outlook.com mail address asthe primary, click save and when prompted for the password, I entered the password I set in the previous step, and that's it, I now had a new primary mail (I got the confirmation mai sent to the new mail address right after I updated the info in skype). I also successfully removed my soon defunct mail address from the mail address list in my skype account, and I then connected my facebook account to my skype account (using live:myname ase the username and my shiny new password). So at the moment I have three different methods available to me when logging in to skype:- my microsoft account- my skype user (live:myname)- my facebook account.the ONLY thing to be aware of is that the name of the microsoft account, as presented on the account settings page in skype, still is my old [e-mail removed for privacy and security] mail address NOTE that this is a presentation issue only, someone thought that it was a good idea to save the original name of the microsoft account in the skype database and use that for presentation. It is NOT used when logging on, when you log on it will use the UID of you rmicrosoft account. if it disturbs you, you can always disconnect you rmicrosoft account from your skype account and reconnect it, and you should see the current mail address associated with the microsoft account. (this is safe to do because you have at least one other method to log on ) I hope that skype will amend their FAQ with this info. I did enter into a second chat with skype support, explaining what I díd to resolve the problem they failed to solve. so there it at least 2 people at skype support who know how to resolve the problem. -cheers,Anders 

Maybe you are looking for