Convert an already created pdf to otf

i made an report that takes some pdf from sapscript and takes the otf's and send them as email attachement.
Now i want to incude one more pdf to the same email that is already created and i store it to my fileserver . How can i do this ?
REPORT  YDP_SEND_ALL_DOCS_EMAIL.
DATA: ITCPO LIKE ITCPO,
      TAB_LINES LIKE SY-TABIX.
Variables for EMAIL functionality
DATA: MAILDATA   LIKE SODOCCHGI1.
DATA: MAILPACK   LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE.
DATA: MAILHEAD   LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE.
DATA: MAILBIN    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
DATA: MAILTXT    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
DATA: MAILREC    LIKE SOMLREC90 OCCURS 0  WITH HEADER LINE.
DATA: SOLISTI1   LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE.
TABLES: LIPS,
        LIKP,
        LFA1,
        KNA1,
        ADR6,
        VBKD,
        VBPA,
        VBAK,
        VBRK,
        VBRP,
        MARA,
        T005T,
        VBFA.
DATA : BEGIN OF ITAB OCCURS 0,
        VBELN       LIKE VBRK-VBELN,  "billing doc
        NAME1       LIKE KNA1-NAME1,  "Customer name
        SMTP_ADDR      LIKE ADR6-SMTP_ADDR,
        END OF ITAB.
DATA: MY_OPTIONS TYPE ITCPO.
SELECTION-SCREEN BEGIN OF BLOCK B0 WITH FRAME TITLE TEXT-001.
PARAMETERS: SVBELN TYPE VBRK-VBELN.
PARAMETERS: SNAME TYPE KNA1-NAME1.
PARAMETERS: S_EMAIL TYPE ADR6-SMTP_ADDR.
SELECTION-SCREEN SKIP 2.
PARAMETERS: SUBJ(30) TYPE C.
SELECTION-SCREEN SKIP 2.
PARAMETERS: LINE1 LIKE MAILTXT-LINE.
PARAMETERS: LINE2 LIKE MAILTXT-LINE.
PARAMETERS: LINE3 LIKE MAILTXT-LINE.
PARAMETERS: LINE4 LIKE MAILTXT-LINE.
PARAMETERS: LINE5 LIKE MAILTXT-LINE.
PARAMETERS: LINE6 LIKE MAILTXT-LINE DEFAULT 'The following PDF are produced by SAP and are digitally signed .'.
SELECTION-SCREEN END OF BLOCK B0.
SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-002.
PARAMETERS: YHSD AS CHECKBOX DEFAULT 'X'.
PARAMETERS: ZHAG AS CHECKBOX DEFAULT 'X'.
PARAMETERS: ZPHL AS CHECKBOX DEFAULT 'X'.
SELECTION-SCREEN END OF BLOCK B1.
AT SELECTION-SCREEN OUTPUT.
  LOOP AT SCREEN.
    IF SCREEN-NAME = 'S_EMAIL'.
      SCREEN-INPUT = 0.
      SCREEN-INTENSIFIED = 0.
      MODIFY SCREEN.
      EXIT.
    ENDIF.
  ENDLOOP.
  LOOP AT SCREEN.
    IF SCREEN-NAME = 'SNAME'.
      SCREEN-INPUT = 0.
      SCREEN-INTENSIFIED = 0.
      MODIFY SCREEN.
      EXIT.
    ENDIF.
  ENDLOOP.
AT SELECTION-SCREEN.
  SELECT SINGLE * FROM VBRK WHERE VBELN = SVBELN.
  IF SY-SUBRC = 0.
    SELECT SINGLE * FROM KNA1 WHERE KUNNR = VBRK-KUNRG.
    SNAME = KNA1-NAME1.
    SELECT SINGLE * FROM ADR6 WHERE ADDRNUMBER = KNA1-ADRNR.
    IF SY-SUBRC = 0 .
      S_EMAIL = ADR6-SMTP_ADDR.
    ELSE.
      S_EMAIL = 'No Email Address !!!!'.
    ENDIF.
  ELSE.
    S_EMAIL = 'No Email Address !!!!'.
  ENDIF.
START-OF-SELECTION.
  PERFORM SEND_FORM_VIA_EMAIL.
*&      Form  WRITE_FORM
      text
     -->P_WIN      text
     -->P_TYPE     text
     -->P_EL       text
     -->P_FUN      text
FORM WRITE_FORM USING P_WIN P_TYPE P_EL P_FUN.
  CALL FUNCTION 'WRITE_FORM'
    EXPORTING
      ELEMENT                  = P_EL
      FUNCTION                 = P_FUN
      TYPE                     = P_TYPE
      WINDOW                   = P_WIN
   IMPORTING
     PENDING_LINES            =
   EXCEPTIONS
      ELEMENT                  = 1
      FUNCTION                 = 2
      TYPE                     = 3
      UNOPENED                 = 4
      UNSTARTED                = 5
      WINDOW                   = 6
      BAD_PAGEFORMAT_FOR_PRINT = 7
      SPOOL_ERROR              = 8
      CODEPAGE                 = 9
      OTHERS                   = 10.
  IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
ENDFORM.                    "WRITE_FORM
*&      Form  CLOSE_FORM
      text
FORM CLOSE_FORM.
  CALL FUNCTION 'CLOSE_FORM'
     IMPORTING
          RESULT                   = ITCPP
          RDI_RESULT               =
      TABLES
           OTFDATA                  = OTF
       EXCEPTIONS
            UNOPENED                 = 1
            BAD_PAGEFORMAT_FOR_PRINT = 2
            SEND_ERROR               = 3
            OTHERS                   = 4.
ENDFORM.                    " CLOSE_LAYOUT_DSS
*&      Form  GET_DATA
      text
FORM GET_DATA.
  DATA: BEGIN OF OTF OCCURS 0.
          INCLUDE STRUCTURE ITCOO .
  DATA: END OF OTF.
  DATA: ITCPO LIKE ITCPO.
  DATA: ITCPP LIKE ITCPP.
  CLEAR ITCPO.
  ITCPO-TDGETOTF = 'X'.
  PERFORM COLLECT_DATA(YHAL_SHIPPING_DETAILS) USING SVBELN."VBRK-VBELN.
  CALL FUNCTION 'OPEN_FORM'
    EXPORTING
      FORM     = 'YHAL_SHIP_DETAIL'
      LANGUAGE = SY-LANGU
      OPTIONS  = ITCPO
      DIALOG   = ' '
    EXCEPTIONS
      OTHERS   = 1.
  PERFORM DISPLAY_DATA(YHAL_SHIPPING_DETAILS) USING SVBELN." VBRK-VBELN.
Close up Form and get OTF code
  CALL FUNCTION 'END_FORM'
    EXCEPTIONS
      ERROR_MESSAGE = 01
      OTHERS        = 02.
  MOVE-CORRESPONDING ITCPO TO ITCPP.
  CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
      RESULT  = ITCPP
    TABLES
      OTFDATA = OTF
    EXCEPTIONS
      OTHERS  = 1.
Move OTF code to structure SOLI form email
  CLEAR SOLISTI1. REFRESH SOLISTI1.
  LOOP AT OTF.
    SOLISTI1-LINE = OTF.
    APPEND SOLISTI1.
  ENDLOOP.
ENDFORM.                    "GET_DATA
*&      Form  GET_DATA1
      text
FORM GET_DATA1.
  DATA: BEGIN OF OTF OCCURS 0.
          INCLUDE STRUCTURE ITCOO .
  DATA: END OF OTF.
  DATA: ITCPO LIKE ITCPO.
  DATA: ITCPP LIKE ITCPP.
  CLEAR OTF.
  CLEAR ITCPO.
  ITCPO-TDGETOTF = 'X'.
  PERFORM COLLECT_DATA(Z111_PACKING_LIST) USING SVBELN."VBRK-VBELN.
  CALL FUNCTION 'OPEN_FORM'
    EXPORTING
      FORM     = 'Z1111_PACKING'
      LANGUAGE = SY-LANGU
      OPTIONS  = ITCPO
      DIALOG   = ' '
    EXCEPTIONS
      OTHERS   = 1.
  PERFORM DISPLAY_DATA(Z111_PACKING_LIST). "USING SVBELN." VBRK-VBELN.
Close up Form and get OTF code
  CALL FUNCTION 'END_FORM'
    EXCEPTIONS
      ERROR_MESSAGE = 01
      OTHERS        = 02.
  MOVE-CORRESPONDING ITCPO TO ITCPP.
  CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
      RESULT  = ITCPP
    TABLES
      OTFDATA = OTF
    EXCEPTIONS
      OTHERS  = 1.
Move OTF code to structure SOLI form email
  CLEAR SOLISTI1. REFRESH SOLISTI1.
  LOOP AT OTF.
    SOLISTI1-LINE = OTF.
    APPEND SOLISTI1.
  ENDLOOP.
ENDFORM.                                                    "GET_DATA1
*&      Form  GET_DATA2
      text
FORM GET_DATA2.
  DATA: BEGIN OF OTF OCCURS 0.
          INCLUDE STRUCTURE ITCOO .
  DATA: END OF OTF.
  DATA: ITCPO LIKE ITCPO.
  DATA: ITCPP LIKE ITCPP.
  CLEAR OTF.
  CLEAR ITCPO.
  ITCPO-TDGETOTF = 'X'.
  PERFORM COLLECT_DATA(Z111_AGENCY_NOTE) USING SVBELN."VBRK-VBELN.
  CALL FUNCTION 'OPEN_FORM'
    EXPORTING
      FORM     = 'Z1111_AGENCY'
      LANGUAGE = SY-LANGU
      OPTIONS  = ITCPO
      DIALOG   = ' '
    EXCEPTIONS
      OTHERS   = 1.
  PERFORM DISPLAY_DATA(Z111_AGENCY_NOTE) USING SVBELN." VBRK-VBELN.
Close up Form and get OTF code
  CALL FUNCTION 'END_FORM'
    EXCEPTIONS
      ERROR_MESSAGE = 01
      OTHERS        = 02.
  MOVE-CORRESPONDING ITCPO TO ITCPP.
  CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
      RESULT  = ITCPP
    TABLES
      OTFDATA = OTF
    EXCEPTIONS
      OTHERS  = 1.
Move OTF code to structure SOLI form email
  CLEAR SOLISTI1. REFRESH SOLISTI1.
  LOOP AT OTF.
    SOLISTI1-LINE = OTF.
    APPEND SOLISTI1.
  ENDLOOP.
ENDFORM.                                                    "GET_DATA2
      FORM  SEND_FORM_VIA_EMAIL                                      *
FORM  SEND_FORM_VIA_EMAIL.
  CLEAR:    MAILDATA, MAILTXT, MAILBIN, MAILPACK, MAILHEAD, MAILREC.
  REFRESH:  MAILTXT, MAILBIN, MAILPACK, MAILHEAD, MAILREC.
Creation of the document to be sent File Name
  MAILDATA-OBJ_NAME = 'TEST'.
Mail Subject
  MAILDATA-OBJ_DESCR = SUBJ ."'EGGRAFA BIBLOY'.
Mail Contents
  MAILTXT-LINE = LINE1.
  APPEND MAILTXT.
  MAILTXT-LINE = LINE2.
  APPEND MAILTXT.
  MAILTXT-LINE = LINE3.
  APPEND MAILTXT.
  MAILTXT-LINE = LINE4.
  APPEND MAILTXT.
  MAILTXT-LINE = LINE5.
  APPEND MAILTXT.
  MAILTXT-LINE = LINE6.
  APPEND MAILTXT.
Prepare Packing List
  PERFORM PREPARE_PACKING_LIST.
Set recipient - email address here!!!
  MAILREC-RECEIVER = '[email protected]'.
  MAILREC-REC_TYPE  = 'U'.
  APPEND MAILREC.
Sending the document
  CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
      DOCUMENT_DATA              = MAILDATA
      PUT_IN_OUTBOX              = ' '
    TABLES
      PACKING_LIST               = MAILPACK
      OBJECT_HEADER              = MAILHEAD
      CONTENTS_BIN               = MAILBIN
      CONTENTS_TXT               = MAILTXT
      RECEIVERS                  = MAILREC
    EXCEPTIONS
      TOO_MANY_RECEIVERS         = 1
      DOCUMENT_NOT_SENT          = 2
      OPERATION_NO_AUTHORIZATION = 4
      OTHERS                     = 99.
  COMMIT WORK.
ENDFORM.                    "SEND_FORM_VIA_EMAIL
     Form  PREPARE_PACKING_LIST
FORM PREPARE_PACKING_LIST.
  CLEAR:    MAILPACK, MAILBIN, MAILHEAD.
  REFRESH:  MAILPACK, MAILBIN, MAILHEAD.
  DESCRIBE TABLE MAILTXT LINES TAB_LINES.
  READ TABLE MAILTXT INDEX TAB_LINES.
  MAILDATA-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( MAILTXT ).
Creation of the entry for the compressed document
  CLEAR MAILPACK-TRANSF_BIN.
  MAILPACK-HEAD_START = 1.
  MAILPACK-HEAD_NUM = 0.
  MAILPACK-BODY_START = 1.
  MAILPACK-BODY_NUM = TAB_LINES.
  MAILPACK-DOC_TYPE = 'RAW'.
  APPEND MAILPACK.
Creation of the document attachment
This form gets the OTF code from the SAPscript form.
If you already have your OTF code, I believe that you may
be able to skip this form.  just do the following code, looping thru
your SOLISTI1 and updating MAILBIN.
  IF YHSD = 'X' .
    PERFORM GET_OTF_CODE.      "----
    LOOP AT SOLISTI1.
      MOVE-CORRESPONDING SOLISTI1 TO MAILBIN.
      APPEND MAILBIN.
    ENDLOOP.
    DESCRIBE TABLE MAILBIN LINES TAB_LINES.
    MAILHEAD = 'TEST.OTF'.
    APPEND MAILHEAD.
  ENDIF.
Creation of the entry for the compressed attachment
MAILPACK-TRANSF_BIN = 'X'.
MAILPACK-HEAD_START = 1.
MAILPACK-HEAD_NUM = 1.
MAILPACK-BODY_START = 1.
MAILPACK-BODY_NUM = TAB_LINES.
MAILPACK-DOC_TYPE = 'OTF'.
MAILPACK-OBJ_NAME = 'TEST01'.
MAILPACK-OBJ_DESCR = 'Subject01'.
MAILPACK-DOC_SIZE = TAB_LINES * 255.
APPEND MAILPACK.
  IF ZHAG = 'X'.
    PERFORM GET_OTF_CODE1.      "----
    LOOP AT SOLISTI1.
      MOVE-CORRESPONDING SOLISTI1 TO MAILBIN.
      APPEND MAILBIN.
    ENDLOOP.
    DESCRIBE TABLE MAILBIN LINES TAB_LINES.
    MAILHEAD = 'TEST1.OTF'.
    APPEND MAILHEAD.
  ENDIF.
Creation of the entry for the compressed attachment
MAILPACK-TRANSF_BIN = 'X'.
MAILPACK-HEAD_START = 1.
MAILPACK-HEAD_NUM = 1.
MAILPACK-BODY_START = 1.
MAILPACK-BODY_NUM = TAB_LINES.
MAILPACK-DOC_TYPE = 'OTF'.
MAILPACK-OBJ_NAME = 'TEST02'.
MAILPACK-OBJ_DESCR = 'Subject02'.
MAILPACK-DOC_SIZE = TAB_LINES * 255.
APPEND MAILPACK.
  IF ZPHL = 'X'.
    PERFORM GET_OTF_CODE2.      "----
    LOOP AT SOLISTI1.
      MOVE-CORRESPONDING SOLISTI1 TO MAILBIN.
      APPEND MAILBIN.
    ENDLOOP.
    DESCRIBE TABLE MAILBIN LINES TAB_LINES.
    MAILHEAD = 'TEST2.OTF'.
    APPEND MAILHEAD.
  ENDIF.
Creation of the entry for the compressed attachment
  MAILPACK-TRANSF_BIN = 'X'.
  MAILPACK-HEAD_START = 1.
  MAILPACK-HEAD_NUM = 1.
  MAILPACK-BODY_START = 1.
  MAILPACK-BODY_NUM = TAB_LINES.
  MAILPACK-DOC_TYPE = 'OTF'.
  MAILPACK-OBJ_NAME = 'TEST03'.
  MAILPACK-OBJ_DESCR = 'Ship.details-Agency.report-Packing.list'.
  MAILPACK-DOC_SIZE = TAB_LINES * 255.
  APPEND MAILPACK.
ENDFORM.                    "PREPARE_PACKING_LIST
     Form  GET_OTF_CODE
FORM  GET_OTF_CODE.
  PERFORM GET_DATA.
ENDFORM.                    "GET_OTF_CODE
     Form  GET_OTF_CODE1
FORM  GET_OTF_CODE1.
  PERFORM GET_DATA1.
ENDFORM.                    "GET_OTF_CODE1
     Form  GET_OTF_CODE2
FORM  GET_OTF_CODE2.
  PERFORM GET_DATA2.
ENDFORM.                    "GET_OTF_CODE2
END-OF-SELECTION.

Hi Dimath,
Try the following FM:
CONVERT_OTF Convert SAP documents (SAPScript) to other types.
Example:
CALL FUNCTION "CONVERT_OTF"
       EXPORTING    FORMAT                = "PDF"
       IMPORTING    BIN_FILESIZE          = FILE_LEN
       TABLES       OTF                   = OTFDATA
                    LINES                 = PDFDATA
       EXCEPTIONS   ERR_MAX_LINEWIDTH     = 1                  
                    ERR_FORMAT            = 2
                    ERR_CONV_NOT_POSSIBLE = 3
                    OTHERS                = 4.
Hope this helps.
Reward if helpful.
Regards,
Sipra

Similar Messages

  • How do i move a picture from one pdf-file to another already created pdf-file with adobe reader?

    How do I move a picture from one pdf-file to another, already created pdf-file, with adobe reader?

    Reader doesn't have editing capabilities.

  • Does Adobe Reader for iOS have the ability to open inbedded links to additional PDF docs?  If not, then what would be the best way to use these already created PDF's?

    Does Adobe Reader for iOS have the ability to open inbedded links created with Acrobat Standard to additional PDF docs?  If not, then what would be the best way to use these already created PDF's on an I Pad?

    driddy61,
    As of June 2014, none of the Adobe Reader mobile products support the hyperlink action for opening a separate PDF document.
    Adobe Reader for iOS
    Adobe Reader for Android
    Adobe Reader Touch for Windows 8
    In addition, the Reader mobile products do not open multiple windows/documents simultaneously, which would make the navigation between PDF documents nearly impossible. (Once a hyperlink takes you to a different PDF document, you have no way to go back to the original PDF document.)
    The only Adobe Reader product that fulfills your department's requirements is Adobe Reader XI (mostly for Windows/Mac desktop/laptop computers).  Acrobat Pro and Standard are paid products.
    Because you are in search of a less expensive device for your department, you could get a Windows tablet instead of a Windows desktop/laptop computer. Microsoft Surface Pro (that you've mentioned in your previous reply) is just one example.  You can also find other less expensive Windows tablets.
    Tablets
    However, please keep in mind that there are two different types of Windows tablets running two different operating systems.
    (a) A Windows tablet with an Intel-based processor running Windows 8.1 Pro
    Example: Surface Pro 3
    You can install and run traditional desktop apps (e.g. Adobe Reader XI) and new Windows Store apps ("Modern" or "Metro-style" apps).
    (b) A Windows tablet with an ARM-based processor running Windows RT 8.1
    Example: Surface 2
    You can only install and run Windows Store apps (e.g. Adobe Reader Touch) but not traditional desktop apps like Adobe Reader XI.
    In general, type (b) tablets are more affordable than type (a) tablets.  However, if you want to run Adobe Reader XI, you do need to check the technical specification of each tablet and make sure the following conditions are met.
    Processor: Intel
    Operating system:  Windows 8/8.1 or Windows 8/8.1 Pro, not RT
    Hope this helps you choose the right device for your department.  Please let us know if you have any questions about system requirements or supported features in the Adobe Reader products.

  • Adobe PDF Converter fails to create PDF

    Hi,
    This is my first post here. I've searched the forums but have failed to find any posts describing my specific problem.
    I am trying to print to PDF using the "Adobe PDF Converter" device, but whenever I try to do so I am presented with a window labeled "Creating Adobe PDF" with a pull-down menu labeled "Document Name" that is entirely empty and a Hide button. Also the window states:
    PDF Name: Untitled.pdf
    PDF Folder: C:\Users\Name\Desktop
    If I click the pull-down menu it rolls down with about five empty lines. Now, regardless whether I press the hide button or not, there is no PDF output created in the PDF folder.
    This happens regardless of which application I am printing from, e.g. Notepad, Chrome, etc.
    This is how I get to the "Creating Adobe PDF" dialog: Ctrl-p -> Choose "Adobe PDF Converter" in the print dialog, then click print -> then choose an output filename in the "Save PDF file as" dialog -> "Creating Adobe PDF" dialog appears.
    I have Adobe Design Premium CS3 installed on a Windows 7 32-bit machine.
    I have tried reinstalling the "Adobe PDF Converter" printer device, but that didn't help.
    Any advice how to fix this would be much appreciated. Thanks
    Andreas

    It would appear you are using a different converter, not sure. The one that comes with Acrobat will appear in the printer list as the "Adobe PDF" printer. When you select to print to the Adobe PDF printer, you should get a Save As menu. Then it would proceed. However, I believe that CS3 comes with AA8 and that is likely the problem. To be successful at all, you will need to be sure to update Acrobat to the most current version of AA8 and then it may work. Adobe does not support AA8 on a Win 7 platform and only would recommend an upgrade.
    That is some thoughts.

  • I cannot open already created pdfs in Acrobat Pro

    I get an error message which says:
    There was an error opening this document. The file is damaged and could not be repaired.
    Anyone know how to get around this? It's driving me crazy!

    Along the same line, where did you get these PDFs? If from e-mail, they are probably corrupt. As an example, you might try opening the campus map at http://www.comm.vt.edu/Contact_Find_Us/campus_map.pdf. To test, it is probably better to download it, or you may be looking at a browser plugin performance instead.

  • Create PDF from Web page using Acrobat 9 Pro

    I am trying to create a PDF file from a web page.  The alt tags for images is not being recognized, and the reading order bounces all over the page (not the order of the web page).  For example, the 1st text item on the page is #7 in the reading order, and the #1 item is an image half way down the page.  All the documentation I can find says Acrobat will read top to bottom, left to right, but it's not.  Any idea how to fix it?

    Acrobat is using the underlying mark up of the rendered HTML page.
    This may or may not provide an adequate input to Acrobat when it is noodling out how and what to tag.
    I suspect you may find that, to obtain an adequately tagged PDF, you may have to capture the web page content with the create bookmarks and create tags options off.
    Once you have the PDF make working copies.
    Try letting Acrobat tag this already created PDF to see what happens.
    You may have to manually tag the PDF.
    n.b., The default read order for western language can be altered by user selections in the accesibility setup or by selection in the PDF page(s) Page Properties.
    Be well...

  • Create PDF from Web page using Acrobat X - Page Order

    I have a structured web site that is in fact Program Help The web pages are structured as follows:
    index.html - Main Topic Index page with links to all topic subject index pages
    topic/index.html - Topic Subject Index Page with links to all subject pages
    topic/subject.html - Subject page
    .....etc
    Using Acrobat 5 "Create PDF from Web Page" created a perfect logical PDF  page structure in the page order of of the web site. In Acrobat 5 page 1  was the Main Topic Index Page, page 2 was the 1st Topic Subject Index  Page, page 3 was the 1st Subject Page, then the 2nd subject of the 1st  Topic, etc. until the Topic Subjects were exhausted after which the 2nd  Topic Subject Index Page and so it went on. As a result the bookmark  structure was sensible. The page order was as follows:
    Main Topic Contents
    Topic 1 Contents
    Subject 1 of Topic 1
    Subject 2 of Topic 1
    Topic N Contents
    Subject 1 of Topic N
    Subject 2 of Topic N
    Acrobat X (just purchased) produces a differently structured PDF from the same HTML pages. The order is:
    Main Topic Contents
    Topic 1 Contents
    Topic 2 Contents
    Topic N Contents
    Main Topic Contents (a second time)
    Subject 1 of Topic 1
    Subject 2 of Topic 1
    Subject N of Topic 1
    Subject 1 of Topic 2
    Subject 2 of Topic 2
    Subject N of Topic N
    Question: Is there any way I can get back with Acrobat X the same page order I got with Acrobat 5?
    Any help appreciated. The website is www.caliach.com/caliach/vision/help/index.html
    Chris

    Acrobat is using the underlying mark up of the rendered HTML page.
    This may or may not provide an adequate input to Acrobat when it is noodling out how and what to tag.
    I suspect you may find that, to obtain an adequately tagged PDF, you may have to capture the web page content with the create bookmarks and create tags options off.
    Once you have the PDF make working copies.
    Try letting Acrobat tag this already created PDF to see what happens.
    You may have to manually tag the PDF.
    n.b., The default read order for western language can be altered by user selections in the accesibility setup or by selection in the PDF page(s) Page Properties.
    Be well...

  • Cannot create .pdf from web pages X Pro

    Hmmm. I missing a trick here.
    Acrobat X Pro.
    Windows 7 64x.
    Create web pages from Chrome
    So I log into my New York Review of Books account as a Subscriber.
    I locate an article that is marked ' locked ', subscribers only  - I view it as one entire page.
    The whole article is visible - it should be, I'm a subscriber.
    I load the URL into 'Save As Web Page '  in Acrobat X Pro
    I click on Save. It doesn't save it it truncates the article after two pages placing a Nag Box at the end suggesting I take out a subscription. ( but I have ).
    When I attempt this on articles not ' Locked ' they save perfectly in Acrobat X Pro.
    NYRB web support are not really clued up on this.
    Why does this happen ...surely Acrobat x Pro can create the .pdf from the browser content and doesn't have to go back to the source in these circumstances?
    If I go into Chrome and PRINT the same Locked web page to PDF I get a half formatted black and white replica of the article in its entireity ( no Nag Box).
    I'm missing something here. Help please.

    Acrobat is using the underlying mark up of the rendered HTML page.
    This may or may not provide an adequate input to Acrobat when it is noodling out how and what to tag.
    I suspect you may find that, to obtain an adequately tagged PDF, you may have to capture the web page content with the create bookmarks and create tags options off.
    Once you have the PDF make working copies.
    Try letting Acrobat tag this already created PDF to see what happens.
    You may have to manually tag the PDF.
    n.b., The default read order for western language can be altered by user selections in the accesibility setup or by selection in the PDF page(s) Page Properties.
    Be well...

  • Convert from Excel to PDF

    HI,
    I'm converting an excel sheet to pdf using print to adobe pdf.
    some of the words have different colors. When I convert it, the words lose their color and they become black.
    I also tried to convert it using create pdf. got the same thing.
    Any idea why?
    Thanks!
    Peleg

    The other details? How are you trying to create the PDF (PDF Maker, printing to the Adobe PDF printer) and what selections (B&W, Standard job settings, and other options)?

  • [CF8] Filling out already-made PDFs

    Everything my office has heard about the new features of CF8
    sound wonderful. One of the main things we're excited about is the
    PDF features, but after reading the
    information
    on the product page we're still a bit confused about whether it
    will do something we desperately need.
    We have an exceedingly long PDF application form that's
    already been created with fields and such. People currently enter
    their information online where it's saved to a database as they go
    (over the course of several pages to make it more manageable) and,
    at the end, an FDF file is generated that fills in the form with
    information from the database. The problem with this is 1) they
    have to be online for it to work, 2) sometimes people with Firefox
    are just presented with an FDF file that they have no idea what to
    do with, and 3) some people have started getting
    this
    error.
    Will CF8 allow for the populating of the already-created PDF
    with the database data, with no FDF in-between and no other program
    (like LiveCycle) needed? I'm trying to talk my boss into an upgrade
    and this would definitely be the selling point.

    Cyborgirl wrote:
    > Will CF8 allow for the populating of the already-created
    PDF with the database
    > data, with no FDF in-between and no other program (like
    LiveCycle) needed? I'm
    > trying to talk my boss into an upgrade and this would
    definitely be the selling
    > point.
    >
    Yes, it will also work *with* the FDF format as well.
    A couple of references.
    Part one of a eight part series:
    http://www.coldfusionjedi.com/index.cfm/2007/7/9/ColdFusion-8-Working-with-PDFs-Part-1
    http://www.forta.com/blog/index.cfm/2006/7/27/cf_pdfform
    http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags_p-q_03.html

  • When I go into pdf file it only gives me the option to convert into pdf when it's already a pdf. I want to convert it into word and I've purchase this a few months ago now I need help

    I Need help in converting a pdf into word. I've purchased it a few months ago and now for the first time I tried to use word and I can't it only gives me the option to convert it into a pdf when it is already a pdf! Urgent help please

    Not sure what you mean by "tried to use Word". ExportPDF doesn't change what Word can do. Can you explain what you try and what happens in more detail?

  • I have Adobe Photoshop Elements 10 plus I create PDF files for work some are scan pdf docs. When I install Photoshop Elements 10 it DOES convert all the PDF files to Photoshop Elements-10 Docs. it even changes and shows the PSE-10 Icon. So I am alway inst

    I have Adobe Photoshop Elements 10 plus I create PDF files for work some are scan pdf docs. When I install Photoshop Elements 10 it DOES convert all the PDF files to Photoshop Elements-10 Docs. it even changes and shows the PSE-10 Icon. So I am alway installing PSE-10 or uninstalling it. If I send the  PDF file that has been automatically converted to a PSE-10 the person I send the file to can not open it because they do not have PSE-10. What can I do to stop PSE-10 from converting my PDF files? Don't tell me to upgrade PSE-10 I tried their on-line program and  it is too advance for a hobby photographer like myself and their Help Desk is impossible to reach.

    Hi,
    Can you please share the logs?
    You can use the Adobe  Log Collector tool (Log Collector Tool) and share the corresponding zip file @ [email protected]
    Thanks,
    Shikha

  • Will uninstall/reinstall Adobe Acrobat 9 affect PDFs already created?

    I am receiving a message that I must uninstall then reinstall Adobe Acrobat 9 Pro to fix a problem. Operating system. Windows 7.  Problem on laptop only.  No problem on desktop.  Error message says: "Licensing for this product has stopped working.  You cannot use this product at this time. You must repair the problem by uninstalling and then reinstalling this product or contacting your IT administrator or Adobe customer support for help. (148:3)"  If I uninstall / reinstall will this affect the PDFs already created in My Docs?  Is there another way?  

    The process with not affect the PDFs, but I would be concerned about registration and such. If you uninstall without deactivating, you may lose the second install option and have to call Adobe to reset. I would try a repair first and see if that helps. The repair can be done from Control Panel>Programs & Preferences (since you apparently cannot open Acrobat).
    If you do uninstall, do the following before reinstalling: run http://labs.adobe.com/downloads/acrobatcleaner.html and remove any left over parts of the Acrobat folder. If Acrobat is part of a CS installation, you may need to check there (CS forum) for the proper way to reinstall.
    If you have an upgrade, then be sure to have the SN of the previous product available.

  • How do i create a PDF, or convert a jpeg to PDF for export?

    How do i create a PDF, or convert a jpeg to PDF for export?

    Oped the .jpg image in Preview    HD > Applications > Preview
    Then from the Preview menu bar click > File > Export
    Select PDF from the Format pop up menu then click Save.

  • How do I convert a  XLR created in works to a PDF?

    I created a document in Microsoft Works Spreadsheet which is a xlr file. I need to convert it to a pdf file. I installed adobe acrobat but now what do I do?

    Your going to have to work at it.  First You going to have to save it as an Excel file then you can save as a PDF.  Works was put out before Acrobat was even a gleam in someone's eye. And Adobe never did support the file type. Works died on Mac Platform about 10 years ago and probably didn't last many years longer on PC.
    Works first came on a Mac as direct competition to Appleworks. This was back in the day when MS was making every legal effort it could to kill off anything Apple.
    MY very first ever application for my First Mac an SE/30 was MS Works Because Apple hadn't come out with the Apple IIe Conversion yet. I wouldn't be ready for another couple of Months.  I suppose Works was the Daddy to Office.

Maybe you are looking for

  • BI_SDK_XMLA J2ee project - Can't get instance from Connection Factory

    Hi: The code: initctx = new InitialContext(); connectionFactory=(IConnectionFactory) initctx.lookup("java:comp/env/" + "SDK_XMLA"); At debug time I watch: initctx.lookup("java:comp/env/" + "SDK_XMLA")"= XmlaConnectionFactory (id=333) m_connectionMana

  • HTML Code query - does iweb turn my text to graphics?

    Hello I'm a bit of a novice but thanks to iWeb I've been able to build myself quite a competent commercial website. As the company is growing I'm suffering from the problem of not being able to edit the code until the site is published - as I have a

  • Smartform goint to dump

    hi every body....i have developed a smartform....it has to perform in background...so there is no selection screen....but while i am executing the print program its gng into short dump....coz it has to call all the existing data..if i use any selecti

  • Why can't I send and receive pictures after the new update

    Why can't I sent and receive pictures after the new update

  • Unlocking the iPhone for tmobile?

    Apple offers to unlock iPhones before purchase, will this allow me to use the iPhone, like the iPhone 4s to work on tmobile service?