Able to get mail but PDF is giving Error

Dear All,
        Now I am able to get PDF file dowloaded into my Desktop and can see the content, but when sent it as mail, we are unable to see the content so we are getting the message that File is not properly decoded.
Can anyone please help me.
Regards,
Satya.

Hello,
Check this sample code:
REPORT ZV_JOB_READ NO STANDARD PAGE HEADING LINE-SIZE 255..
* SAP-User       : VSM1KOR                                             *
* Author (name)  : Mr.Vasanth M (CI/ISY21-IN)                          *
* Development    : Mr.Vasanth M (CI/ISY21-IN)                          *
* Created on/in  : 02.08.2007                                          *
* Description    : OPL 1523: This is a Flexible to send the spool of a *
*                  report to any email Id as PDF file.                 *
TABLES: TSP01.
DATA: SV_ADR TYPE SOMLRECI1-RECEIVER.
SELECT-OPTIONS : P_EMAIL1 FOR SV_ADR NO INTERVALS.
*DEFAULT '[email protected]',
PARAMETERS: P_SENDER LIKE SOMLRECI1-RECEIVER,
*DEFAULT '[email protected]',
            P_REPID LIKE SY-REPID, " Report to execute
            P_LINSZ LIKE SY-LINSZ DEFAULT 132, " Line size
            P_PAART LIKE SY-PAART DEFAULT 'X_65_132', " Paper Format
            P_SLSET LIKE SY-SLSET, "Variant name
            P_ODESCR LIKE SODOCCHGI1-OBJ_DESCR,
            P_ADESCR TYPE SO_OBJ_NAM,
            P_DELSPL AS CHECKBOX.
*DATA DECLARATION
DATA: GD_RECSIZE TYPE I.
* Spool IDs
TYPES: BEGIN OF T_TBTCP.
        INCLUDE STRUCTURE TBTCP.
TYPES: END OF T_TBTCP.
DATA: IT_TBTCP TYPE STANDARD TABLE OF T_TBTCP INITIAL SIZE 0,
      WA_TBTCP TYPE T_TBTCP.
* Job Runtime Parameters
DATA: GD_EVENTID LIKE TBTCM-EVENTID,
      GD_EVENTPARM LIKE TBTCM-EVENTPARM,
      GD_EXTERNAL_PROGRAM_ACTIVE LIKE TBTCM-XPGACTIVE,
      GD_JOBCOUNT LIKE TBTCM-JOBCOUNT,
      GD_JOBNAME LIKE TBTCM-JOBNAME,
      GD_STEPCOUNT LIKE TBTCM-STEPCOUNT,
      GD_ERROR TYPE SY-SUBRC,
      GD_RECIEVER TYPE SY-SUBRC.
DATA: W_RECSIZE TYPE I,
      MC_VALID(1) TYPE C.
DATA: GD_SUBJECT LIKE SODOCCHGI1-OBJ_DESCR,
      IT_MESS_BOD LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
      IT_MESS_ATT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
      GD_SENDER_TYPE LIKE SOEXTRECI1-ADR_TYP,
      GD_ATTACHMENT_DESC TYPE SO_OBJ_NAM,
      GD_ATTACHMENT_NAME TYPE SO_OBJ_DES,
      MI_RQIDENT LIKE TSP01-RQIDENT.
* Spool to PDF conversions
DATA: GD_SPOOL_NR LIKE TSP01-RQIDENT,
      W_SPOOL_NR LIKE TSP01-RQIDENT,
      GD_DESTINATION LIKE RLGRAP-FILENAME,
      GD_BYTECOUNT LIKE TST01-DSIZE,
      GD_BUFFER TYPE STRING.
DATA: MSTR_PRINT_PARMS LIKE PRI_PARAMS.
* Binary store for PDF
DATA: BEGIN OF IT_PDF_OUTPUT OCCURS 0.
        INCLUDE STRUCTURE TLINE.
DATA: END OF IT_PDF_OUTPUT.
CONSTANTS: C_DEV LIKE SY-SYSID VALUE 'DEV',
           C_NO(1) TYPE C VALUE ' ',
           C_DEVICE(4) TYPE C VALUE 'LOCL'.
START-OF-SELECTION.
* Write statement to represent report output. Spool request is created
* if write statement is executed in background. This could also be an
* ALV grid which would be converted to PDF without any extra effort
*** Alternative way could be to submit another program and store spool
  CALL FUNCTION 'GET_PRINT_PARAMETERS'
  EXPORTING
        AUTHORITY = SPACE
        COPIES = '1'
        COVER_PAGE = SPACE
        DATA_SET = SPACE
        DEPARTMENT = SPACE
        DESTINATION = SPACE
        EXPIRATION = '1'
        IMMEDIATELY = SPACE
*       in_archive_parameters = space
*       in_parameters = space
        LAYOUT = SPACE
        MODE = SPACE
        NEW_LIST_ID = 'X'
        NO_DIALOG = 'X'
        USER = SY-UNAME
  IMPORTING
        OUT_PARAMETERS = MSTR_PRINT_PARMS
        VALID = MC_VALID
  EXCEPTIONS
        ARCHIVE_INFO_NOT_FOUND = 1
        INVALID_PRINT_PARAMS = 2
        INVALID_ARCHIVE_PARAMS = 3
        OTHERS = 4.
  IF MSTR_PRINT_PARMS-PDEST = SPACE.
    MSTR_PRINT_PARMS-PDEST = 'LOCL'.
  ENDIF.
  MSTR_PRINT_PARMS-LINSZ = P_LINSZ.
  MSTR_PRINT_PARMS-PAART = P_PAART.
  SUBMIT (P_REPID) TO SAP-SPOOL WITHOUT SPOOL DYNPRO
                      SPOOL PARAMETERS MSTR_PRINT_PARMS
                      USING SELECTION-SET P_SLSET
                      AND RETURN.
* Get spool id from program called above
  PERFORM GET_SPOOL_NUMBER USING SY-REPID SY-UNAME CHANGING MI_RQIDENT.
* IMPORT w_spool_nr FROM MEMORY ID SY-REPID.
  PERFORM CONVERT_SPOOL_TO_PDF.
  PERFORM PROCESS_EMAIL.
  IF P_DELSPL EQ 'X'.
    PERFORM DELETE_SPOOL.
  ENDIF.
  IF SY-SYSID = C_DEV.
    WAIT UP TO 5 SECONDS.
    SUBMIT RSCONN01 WITH MODE = 'INT'
    WITH OUTPUT = 'X'
    AND RETURN.
  ENDIF.
* FORM obtain_spool_id *
FORM OBTAIN_SPOOL_ID.
  CHECK NOT ( GD_JOBNAME IS INITIAL ).
  CHECK NOT ( GD_JOBCOUNT IS INITIAL ).
  SELECT * FROM TBTCP INTO TABLE IT_TBTCP
                              WHERE JOBNAME = GD_JOBNAME
                              AND JOBCOUNT = GD_JOBCOUNT
                              AND STEPCOUNT = GD_STEPCOUNT
                              AND LISTIDENT <> '0000000000'
                              ORDER BY JOBNAME
                              JOBCOUNT
                              STEPCOUNT.
  READ TABLE IT_TBTCP INTO WA_TBTCP INDEX 1.
  IF SY-SUBRC = 0.
    MESSAGE S004(ZDD) WITH GD_SPOOL_NR.
    GD_SPOOL_NR = WA_TBTCP-LISTIDENT.
    MESSAGE S004(ZDD) WITH GD_SPOOL_NR.
  ELSE.
    MESSAGE S005(ZDD).
  ENDIF.
ENDFORM. "OBTAIN_SPOOL_ID
* FORM get_job_details *
FORM GET_JOB_DETAILS.
* Get current job details
  CALL FUNCTION 'GET_JOB_RUNTIME_INFO'
       IMPORTING
            EVENTID                 = GD_EVENTID
            EVENTPARM               = GD_EVENTPARM
            EXTERNAL_PROGRAM_ACTIVE = GD_EXTERNAL_PROGRAM_ACTIVE
            JOBCOUNT                = GD_JOBCOUNT
            JOBNAME                 = GD_JOBNAME
            STEPCOUNT               = GD_STEPCOUNT
       EXCEPTIONS
            NO_RUNTIME_INFO         = 1
            OTHERS                  = 2.
ENDFORM. "GET_JOB_DETAILS
* FORM convert_spool_to_pdf *
FORM CONVERT_SPOOL_TO_PDF.
  CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
       EXPORTING
            SRC_SPOOLID              = MI_RQIDENT
            NO_DIALOG                = C_NO
            DST_DEVICE               = C_DEVICE
       IMPORTING
            PDF_BYTECOUNT            = GD_BYTECOUNT
       TABLES
            PDF                      = IT_PDF_OUTPUT
       EXCEPTIONS
            ERR_NO_ABAP_SPOOLJOB     = 1
            ERR_NO_SPOOLJOB          = 2
            ERR_NO_PERMISSION        = 3
            ERR_CONV_NOT_POSSIBLE    = 4
            ERR_BAD_DESTDEVICE       = 5
            USER_CANCELLED           = 6
            ERR_SPOOLERROR           = 7
            ERR_TEMSEERROR           = 8
            ERR_BTCJOB_OPEN_FAILED   = 9
            ERR_BTCJOB_SUBMIT_FAILED = 10
            ERR_BTCJOB_CLOSE_FAILED  = 11
            OTHERS                   = 12.
  CHECK SY-SUBRC = 0.
* Transfer the 132-long strings to 255-long strings
  LOOP AT IT_PDF_OUTPUT.
    TRANSLATE IT_PDF_OUTPUT USING ' ~'.
    CONCATENATE GD_BUFFER IT_PDF_OUTPUT INTO GD_BUFFER.
  ENDLOOP.
  TRANSLATE GD_BUFFER USING '~ '.
  DO.
    IT_MESS_ATT = GD_BUFFER.
    APPEND IT_MESS_ATT.
    SHIFT GD_BUFFER LEFT BY 255 PLACES.
    IF GD_BUFFER IS INITIAL.
      EXIT.
    ENDIF.
  ENDDO.
ENDFORM. "CONVERT_SPOOL_TO_PDF
* FORM process_email *
FORM PROCESS_EMAIL.
  DESCRIBE TABLE IT_MESS_ATT LINES GD_RECSIZE.
  CHECK GD_RECSIZE > 0.
  LOOP AT P_EMAIL1.
    PERFORM SEND_EMAIL USING P_EMAIL1-LOW.
  ENDLOOP.
* perform send_email using p_email2.
ENDFORM. "PROCESS_EMAIL
* FORM send_email *
* --> p_email *
FORM SEND_EMAIL USING P_EMAIL.
  CHECK NOT ( P_EMAIL IS INITIAL ).
  REFRESH IT_MESS_BOD.
* Default subject matter
  GD_SUBJECT = P_ODESCR.
  GD_ATTACHMENT_DESC = P_ADESCR.
* CONCATENATE 'attach_name' ' ' INTO gd_attachment_name.
  IT_MESS_BOD = TEXT-001." 'This is an automated report from SAP.'.
  APPEND IT_MESS_BOD.
  IT_MESS_BOD = TEXT-002. " 'Please do not reply to this mail id.'.
  APPEND IT_MESS_BOD.
  IF P_SENDER EQ SPACE.
    GD_SENDER_TYPE = SPACE.
  ELSE.
    GD_SENDER_TYPE = 'INT'.
  ENDIF.
* Send file by email as .xls speadsheet
  PERFORM SEND_FILE_AS_EMAIL_ATTACHMENT
                                TABLES IT_MESS_BOD
                                IT_MESS_ATT
                                USING P_EMAIL
                                P_ODESCR
                                'PDF'
                                GD_ATTACHMENT_NAME
                                GD_ATTACHMENT_DESC
                                P_SENDER
                                GD_SENDER_TYPE
                                CHANGING GD_ERROR
                                GD_RECIEVER.
ENDFORM. "SEND_EMAIL
* FORM delete_spool *
FORM DELETE_SPOOL.
  DATA: LD_SPOOL_NR TYPE TSP01_SP0R-RQID_CHAR.
  LD_SPOOL_NR = GD_SPOOL_NR.
  CHECK P_DELSPL <> C_NO.
  CALL FUNCTION 'RSPO_R_RDELETE_SPOOLREQ'
       EXPORTING
            SPOOLID = LD_SPOOL_NR.
ENDFORM. "DELETE_SPOOL
*& Form SEND_FILE_AS_EMAIL_ATTACHMENT
* Send email
FORM SEND_FILE_AS_EMAIL_ATTACHMENT TABLES IT_MESSAGE
                                          IT_ATTACH
                                          USING P_EMAIL
                                          P_MTITLE
                                          P_FORMAT
                                          P_FILENAME
                                          P_ATTDESCRIPTION
                                          P_SENDER_ADDRESS
                                          P_SENDER_ADDRES_TYPE
                                          CHANGING P_ERROR
                                          P_RECIEVER.
  DATA: LD_ERROR TYPE SY-SUBRC,
  LD_RECIEVER TYPE SY-SUBRC,
  LD_MTITLE LIKE SODOCCHGI1-OBJ_DESCR,
  LD_EMAIL LIKE SOMLRECI1-RECEIVER,
  LD_FORMAT TYPE SO_OBJ_TP ,
  LD_ATTDESCRIPTION TYPE SO_OBJ_NAM ,
  LD_ATTFILENAME TYPE SO_OBJ_DES ,
  LD_SENDER_ADDRESS LIKE SOEXTRECI1-RECEIVER,
  LD_SENDER_ADDRESS_TYPE LIKE SOEXTRECI1-ADR_TYP,
  LD_RECEIVER LIKE SY-SUBRC.
  DATA: T_PACKING_LIST LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE,
  T_CONTENTS LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
  T_RECEIVERS LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE,
  T_ATTACHMENT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
  T_OBJECT_HEADER LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
  W_CNT TYPE I,
  W_SENT_ALL(1) TYPE C,
  W_DOC_DATA LIKE SODOCCHGI1.
  LD_EMAIL = P_EMAIL.
  LD_MTITLE = P_MTITLE.
  LD_FORMAT = P_FORMAT.
  LD_ATTDESCRIPTION = P_ATTDESCRIPTION.
  LD_ATTFILENAME = P_FILENAME.
  LD_SENDER_ADDRESS = P_SENDER_ADDRESS.
  LD_SENDER_ADDRESS_TYPE = P_SENDER_ADDRES_TYPE.
* Fill the document data.
  W_DOC_DATA-DOC_SIZE = 1.
* Populate the subject/generic message attributes
  W_DOC_DATA-OBJ_LANGU = SY-LANGU.
  W_DOC_DATA-OBJ_NAME = 'SAPRPT'.
  W_DOC_DATA-OBJ_DESCR = LD_MTITLE .
  W_DOC_DATA-SENSITIVTY = 'F'.
* Fill the document data and get size of attachment
  CLEAR W_DOC_DATA.
  READ TABLE IT_ATTACH INDEX W_CNT.
  W_DOC_DATA-DOC_SIZE =
  ( W_CNT - 1 ) * 255 + STRLEN( IT_ATTACH ).
  W_DOC_DATA-OBJ_LANGU = SY-LANGU.
  W_DOC_DATA-OBJ_NAME = 'SAPRPT'.
  W_DOC_DATA-OBJ_DESCR = LD_MTITLE.
  W_DOC_DATA-SENSITIVTY = 'F'.
  CLEAR T_ATTACHMENT.
  REFRESH T_ATTACHMENT.
  T_ATTACHMENT[] = IT_ATTACH[].
* Describe the body of the message
  CLEAR T_PACKING_LIST.
  REFRESH T_PACKING_LIST.
  T_PACKING_LIST-TRANSF_BIN = SPACE.
  T_PACKING_LIST-HEAD_START = 1.
  T_PACKING_LIST-HEAD_NUM = 0.
  T_PACKING_LIST-BODY_START = 1.
  DESCRIBE TABLE IT_MESSAGE LINES T_PACKING_LIST-BODY_NUM.
  T_PACKING_LIST-DOC_TYPE = 'RAW'.
  APPEND T_PACKING_LIST.
* Create attachment notification
  T_PACKING_LIST-TRANSF_BIN = 'X'.
  T_PACKING_LIST-HEAD_START = 1.
  T_PACKING_LIST-HEAD_NUM = 1.
  T_PACKING_LIST-BODY_START = 1.
  DESCRIBE TABLE T_ATTACHMENT LINES T_PACKING_LIST-BODY_NUM.
  T_PACKING_LIST-DOC_TYPE = LD_FORMAT.
  T_PACKING_LIST-OBJ_DESCR = LD_ATTDESCRIPTION.
  T_PACKING_LIST-OBJ_NAME = LD_ATTFILENAME.
  T_PACKING_LIST-DOC_SIZE = T_PACKING_LIST-BODY_NUM * 255.
  APPEND T_PACKING_LIST.
* Add the recipients email address
  CLEAR T_RECEIVERS.
  REFRESH T_RECEIVERS.
  T_RECEIVERS-RECEIVER = LD_EMAIL.
  T_RECEIVERS-REC_TYPE = 'U'.
  T_RECEIVERS-COM_TYPE = 'INT'.
  T_RECEIVERS-NOTIF_DEL = 'X'.
  T_RECEIVERS-NOTIF_NDEL = 'X'.
  APPEND T_RECEIVERS.
  CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
       EXPORTING
            DOCUMENT_DATA              = W_DOC_DATA
            PUT_IN_OUTBOX              = 'X'
            SENDER_ADDRESS             = LD_SENDER_ADDRESS
            SENDER_ADDRESS_TYPE        = LD_SENDER_ADDRESS_TYPE
            COMMIT_WORK                = 'X'
       IMPORTING
            SENT_TO_ALL                = W_SENT_ALL
       TABLES
            PACKING_LIST               = T_PACKING_LIST
            CONTENTS_BIN               = T_ATTACHMENT
            CONTENTS_TXT               = IT_MESSAGE
            RECEIVERS                  = T_RECEIVERS
       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.
* Populate zerror return code
  LD_ERROR = SY-SUBRC.
* Populate zreceiver return code
  LOOP AT T_RECEIVERS.
    LD_RECEIVER = T_RECEIVERS-RETRN_CODE.
  ENDLOOP.
ENDFORM. "SEND_FILE_AS_EMAIL_ATTACHMENT
*& Form GET_SPOOL_NUMBER
* text
* -->P_SY_REPID text
* -->P_SY_UNAME text
* <--P_MI_RQIDENT text
FORM GET_SPOOL_NUMBER USING F_REPID
                            F_UNAME
                            CHANGING F_RQIDENT.
  DATA:
  LC_RQ2NAME LIKE TSP01-RQ2NAME.
  CONCATENATE F_REPID+0(9)
  F_UNAME+0(3)
  INTO LC_RQ2NAME.
  SELECT * FROM TSP01 WHERE RQ2NAME = LC_RQ2NAME
                      ORDER BY RQCRETIME DESCENDING.
    F_RQIDENT = TSP01-RQIDENT.
    EXIT.
  ENDSELECT.
  IF SY-SUBRC NE 0.
    CLEAR F_RQIDENT.
  ENDIF.
ENDFORM. " GET_SPOOL_NUMBER
Regards,
Vasanth

Similar Messages

  • How do set up your hotmail account on a mac book pro? I have it set up so I get mail but on my hotmail account I have lot of separate folders. They don't show up on my mac, they do on my iPhone and iPad.

    How do set up your hotmail account on a mac book pro properly? I have it set up so I get mail but on my hotmail account I have lot of separate folders to save messages in(for example :- bank, skyp, work, Facebook, apple, ect...). They don't show up on my mac. I also have an iPhone and iPad, there is no issue here when I set those up. I automatically got my separate folders. Anybody have any idea or encountered the same problem?

    Leuvy13 wrote:
    Cheers,
    I'm not gonna lie, I actually have no idea if its pop or imap. Do you know where you can check and if it can be changed?
    Hotmail on a Mac is POP3 only, you will only get the basic folders (inbox, sent, trash etc) and it will not sync with other devices.
    And now I post this I see other replies, so this is redundant. !!

  • TS3988 How can I verify my icloud account without being able to get mail from the account?

    How do I verify my icloud account without being able to get mail from that account?

    The verification email will be sent to your primary Apple ID email address.

  • Trying to get mail but MFMessageErrorDomainerror 1032 keeps coming up

    trying to get mail but MFMessageErrorDomainerror 1032 keeps coming up and wont let me do anything with mail...Cant get in or out of it because it keeps popping up help

    trying to get mail but MFMessageErrorDomainerror 1032 keeps coming up and wont let me do anything with mail...Cant get in or out of it because it keeps popping up help

  • I use reliance dongle to browse internet on mountain lion, at first it gave me problems but after updating the reliance software it worked fine.  Now i have upgraded my osx to mavericks.  The reliance software gets installed but dosent open giving some er

    i used reliance dongle to browse internet on mountain lion, at first it gave me problems but after updating the reliance software it worked fine. Now i have upgraded my osx to mavericks. The reliance software gets installed but dosent open giving some error, Now i cannot use the internet !!! and itz the latest version of reliance software,,, plz help me !!!

    At last i did some experiments and it solved my problem... heres the solution :
    1. Install the reliance drivers and software from their website.
    2. As the reliance software is not supported my mavericks it wont open, but dont worry.
    3. Now after installation go to system preferences->network->and select  "ZTE Wireless Terminal".
    4. Configuration: Default
         Telephone number: #777
         Account name and password should be the owners number.
    5.Finish ! press apply and click Connect...
       Enjoy browsing !!!

  • My ipad shows I'm getting mail but when I check my in box it doesn't show any new mail I've received in the last 2 weeks

    my ipad shows that I'm getting mail but when i check my in box it doesn't show any ne mail that I have received in the last 2 weeks?

    Delete your email account and set it up again.

  • HT1430 Trying to get mail but it says my password or username is incorrect . I haven't changed anything

    Trying to get mail but it says my username or password is incorrect . I haven't changed anything

    Try deleting the account and reenter the details  again

  • I can get mail, but cannot open it.

    Mail logo does not show up on top of page. Yet I can get mail, but cannot open it.

    Unfortunately, I have done so several times and it makes no difference.

  • My iPad give me a message that my imap gmail account cannot connect.  I was able to get mail yesterday, now can't get it today.

    My iPad give me a message that my imap gmail account cannot connect.  I was able to get mail yesterday, now can't get it today.

    Maybe the mail server is down.

  • TS3276 I just upgraded to 10.8.2 and Mail is having a problem. It won't remember my password for getting mail; but it does remember the password for sending mail, i.e., smtp. Does anyone know of a fix?

    I just upgraded to 10.8.2 and Mail is having a problem. It won't remember my password for getting mail; but it does remember the password for sending mail, i.e., smtp. Does anyone know of a fix?

    The solution surprised even me, and we've been using Macs since 1984 (still have an original 128K).
    I contacted Apple support, and because we had just upgraded yesterday, clicked on the "exception" button as opposed to paying the $19.99 one-time support fee. An Apple tech called and the problem was solved in two minutes.
    Somehow during the installation of OS 10.8.2 (over 10.6.x) the key chain data for my email ISP login password got corrupted. The solution was to delete both the POP mail and SMTP entries in my keychain.
    Back to Mail, it asked for the POP password, I entered it and bingo, mail got busy downloading. Interestingly, the password was also entered into the SMTP panel.
    So, that's it. Thanks for you response, Mr. Hoffman, and regards.

  • TS3694 hello i am trying to update my phone . i am connecting it to itunes but it is giving error 3194 . can you help me resolve this problem please.

    hello i am trying to update my phone . i am connecting it to itunes but it is giving error 3194 . can you help me resolve this problem please.

    Hi ali hakim,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Click on the link to see more details and screenshots.
    iOS: Restore error 3194 or 'This device isn't eligible for the requested build'
    http://support.apple.com/kb/TS4451
    This occurs when iTunes is unable to communicate with the update-and-restore server (gs.apple.com). This is most likely because it is being blocked, redirected, or interrupted by security software, hosts-file entries, or other third-party software.
    Cheers,
    - Judy

  • Hi, i am not able to get a Free icloud ID. Error is my device is not eligible for creating new free icloud ID. What do i do to create new one

    Hi, i am not able to get a Free icloud ID. Error is my device is not eligible for creating new free icloud ID. What do i do to create new one

    Sir, your Apple ID can be used as an iCloud account as well. They are both the same thing.
    You can learn more from --> Set up your Apple ID for iCloud and iTunes - Apple Support

  • HT4972 Cannot Get Mail Gmail IMAP Not Responding Error on iPhone, iPad or Mac

    I need help My iphoen and Ipad gives the following message
    Cannot Get Mail Gmail IMAP Not Responding Error on iPhone, iPad or Mac\
    Pls guide

    I have The same problem on my iPhone and iPad without me doing anything. It happened sometime doing the night (+1 GMT)
    I've tried it before. Without doing anything to help the problem it went away. This time it just seems like its not going away :/

  • Sending PDF by mail but PDF is not opening because of PDF Size.

    Hi all,
    I am sending a sapscript in PDF format through Email.
    Sapcript is going fine in PDF file for a test case in which file size is small but for PDF files where file size is Big in the mail while opening the file PDF is giving an Error message  that.
    'There was an error opening this document. The file is damaged and could not be repaired'
    Thanks in advance

    Hi Sonal,
    How are you calling the script and converting it to pdf ?
    Can you send me the code where you are calling script and converting to pdf ?
    KR Jaideep,

  • Was able to get infinity but now can't?

    Hi
    I have been checking the BT website for a while now since Sky bought O2 (my current provider).  It has always confirmed that I was able to get Infinity 2.  Even last week when I almost completed the order but cancelled at the final step as I had only just received my MAC code (and apparently I could not use it for seven days otherwise I would be charged).  It was all good news you can get Infiinity 2. 
    But now, went to order tonight and now I cannot get it.  The openreach website shows all the surrounding exchanges are accepting orders.  My neighbour (two doors away) who is an openreach engineer has confirmed that he has it and that both our telephone lines share the same cabinet.  Thanks to my neighbour I know that my cabinet has been upgraded.  I can even follow both our telephone lines to the same cabinet (we still have telegraph poles) and the cabinet is 50 metres away.  So what has happened?
    Sabotage by Sky (joking) or just bad planning from BT and too many people signed up for BT Sports?? 
    Trouble is it now means that I am severely tempted by the offer that Sky is trying to intice me with of free broadband and Sky Entertainment plus for a year but it means that I will have to transfer my phone to them and I am just not keen on moving wholesale to Sky.
    Just to confirm that my telephone line has always been with BT and has never been transferred to another service provdier.
    I am in Eastbourne - BN22 8.
    Thanks

    I'm afraid it probably means that the cabinet has reached its capacity for FTTC users.  If lots more people want it they may and extra capacity but not for some time.
    Probably worth trying every few days for a bit in case there was a mistake, or someone cancels.
    You could also see what happens if you try an order with PlusNet or similar.  You'll probably get the same result; all the FTTC ISP's share the BT Openreach cabient resources; first come first served.

Maybe you are looking for

  • Pdf's prints weird in unix

    Hi All, I have a workspace in both windows and unix. The windows workspace produces pdf's just fine, but in unix the same workspace prints pdf's with all section overlapping each other. Is there any setting need to be done. Thanks.

  • ZfH LDAP issues

    Anyone come across anything like this before - tried running CfgSrvr again and it just loops around with this failure. Error: Crypto-6 Cryptographic Subsystem Message (2 of 3) 22 December 2003 16:01:11 An error occured while attempting to obtain <LDA

  • RE: Flash forms not rendering

    Anyone find a solution from Adobe regarding the MS Server 2003 problem with flash forms? Its dead on our site after the upgrade and the fixes did not work for us. http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=1&catid=143&thread

  • APPLE: PLEASE READ!!!  MULTIPLE ERRORS!!!!

    iPhoto no longer works buying anything online or connecting with accounts. Passwords are rejected, addresses cannot be added, cards cannot be bought. Multiple bugs guys - please fix soon!

  • VBScript does not retrieve Member details if a Distribution/Security Group have only one Member

    Hi, VBScript does not retrieve Member details if a Distribution/Security Group have only one Member. I have tried several Scripts even changed the coding in it, also tried few External Script by created by other Scriptor's. Any suggestion on why this