Problem downloading a PDF via FTP.

I'm trying to send a PDF file via FTP, that I obtained with FM 'CONVERT_OTFSPOOLJOB_2_PDF'.
After closing the FTP connection, i try to open the PDF file, and I get an error message, saying that the file is damaged.
Any ideas? Do I have to make any conversion?
<promise removed by moderator>
DATA: it_pdf TYPE TABLE OF tline WITH HEADER LINE.
CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
  EXPORTING
    src_spoolid   = p_spool
  IMPORTING
    pdf_bytecount = lv_byte
  TABLES
    pdf           = it_pdf.
*--  Connection to FTP (not shown here)
*-- Transfer table
CALL FUNCTION 'FTP_R3_TO_SERVER'
  EXPORTING
    handle         = w_hdl
    fname          = p_dest          "file path of destination system
    blob_length    = lv_byte
*      character_mode = ' '
  TABLES
    blob           = it_pdf
*      text           = lt_value
  EXCEPTIONS
    tcpip_error    = 1.
Thanks in advance,
Maxi.-
Edited by: maxikishi on Feb 10, 2011 8:22 PM
Edited by: Thomas Zloch on Feb 11, 2011 4:41 PM

Don't offer rewards for assistance; you'll receive help with or without the offer.  This topic is an FAQ; FTP is no different than any other transfer method.  Search the forum for PDF conversion code.  Also, the function you're using has a 99 page limit for conversion; you may want to view the function parameters and account for that.

Similar Messages

  • Problem downloading a file via http

    Hi
    I'm just getting started with WLS (sp5) and am having a problem downloading
    a file via http. The document is stored in the main html docs directory and
    whenever I link to it or try to download it directly (eg:
    http://<host>:<port>/myfile.doc) I get the following error in a message box:
    Your current security settings do not allow this file to be downloaded.
    Can anyone point me in the right direction as to where I grant permissions
    to do this - I've tried using the weblogic.security.URLAclFile and adding
    the directory as a weblogic.io.fileSystem (a desperation move, I know).
    Thanks in advance,
    Peter Villiers

    PLEASE IGNORE THIS POST
    The problem was caused by someone (me though I honestly don't remember doing
    it), setting the content security level to high in my web browser which
    stopped this type of download.
    Peter

  • Problems uploading big files via FTP and downloading files

    I've been having problems uploading big files like video files (.mov 12MB) via FTP to my website (small files like .html or .doc I can upload but it takes longer than usual). I'm using Fetch 4.0.3. as FTP. Same problems when downloading files via Bit Torrent. I recently moved to Spain, since then I seem to have the problem. But my roommate with a PC doesn't have that problem. Connecting to internet with Ethernet cable also didn't resolve the problem. I also tested it from a Starbucks coffee connecting to Internet from there but still couldn't upload that 12MB file to the FTP. The security settings for firewall are set to "allow all incoming connections". I didn't change any of my settings so I don't know what the problems could be. I have a MacBook Pro, Mac OS X (10.5.7) Any suggestions? Thanks!

    Welcome to Apple Discussions!
    Much of what is available on Bittorrent is not legal, beta, or improperly labelled versions. If you want public domain software, see my FAQ*:
    http://www.macmaps.com/macosxnative.html#NATIVE
    for search engines of legitimate public domain sites.
    http://www.rbrowser.com/ has a light mode that supports binary without SSH security.
    http://rsug.itd.umich.edu/software/fugu/ has ssh secure FTP.
    Both I find are quick and a lot more reliable than Fetch. I know Fetch used to be the staple FTP program, but it grew too big for my use.
    - * Links to my pages may give me compensation.

  • Problem downloading large files via Safari

    When downloading large video files (for example, from FilesAnywhere.com), my download stars off OK and then slowly gets slower and slower... and slower and then seems to grind to a halt. I'm currently attempting to download a 165MB file which has taken all day so far, and the time remaining just gets longer and longer. It now stands at another 18 hours, but by the morning it will most likley tell me there's a week left.
    Does anybody know what is causing this? I can download via FTP with no problem very fast -it's just via Safari that seems to be the problem. I'm on a home broadband account.
    I've encountered this problem before and I just had to give up on the download.

    Good to see the problem was solved from the suggestion provided. Glad to have helped.
    Aloha from Big Island.

  • Problems sending a PDF via mail

    Hi !! I have a report, runs in background, which obtains some information from sap tables and then generates an ALV. As it is executed in background, the ALV creates an spool order. After this, I convert this spool into a PDF object . And then I need to send a mail to an specific user with some text in its body and this PDF as attach. If I don't attach the PDF, the mail is sent ok. The problem is when I try to attach the PDF.. Here is my code so anybody can help me please... REPORT zautorizaciones_spool . TABLES : usr02, agr_texts, agr_users, adr6, usr21, adrp, itcpo, tsp01. TYPE-POOLS : slis. DATA: BEGIN OF i_tabla OCCURS 0, agr_name LIKE agr_texts-agr_name, text LIKE agr_texts-text, uname LIKE agr_users-uname, name_text LIKE adrp-name_text, END OF i_tabla. * Spool IDs TYPES: BEGIN OF t_tbtcp. INCLUDE STRUCTURE tbtcp. TYPES: END OF t_tbtcp. DATA: fieldcat TYPE slis_t_fieldcat_alv, fieldcat_ln LIKE LINE OF fieldcat, sortcat TYPE slis_t_sortinfo_alv. DATA: col_pos TYPE i, spos TYPE i. DATA: v_buffer TYPE string. DATA: BEGIN OF it_email OCCURS 0, smtp_addr LIKE adr6-smtp_addr. DATA: END OF it_email. DATA: mi_rqident LIKE tsp01-rqident, mi_bytecount TYPE i, mtab_pdf LIKE tline OCCURS 0 WITH HEADER LINE. DATA: it_receivers LIKE somlreci1 OCCURS 0 WITH HEADER LINE, objpack LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE, objhead LIKE solisti1 OCCURS 0 WITH HEADER LINE, objbin LIKE solisti1 OCCURS 0 WITH HEADER LINE, objtxt LIKE solisti1 OCCURS 0 WITH HEADER LINE, doc_chng LIKE sodocchgi1, tab_lines LIKE sy-tabix, reclist LIKE somlreci1 OCCURS 0 WITH HEADER LINE, it_mess_att LIKE solisti1 OCCURS 0 WITH HEADER LINE. 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, it_tbtcp TYPE STANDARD TABLE OF t_tbtcp INITIAL SIZE 0, wa_tbtcp TYPE t_tbtcp. CONSTANTS: c_dev LIKE sy-sysid VALUE 'DEV'. *----
    Pantalla de selección *----------------------------------------------------------------------
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001. SELECT-OPTIONS: s_ustyp FOR usr02-ustyp, s_nomrol FOR agr_texts-agr_name, s_uflag FOR usr02-uflag, s_class FOR usr02-class, s_line FOR agr_texts-line, s_todat FOR agr_users-to_dat, s_spras FOR agr_texts-spras, s_gltgb FOR usr02-gltgb, s_correo FOR adr6-smtp_addr. SELECTION-SCREEN END OF BLOCK b1. *----
    INITIALIZATION *----------------------------------------------------------------------
    INITIALIZATION. CLEAR i_tabla. REFRESH i_tabla. *----
    START-OF-SELECTION *----------------------------------------------------------------------
    START-OF-SELECTION. PERFORM obtener_datos. IF NOT i_tabla[] IS INITIAL. IF sy-batch IS INITIAL. PERFORM listado. SKIP. WRITE:/ 'Para que la orden spool pueda ser creada, el programa', 'se debe de ejecutar en fondo.'. ELSE. MESSAGE s000(z2) WITH 'batch'. PERFORM listado. PERFORM get_job_details. PERFORM get_spool_number USING SY-REPID sy-uname CHANGING mi_rqident. PERFORM conver_spool_pdf. PERFORM enviar_mail. PERFORM delete_spool. IF sy-sysid = c_dev. WAIT UP TO 5 SECONDS. SUBMIT rsconn01 WITH mode = 'INT' WITH output = 'X' AND RETURN. ENDIF. ENDIF. ENDIF. *----
    END-OF-SELECTION *---------------------------------------------------------------------
    END-OF-SELECTION. *&----
    *& Form obtener_datos *&--------------------------------------------------------------------
    FORM obtener_datos. SELECT agr_textsagr_name agr_textstext agr_usersuname adrpname_text APPENDING CORRESPONDING FIELDS OF TABLE i_tabla FROM ( agr_users INNER JOIN usr02 ON usr02bname = agr_usersuname INNER JOIN agr_texts ON agr_textsagr_name = agr_usersagr_name INNER JOIN usr21 ON usr21bname = usr02bname INNER JOIN adrp ON adrppersnumber = usr21persnumber ) WHERE agr_usersagr_name IN s_nomrol AND agr_usersto_dat IN s_todat AND usr02class IN s_class AND usr02gltgb IN s_gltgb AND usr02uflag IN s_uflag AND usr02ustyp IN s_ustyp AND agr_textsline IN s_line AND agr_textsspras IN s_spras. ENDFORM *&--------------------------------------------------------------------
    *& Form listado *&--------------------------------------------------------------------
    FORM listado. PERFORM crear_catalogo. PERFORM imprimir. ENDFORM. *&--------------------------------------------------------------------
    *& Form crear_catalogo *&--------------------------------------------------------------------
    FORM crear_catalogo. PERFORM build_fieldcat USING : 'AGR_TEXTS' 'AGR_NAME' '' '' '' '30' '' 'L' 'Papel', 'AGR_TEXTS' 'TEXT' '' '' '' '80' '' 'L' 'Denominación papel', 'AGR_USERS' 'UNAME' '' '' '' '12' '' 'L' 'Usuario', 'NAME_TEXT' 'NAME_TEXT' '' '' '' '80' '' 'L' 'Nombre completo'. ENDFORM. *&--------------------------------------------------------------------
    *& Form build_fieldcat *&--------------------------------------------------------------------
    FORM build_fieldcat USING tabname fieldname key no_out hotspot outputlen do_sum ddictxt seltext_l. ADD 1 TO col_pos. fieldcat_ln-ref_tabname = tabname. fieldcat_ln-fieldname = fieldname. fieldcat_ln-key = key. fieldcat_ln-col_pos = col_pos. fieldcat_ln-no_out = no_out. fieldcat_ln-hotspot = hotspot. fieldcat_ln-do_sum = do_sum. fieldcat_ln-ddictxt = ddictxt. fieldcat_ln-seltext_l = seltext_l. fieldcat_ln-seltext_m = seltext_l. fieldcat_ln-seltext_s = seltext_l. IF NOT outputlen IS INITIAL. fieldcat_ln-outputlen = outputlen. ENDIF. APPEND fieldcat_ln TO fieldcat. CLEAR fieldcat_ln. ENDFORM. *&--------------------------------------------------------------------
    *& Form imprimir *&--------------------------------------------------------------------
    FORM imprimir. DATA : prg LIKE sy-repid. prg = sy-repid. DATA : salida TYPE slis_exit_by_user. CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = prg i_callback_user_command = 'ALV_USER_COMMAND' it_fieldcat = fieldcat it_sort = sortcat i_save = 'A' IMPORTING es_exit_caused_by_user = salida TABLES t_outtab = i_tabla EXCEPTIONS program_error = 1 OTHERS = 2. ENDFORM. *&--------------------------------------------------------------------
    *& Form informar_cuerpo *&--------------------------------------------------------------------
    FORM informar_cuerpo. objtxt-line = 'Estimado propietario de datos.'. APPEND objtxt. CLEAR objtxt. APPEND objtxt. CLEAR objtxt. CONCATENATE 'En el marco de la auditoría SOX, y para asegurar el cumplimiento' 'de uno de sus controles, le adjuntamos un/os informes para...' INTO objtxt-line SEPARATED BY space. APPEND objtxt. CLEAR objtxt. ENDFORM. " informar_cuerpo *&--------------------------------------------------------------------
    *& Form enviar_mail *&--------------------------------------------------------------------
    FORM enviar_mail. DATA: w_cnt TYPE i, t_attachment LIKE solisti1 OCCURS 0 WITH HEADER LINE, cont type i. doc_chng-obj_name = 'Probando envio mail'. doc_chng-obj_descr = 'Probando asunto mail'. PERFORM informar_cuerpo. READ TABLE it_mess_att INDEX w_cnt. MESSAGE s000(z2) WITH 'w_cnt' w_cnt. MESSAGE s000(z2) WITH 'sy-subrc' sy-subrc. DESCRIBE TABLE objtxt LINES tab_lines. doc_chng-doc_size = ( w_cnt - 1 ) * 255 + STRLEN( it_mess_att ). CLEAR t_attachment. REFRESH t_attachment. t_attachment[] = it_mess_att[]. CLEAR objpack-transf_bin. objpack-head_start = 1. objpack-head_num = 0. objpack-body_start = 1. objpack-body_num = tab_lines. objpack-doc_type = 'RAW'. objpack-obj_descr = doc_chng-obj_descr. DESCRIBE TABLE t_attachment LINES objpack-body_num. objpack-doc_type = 'PDF'. objpack-obj_descr = 'OBJ_Descr'. objpack-obj_name = 'obj_name'. objpack-doc_size = objpack-body_num * 255. APPEND objpack. objhead = 'Envio mail'. READ TABLE objtxt INDEX tab_lines. IF sy-subrc = 0. MESSAGE s000(z2) WITH 'objtxt' tab_lines. ENDIF. reclist-receiver = p_mail. reclist-rec_type = 'U'. reclist-express = 'X'. reclist-com_type = 'INT'. APPEND reclist. CLEAR reclist. CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1' EXPORTING document_data = doc_chng TABLES packing_list = objpack object_header = objhead contents_bin = objbin contents_txt = objtxt receivers = 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. MESSAGE s000(z2) WITH 'sy-subrc' sy-subrc. ENDFORM. " enviar_mail *&--------------------------------------------------------------------
    *& Form get_spool_number *&--------------------------------------------------------------------
    FORM get_spool_number USING f_repid f_uname CHANGING f_rqident. DATA: lc_rq2name LIKE tsp01-rq2name. 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. CLEAR wa_tbtcp. READ TABLE it_tbtcp INTO wa_tbtcp INDEX 1. IF sy-subrc = 0. f_rqident = wa_tbtcp-listident. MESSAGE s000(z2) WITH 'Se ha creado la orden spool' f_rqident. ELSE. MESSAGE s000(z2) WITH 'No se ha recuperado ninguna orden spool'. ENDIF. ENDFORM. " get_spool_number *&--------------------------------------------------------------------
    *& Form informar_destinatario *&--------------------------------------------------------------------
    FORM informar_destinatario USING p_correo. it_receivers-receiver = p_correo. it_receivers-rec_type = 'U'. it_receivers-express = 'X'. it_receivers-com_type = 'INT'. APPEND it_receivers. CLEAR it_receivers. ENDFORM. " informar_destinatario *&--------------------------------------------------------------------
    *& Form get_job_details *&--------------------------------------------------------------------
    FORM get_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. MESSAGE s000(z2) WITH 'job: ' gd_jobname. ENDFORM. " get_job_details *&--------------------------------------------------------------------
    *& Form conver_spool_pdf *&--------------------------------------------------------------------
    FORM conver_spool_pdf. CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF' EXPORTING src_spoolid = mi_rqident no_dialog = ' ' dst_device = 'LOCL' IMPORTING pdf_bytecount = mi_bytecount TABLES pdf = mtab_pdf 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. LOOP AT mtab_pdf. TRANSLATE mtab_pdf USING ' '. CONCATENATE v_buffer mtab_pdf INTO v_buffer. ENDLOOP. TRANSLATE v_buffer USING ' '. DO. it_mess_att = v_buffer. APPEND it_mess_att. SHIFT v_buffer LEFT BY 255 PLACES. IF v_buffer IS INITIAL. EXIT. ENDIF. ENDDO. ENDFORM. " conver_spool_pdf *&--------------------------------------------------------------------
    *& Form delete_spool *&----
    FORM delete_spool. DATA: ld_spool_nr TYPE tsp01_sp0r-rqid_char, ld_status LIKE sy-subrc. CLEAR: ld_spool_nr, ld_status. ld_spool_nr = mi_rqident. CALL FUNCTION 'RSPO_R_RDELETE_SPOOLREQ' EXPORTING spoolid = ld_spool_nr IMPORTING status = ld_status. ENDFORM. " delete_spool I don't know where the error can be and I've been working on it for 2 days... Do I have to download the PDF to a file ??? In that case, how do I attach then the file ?? Thanks a lot in advance, Regards !!

    Sorry, I wrote it as the code appears in SAP and didn't know I can format it..I hope I've done it ok now..
    As I run the report through a job, I do it like this:
    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.
    Then I get the spool:
    DATA: lc_rq2name LIKE tsp01-rq2name.
    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.
    CLEAR wa_tbtcp.
    READ TABLE it_tbtcp INTO wa_tbtcp INDEX 1.
    IF sy-subrc = 0.
    f_rqident = wa_tbtcp-listident.
    After this I create the PDF:
    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
    EXPORTING
    src_spoolid = mi_rqident
    no_dialog = ' '
    dst_device = 'LOCL'
    IMPORTING
    pdf_bytecount = mi_bytecount
    TABLES
    pdf = mtab_pdf.
    LOOP AT mtab_pdf.
    TRANSLATE mtab_pdf USING ' ~'.
    CONCATENATE
    v_buffer
    mtab_pdf
    INTO v_buffer.
    ENDLOOP.
    TRANSLATE v_buffer USING '~ '.
    DO.
    it_mess_att = v_buffer.
    APPEND it_mess_att.
    SHIFT v_buffer LEFT BY 255 PLACES.
    ENDDO.
    To send the mail..
    DATA: w_cnt TYPE i
    t_attachment LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    cont type i.
    doc_chng-obj_name = 'Probando envio mail'.
    doc_chng-obj_descr = 'Probando asunto mail'.
    READ TABLE it_mess_att INDEX w_cnt.
    DESCRIBE TABLE objtxt LINES tab_lines.
    doc_chng-doc_size = ( w_cnt - 1 ) * 255 + STRLEN( it_mess_att ).
    CLEAR t_attachment.
    REFRESH t_attachment. t_attachment[] = it_mess_att[].
    CLEAR objpack-transf_bin.
    objpack-head_start = 1.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = tab_lines.
    objpack-doc_type = 'RAW'.
    objpack-obj_descr = doc_chng-obj_descr.
    DESCRIBE TABLE t_attachment LINES objpack-body_num.
    objpack-doc_type = 'PDF'.
    objpack-obj_descr = 'OBJ_Descr'.
    objpack-obj_name = 'obj_name'.
    objpack-doc_size = objpack-body_num * 255.
    APPEND objpack. objhead = 'Envio mail'.
    READ TABLE objtxt INDEX tab_lines.
    reclist-receiver = p_mail.
    reclist-rec_type = 'U'.
    reclist-express = 'X'.
    reclist-com_type = 'INT'.
    APPEND reclist.
    CLEAR reclist.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = doc_chng
    TABLES
    packing_list = objpack
    object_header = objhead
    contents_bin = objbin
    contents_txt = objtxt
    receivers = reclist .
    Edited by: poketina on Nov 19, 2009 4:51 PM
    Sorry, i don't know how to give format....

  • Problem downloading any pdf document

    When I try to download any file ending in .pdf in IE7 the tab freezes.
    e.g. http://www.adobe.com/products/acrobat/pdfs/pdfaccess.pdf
    The status line says done but nothing downloads.
    I cannot download in Mozella Firefox either.
    I can read pdf documents from files on my computer without problem.
    The pdf downloads without problem on a friend's PC.
    I am using Windows XP Home OS amd Adobe Reader 9.
    David

    Thanks Trevon,
    That is a helpful work-around.
    I'm still puzzled as to why it will not download and display directly from the link.
    David

  • Problem on upload file via ftp..

    Hi afternnon,
    Can have people tell me.....what is "Can't open data connection" on my upload file via ftp ????how to solve it??
    regards,
    mike

    nbelford wrote:
    I cant find any way to upload the CSR either/ I dont think it exists yet. Can someone please let us know how far away it is. Same applies to the provisioning profile. I cant see any evidence of this yet either.
    I am presuming that without these key pieces of the puzzle one cannot deploy to the iPhone. Can someone from Apple confirm (or correct me)
    I've emailed Apple asking for clarification but I haven't heard back yet. I imagine we'll all learn what's going on at about the same time. And yes, until you get a certificate you cannot upload your apps to the iPhone (within the SDK rules).
    Randy

  • Problem downloading large pdf with Safari

    Has anyone else had this problem when clicking on a link to a large pdf file (1MB) I get a blank screen in Safari. When I try with firefox its fine only with safari is there anything I need to change to allow downloads of larger pdf files in safari?

    1MB isn't a particularly large file at all. Can we assume that you've verified that Safari will open smaller PDF's?
    Also, you haven't mentioned what Adobe product and version you are using (may help to give the version of Safari as well).

  • Problems with producing PDFs via Adobe Acrobat Prof 11

    Hello we have the following problem:
    While producing several word documents via PDF Printer (we have insallted the latest version of Adobe Acrobat Professional 11) we receive error messages like
    %%[ ProductName: Distiller ]%%
    %%[ Error: /EMC pdfmark without matching BMC/BDC.]%%
    %%[Page: 1]%%
    %%[Page: 2]%%
    %%[Page: 3]%%
    %%[Page: 4]%%
    %%[ Error: limitcheck; OffendingCommand: pdfmark ]%%
    Stack:
    -mark-
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%
    Using the Word 2010 Add inn (producing PDF), it works.
    What is the problem?
    Thanks for ur help.
    S.H-Schuett

    Hi,
    I'm having a similar problem and it's disappointing that no one has responded to the original posing from April 2013.
    I was extracting a range of pages from Framemaker 7 to PDF using the Acrobat 6 Distiller. The PS file failed to convert to PDF and the log file contained these errors.  What is the meaning of the "Error: undefined" statement?  How can I figure out where the error is occurring?
    Yours,
    Michael F
    =====================================================================
    %%[ ProductName: Distiller ]%%
    %%[ Warning: Helvetica not found, using Font Substitution. Font cannot be embedded.]%%
    %%[ Warning: Helvetica-Bold not found, using Font Substitution. Font cannot be embedded.]%%
    %%[ Warning: Times-BoldItalic not found, using Font Substitution. Font cannot be embedded.]%%
    %%[ Warning: Times-Roman not found, using Font Substitution. Font cannot be embedded.]%%
    %%[ Error: undefined; OffendingCommand: pdfmark ]%%
    Stack:
    /StRetrieve
    /P82708
    /StoreName
    -dict-
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%

  • Having a problem downloading a pdf file onto sony reader.

    Process:
    I have the Reader connected to the computer.
    I have downloaded the books form Waterstones which went into Adobe Digital Editions.  There hasn't been a problem here.
    I have opened the eBook Library, went to file, import files, my documents, Adobe Digital Editions and clicked on the book I want to put on the Reader.  The book uploads into the eBook Library.  I then Drag and drop the book on the Reader link on the left hand column.  The status rotates as if the book is being transferred however I then have an error message reading:
    'To transfer this ebook, you must first authorize the reader for Adobe DRM protected content.  Do you want to authorize the reader now?'
    I click yes.
    I type in my Adobe Id and password as I am asked to do and click yes.
    Another error occurs reading:
    'Failed to authorize this PC to the eBook store.'
    I can only click yes here which leaves me where I started.
    If I go onto the Sony eBook store it doesn't show me the 'Register' link at the top of the page.
    I had 7 ebooks on the reader since July so it was all working perfectly until 5/09/09 when i bought another 2 from Waterstones.  When I tried to put them on it deleted the first 7.  When I had the 2 new books on, the old 7 deleted and when I had the first 7 on the Reader it didn't allow me the 2 newer books I bought on 5/09/09.  Now I can't get any of the books to transfer onto the Reader.
    My sister is also experiencing the exact same problem as I am having.  However when she downloads a free book from Sony, it transfers no problem, it just seems to happen with the ebooks we have paid for.  She is using the software which was supplied with the product wereas I am using an updated version.  Between the two of us, we have purchased 12 ebooks and can't get any of them to work on either Reader.
    Can anyone help??

    Adobe aren't much help either. What you have to do is open a web case with the Adobe support team.
    I've been waiting since 25/09/09 for them to reset my account which is what you have to do to get it working again.
    I know this isn't much help but its a start.
    Hopefully it works for both of us if they ever reset the account.

  • Problems accessing home network via FTP

    I get a -50 error when I try to FTP thru my company's wired Ethernet network to my home network via the "Connect to Server" command in the Finder.
    However, I can connect with my home network using FileZilla thru the same (wired) network.
    And I can connect to my homework via my company's wireless network from the Finder.
    Any ideas what might be blocking me from FTP'ing to my home network via the Finder and thru the wired network, and how to resolve?

    At least a partial answer.
    If I use the command FTP://username@IP Address, I'm able to connect. But I don't have to use my username with wireless.

  • Problem to deploy website via ftp

    I use FileZila and tried also CuteFtp to upload my website.
    The problem is - always Failed to retrieve directory azure website.
    the log :
    Status: Resolving address of waws-prod-db3-009.ftp.azurewebsites.windows.net
    Status: Connecting to ...........
    Error: Connection timed out
    Error: Could not connect to server
    Status: Waiting to retry...
    Status: Resolving address of waws-prod-db3-009.ftp.azurewebsites.windows.net
    Status: Connecting to ..........
    Status: Connection established, waiting for welcome message...
    Response: ‎‪220 Microsoft FTP Service
    Command: ‎‪AUTH TLS
    Response: ‎‪234 AUTH command ok. Expecting TLS Negotiation.
    Status: Initializing TLS...
    Status: Verifying certificate...
    Status: TLS connection established.
    Command: ‎‪USER aloni\alonisoft_web
    Response: ‎‪331 Password required
    Command: ‎‪PASS **********
    Response: ‎‪230 User logged in.
    Command: ‎‪SYST
    Response: ‎‪215 Windows_NT
    Command: ‎‪FEAT
    Response: ‎‪211-Extended features supported:
    Response: ‎‪ LANG EN*
    Response: ‎‪ UTF8
    Response: ‎‪ AUTH TLS;TLS-C;SSL;TLS-P;
    Response: ‎‪ PBSZ
    Response: ‎‪ PROT C;P;
    Response: ‎‪ CCC
    Response: ‎‪ HOST
    Response: ‎‪ SIZE
    Response: ‎‪ MDTM
    Response: ‎‪ REST STREAM
    Response: ‎‪211 END
    Command: ‎‪OPTS UTF8 ON
    Response: ‎‪200 OPTS UTF8 command successful - UTF8 encoding now ON.
    Command: ‎‪PBSZ 0
    Response: ‎‪200 PBSZ command successful.
    Command: ‎‪PROT P
    Response: ‎‪200 PROT command successful.
    Status: Connected
    Status: Retrieving directory listing...
    Command: ‎‪PWD
    Response: ‎‪257 "/" is current directory.
    Command: ‎‪TYPE I
    Response: ‎‪200 Type set to I.
    Command: ‎‪PASV
    Response: ‎‪227 Entering Passive Mode (137,135,136,19,39,154).
    Command: ‎‪LIST
    Response: ‎‪150 Opening BINARY mode data connection.
    Error: Connection timed out
    Error: Failed to retrieve directory listing 

    hi sir,
    It seems that this is a timeout issue. Firstly, I suggest you could follow this blog to ensure your each steps are right.
    Secondly, I suggest you could try to enable this settings:
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Downloading a pdf file from javascript() window does not work

    PDF download/view works fine where the link points to actual pdf file. But I have problem downloading/viewing pdf files that are loaded using javascript(), e.g. bank statements and such. When I click a link FF downloads a file which either has no extension or has a different one (not .pdf).
    Later I realized that I can manually rename the downloaded file to insert .pdf extension and open it in reader.
    How can I solve this? I don't have this problem when using IE or Chrome.
    Thanks

    Could you try a new profile?
    Create a new profile as a test to check if your current profile is causing the problems.
    See "Creating a profile":
    https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer some files from an existing profile to the new profile, but be cautious not to copy corrupted files to avoid carrying over the problem.
    http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    If it still happens with a new and clean profile then the most likely cause is that you have security software that is blocking this JavaScript.

  • Settting Up Time Capsule to Access NAS Device Via FTP

    Have had problems accessing my NAS via FTP when trying to connect to it from an outside network. Have never been able to access and login either anonymously or using one of the user names and passwords that I have set up from outside the home. When at home I am able to connect to the NAS via FTP on the LAN no problem so I am almost positive that I have not properly set up the Time Capsule.
    My NAS also uses a web server feature that I am able to use by forwarding the proper ports on the Time CApsule and setting up a DynDNS account.
    I would just use the web server feature but it's limited to accessing files under 2TB.
    Would GREATLY APPRECIATE any advice on how to solve this problem.

    charliprkr wrote:
    Have had problems accessing my NAS via FTP when trying to connect to it from an outside network.
    Welcome to Apple's discussion groups.
    It sounds like you need to configure your Time Capsule to do "port mapping" of FTP ports to your NAS. In AirPort Utility enter "manual setup" mode with the Time Capsule, then select the Advanced panel and the Port Mapping tab. Click the plus sign at the bottom, then choose "FTP Access" as the service. Supply the LAN IP address of your NAS. Now direct your FTP requests to the WAN address of the Time Capsule.

  • Downloading patches via ftp

    Hi
    I found these instructions for downloading patches via ftp...
    http://docs.sun.com/app/docs/doc/817-3331/6miuccqni?a=view
    (Under section entitled "Example—Downloading and Applying a Signed Patch by Using ftp")
    I tried to follow these, but cannot see a signed_patches directory?
    Is this old method only relevant to Solaris 8 - and if so - what is the Solaris 10 equivalent method of downlaoding patches via ftp?
    Regards,
    GXW

    I don't think we're alone, but no one seems to have an answer. This thread seems to be a user having the same problem:
    http://discussions.apple.com/thread.jspa?threadID=1855814
    I'll keep working at a solution and will post if I can find one.

Maybe you are looking for