Regards, po pdf

Hi,
When trying to display PDF PO from PO web visibility report in the portal, after 10+ minutes the following message appears:
Sorry, an error occured while retrieving the Purchase Order. Purchase Order URL is not accessible.
Please try again later.
If the problem persists, contact your administrator
Thanks,
Sydanna

Hi
Please contact your basis person to check the connectivity between the portal and the server for accessing the data.
Regards
Ramakrishna

Similar Messages

  • Regarding the pdf

    hi,
      i am generating the data in the spool request and the data is created.how this is attached as the pdf.
    thanks in advance for the solution

    Please...Do not duplicate posts regarding the pdf
    Keep the conversation on a single thread...
    Greetings,
    Blag.

  • Regarding the pdf formating

    hi,
      can any body tell how to convert the sap data into pdf format and send that pdf as an attachment through the email.
    it is very urgent.
    thanks in advance.

    *& Report ZSPOOLTOPDF *
    *& Converts spool request into PDF document and emails it to *
    *& recipicant. *
    *& Execution *
    *& This program must be run as a background job in-order for the write *
    *& commands to create a Spool request rather than be displayed on *
    *& screen *
    REPORT zspooltopdf.
    PARAMETER: p_email1 LIKE somlreci1-receiver
    DEFAULT '[email protected]',
    p_sender LIKE somlreci1-receiver
    DEFAULT '[email protected]',
    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.
    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.
    Spool to PDF conversions
    DATA: gd_spool_nr LIKE tsp01-rqident,
    gd_destination LIKE rlgrap-filename,
    gd_bytecount LIKE tst01-dsize,
    gd_buffer TYPE string.
    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.
    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
    WRITE 'Hello World'.
    new-page.
    commit work.
    new-page print off.
    IF sy-batch EQ 'X'.
    PERFORM get_job_details.
    PERFORM obtain_spool_id.
    Alternative way could be to submit another program and store spool
    id into memory, will be stored in sy-spono.
    *submit ZSPOOLTOPDF2
    to sap-spool
    spool parameters %_print
    archive parameters %_print
    without spool dynpro
    and return.
    Get spool id from program called above
    IMPORT w_spool_nr FROM MEMORY ID 'SPOOLTOPDF'.
    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.
    ELSE.
    SKIP.
    WRITE:/ 'Program must be executed in background in-order for spool',
    'request to be created.'.
    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.
    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.
    FORM convert_spool_to_pdf *
    FORM convert_spool_to_pdf.
    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
    EXPORTING
    src_spoolid = gd_spool_nr
    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.
    FORM process_email *
    FORM process_email.
    DESCRIBE TABLE it_mess_att LINES gd_recsize.
    CHECK gd_recsize > 0.
    PERFORM send_email USING p_email1.
    perform send_email using p_email2.
    ENDFORM.
    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 = 'Subject'.
    gd_attachment_desc = 'Attachname'.
    CONCATENATE 'attach_name' ' ' INTO gd_attachment_name.
    it_mess_bod = 'Message Body text, line 1'.
    APPEND it_mess_bod.
    it_mess_bod = 'Message Body text, line 2...'.
    APPEND it_mess_bod.
    If no sender specified - default blank
    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
    'Example .xls documnet attachment'
    'PDF'
    gd_attachment_name
    gd_attachment_desc
    p_sender
    gd_sender_type
    changing gd_error
    gd_reciever.
    ENDFORM.
    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.
    *& 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.
    check this.
    regards,
    Prabhu

  • Clarification Regarding Adobe PDF Settings

    Hi Folks,
    I have a doubt regarding printer settings. I have developed a application using VC++, My application creates a new printer and it copies the default "Adobe PDF settings" of Adobe printer.
    I want to change the adobe PDF Settings of my applications's printer say Eg: "View Adobe PDF Results".
    Initially "View Adobe PDF Results" is in checked status in "Adobe PDF Printer" when it copies to my application's printer i need "View Adobe PDF Results" to be in unchecked status.
    I have tried with Devmode2 in printer settings to make that particular field as "1" but it not working
    where to change the value exactly?
    How to change the UI with my own values?
    Regards,
    Nethaji.

    I've seen a Microsoft article somewhere which says that
    DevModes2 is for 16-bit app compatibility only
    DevModePerUser seems to do the trick.
    Using fairly low-level analysis, I found the "View PDF Results" was a byte at offset (decimal) 1136 (assuming beginning byte starts at 0).
    So under key HKEY_CURRENT_USER\Printers\DevModePerUser  value Adobe PDF has a REG_BINARY contains a byte at the above offset which has a value of
    00 = View PDF Results is OFF
    01 = View PDF Results is ON
    I guess the same key could be applied in HKEY_USERS\(dot)Default\...... and HKEY_USERS\S-1-5-18 (LocalSystem account) for services which use Adobe PDF.
    Hope this helps.
    Best Regards
    Keith White

  • Regarding open pdf files

    Dear Frds
    I have to open a pdf file when i click the button...
    the pdf file should be kept in the application
    using webdynpro....
    How to keep the pdf file in my application
    or how to keep pdfile resource in server....
    Thanks in advance
    G .kumar

    Hi Shravan,
    I suggest storing the PDF inside your mimes folder and if you have to internationalize it apply two-letter for the different countries (en, fr, es, it, ...).
    Create a context element of type IWDResource to map document to, generate the url with the following code and add the content of your context element to a FileDownload ui element.
              String currentFileName = "MYFILE.pdf";    
              String resourcePath = WDURLGenerator.getResourcePath(wdComponentAPI.getDeployableObjectPart(), currentFileName);
              IWDResource resource = WDResourceFactory.createCachedResource(new FileInputStream(new File(resourcePath)),
                   currentFileName,
                   WDWebResourceType.PDF,
                   true
              wdContext.currentContextElement().setFileResource(resource);
    regards,
    Christian

  • Issues regarding form pdf?

    Hello There,
    I recently downloaded Adobe Pro to test and create a form pdf. I performed the following:
    1. Included a few fields, including mandatory ones which showed * sign while designing. When I saved as pdf, on my local drive. When I opened the pdf file the mandatory * sign just didn't showed up.
    How can I force the user to enter all the mandatory fields before he saves the file?
    The other problem I faced is when I try to distribute and would like to save the pdf in my local drive, it wouldn't allow me to do so, but asks to save in share point or network drive
    Could you please advise?
    Looking forward to hearing from you.
    Thanks & regards
    Don

    The required size and resolution depend entirely on the size the image will be printed, and the printing method. You can check the "Effective Resolution" for the image in either the Links Panel or the Info Panel. That's the one that counts.
    For typical offset litho printing, you want something in the range of 300 ppi effective resolution (but as low as 244 will probably be ok with screen frequency of 150 lpi or less). For digital printing my rule of thumb is 180 -200 ppi effective resolution.
    These numbers presume the work will be viewed at arm's length or less. For large prints made to be viewed from a longer distance you need less resolution. Are you printing these images at 100% scale?
    You might want to read this thread: Distance-Resolution Formula

  • Issues regarding huge pdf files.

    I have a problem. After i export to pdf my indesign file and try to open it it says: "There was an error opening this document. The root object is missing or invalid." and it does this only if the pdf has more than 1GB. The export is made uncompressed because that is the way the typography wants it. And yes the images are big, becaused are tif. What can i do?

    The required size and resolution depend entirely on the size the image will be printed, and the printing method. You can check the "Effective Resolution" for the image in either the Links Panel or the Info Panel. That's the one that counts.
    For typical offset litho printing, you want something in the range of 300 ppi effective resolution (but as low as 244 will probably be ok with screen frequency of 150 lpi or less). For digital printing my rule of thumb is 180 -200 ppi effective resolution.
    These numbers presume the work will be viewed at arm's length or less. For large prints made to be viewed from a longer distance you need less resolution. Are you printing these images at 100% scale?
    You might want to read this thread: Distance-Resolution Formula

  • Regarding sending .PDF attachment through utl_smtp package

    Hi All,
    How can i send .PDF attachment throuch UTL_SMTP package using oacle pl/sql.
    Regds
    Shailesh

    http://www.google.com/search?q=UTL_SMTP+attachment
    results in a lot of hits how to do this; e.g.: http://www.oracle.com/technology/sample_code/tech/pl_sql/htdocs/Utl_Smtp_Sample.html
    If you are having trouble with the above samples feel free to ask and don't forget to include as much information as possible (e.g. 4 digit database and forms version, your sample source code etc.).
    cheers

  • Regarding - Multiple PDF Attachment and Classical report o/p to PDF

    Hello all,
    1.I am having a requirement wherein i have to convert a classical report o/p to PDF and send as an attachment.
    2.Again another challenge what i am facing here is, I have already triggered a PDF attachment mail in my code,
    Now they want me to convert a classical report o/p to PDF and send as an attachment along with the previous PDF in
    the same mail.
    Waiting for your replies.

    Hi ,
    There are many SDN threads related to this.
    Search SDN with ' Multiple Attachement by Mail'.
    Check these
    Re: Can we create multiple Smartform attachments on one e-mail?
    Re: send mail with multiple excel attachments
    And this is for PDF
    Multiple PDF attachments using CL_BCS Class

  • Regarding adding PDF file to adf Form

    Hi,
    in my application i have created a entity object which uses a database table*( PDF_table)*
    PDF_table has two columns i.e PDF_file (of type BLOB) and PDF description  (of type varchar(100))
    and in the ADF form my requirement is to browse a PDF file stored anywhere in the computer and save it in the database table(PDF_table).
    Can anybody tell me how can i do this?

    Hi,
    Thanks Samith and Shay for the reply..
    By using the links given by you guys i modified my application. but i am getting problem while committing ti Database..
    The source code of my application as follows..
    *<af:document id="d1">*
    *<af:messages id="m1"/>*
    *<af:form id="f1" usesUpload="true">*
    *<af:panelFormLayout id="pfl1">*
    *<af:inputText value="#{bindings.Description.inputValue}"* // description is a attribute of Database Table and of type varchar2
    *label="#{bindings.Description.hints.label}"*
    *required="#{bindings.Description.hints.mandatory}"*
    *columns="#{bindings.Description.hints.displayWidth}"*
    *maximumLength="#{bindings.Description.hints.precision}"*
    *shortDesc="#{bindings.Description.hints.tooltip}"*
    *id="it1">*
    *<f:validator binding="#{bindings.Description.validator}"/>*
    *</af:inputText>*
    *<af:inputFile label="Label 1" id="if1"*
    *value="#{bindings.Pdf.inputValue}" autoSubmit="true"/>* //where Pdf is a attribute of database table of type BFILE
    *<af:commandButton actionListener="#{bindings.CreateInsert.execute}"*
    *text="CreateInsert"*
    *disabled="#{!bindings.CreateInsert.enabled}"*
    *id="cb1"/>*
    *<af:commandButton actionListener="#{bindings.Commit.execute}"*
    *text="Commit"*
    *id="cb2"/>*
    *</af:panelFormLayout>*
    *</af:form>*
    *</af:document>*
    but after entering description and file path when i enter Commit it is showing an error i.e
    *Error: Cannot convert org.apache.myfaces.trinidadinternal.config.upload.UploadedFiles$FixFilename@155ef67 of type
    classorg.apache.myfaces.trinidadinternal.config.upload.UploadedFiles$FixFilename to class oracle.jbo.domain.BFileDomain*
    how can i solve this?...

  • Problem regarding Adobe PDF Reader Version for ADS services on EP 7.0 SP13

    Dear All,
    We are facing an issue regarding the Adobe reader version to be used for ADS services on our portal which is working on EP 7.0 and SP13.
    Please do let us know what is the proper Adobe reader version to be used for ADS services for our portal.
    Thanks and Regards,
    Soumyadeep Ghosh
    Edited by: Soumyadeep Ghosh on Jul 22, 2009 8:54 AM

    Hi Soumya ,
    1. Check ur adobe componet name in
    http://leapepdv.lancogroup.net:50000/monitoring/ComponentInfo
    your EP vrsion is EP 7.0 Sp13 . So adobe component vesrion also the same.
    Check weather it is the same or not.
    TO check Adobe document service
    http://************:50000/wsnavigator/enterwsdl.html
    click on the Adobe document service and test
    give ads user id password.
    2. Have u done ADS Config ?
    Regards,
    Surekha.

  • Data from check boxes fails to be collected, when sending the PDF as email

    Hi
    I am working on an interactive PDF that should act as an ordersheet for clients to fill out. I am using Acrobat Pro 9, and everything works as intended, but when the client tries to send the order by email (By pressing a button that uses "submit a form" as actio, where it sends the whole PDF to a single email), the pdf pops up in the email client, and everything looks fine, except all of the checkboxes. None of them have been checked, even though the client have done so. I have searched the forums without luck, so now i am trying in here.
    I have made sure that the client is using the version, that has the extended reader rights.
    If you feel need additional information regarding the PDF, just ask.
    Thank you very much for your time.

    Edit>Preferences>Email accounts>List of email accounts. Click the drop-down that says "add account" and select Gmail. After adding it, you can go to the account area and change it to default.

  • How do I display PDF document as single pages on iPad?

    Hi,
    I have a company catalogue in PDF format, 20 pages long. We use Issuu to allow customer to view the catalogue on their PCs and mobile devices.
    In Issuu you can customise the embed widget to show single pages, and this works fine when viewing the catalogue on a PC. The problem arises when trying to view the catalogue on an iPad. It appears that the iPad automatically sets the PDF to view as a Facing Pages document. It doesn't matter if I'm using Safari, or the Atomic browser we have installed (so that we can hide the URL bar).
    I've created the document in inDesign as a single page document but the iPad still merges pages 2-3, 4-5, 6-7 etc.
    The iPads will be used in our retail stores so it's important that the set up and navigation is as simple as possible. The catalogue is placed within an iFrame on the page so that I can but a navigational banner at the top that easily takes customers back to the main menu page. It's important that the catalogue opens within the page. The Issuu embed widget for Tumblr, etc only creates a preview of the catalogue which then opens in a separate tab, which unfortunately will not be suitable to our needs.
    You can view the page here: http://www.eurocollections.com/block/catalogue.html
    I've tried a number of different options, I've written to Issuu but they were unable to help as it only seems to be an iPad-related problem.
    Any help or suggestions would be greatly appreciated.
    Kind regards,
    Peter

    The PDF viewers on the iPad do not understand customised widgets.  They understand the PDF format, exactly as it was designed by Adobe.  Instead of trying to use a custom solution, use the features which are provided by the PDF format.  Custom solutions work only for the situations that the company that wrote the custom solution wants them to work and they are a corruption of the normal way PDFs are used.
    In your situation I'd remove all dependency on any custom widgets from your PDF document.  Instead you can use links which allow you to click on a piece of text or an image in the PDF and the PDF software will take you to a different page.  This is part of the PDF standard and will work on all software capable of showing PDFs.  It is all your users should need to navigate from one part of your catalogue to another.  Whatever software you're using to create your PDF should give instructions on how to create links in your PDF document.
    Similarly your use of iFrames is a little stange.  If your material is on a web site, put it in web pages where you can use all the features web pages give you, including blue-underlined links to other pages.  If, instead, your material is in a PDF then put all the navigation in the PDF.  Don't try to depend on a strange interaction between the PDF and your web pages.

  • Link to page within PDF file.

    Hi all,
    We have some large PDFs that we currently store on an apache server. Because of the number of pages (over 33,000) we created sort of an index page using html that users could quickly search in and then select a name that is a link to the correct page in the PDF. This worked like a charm. We are working to move the old website that was on the apache server into Vibe. I haven't been able to get the setup we have for the large PDFs to transfer into Vibe as the PDF will open using the permalink, but the PDF just opens to its first page. Following is an example of the link from the apache server.
    http://www/Notices/2012/MVCTax201205....PDF#page=1905
    We just took the permalink and added the #page=1905 to it. As indicated, it opens the PDF, but only to the first page.
    Does anyone know of some way to make this work, or is it likely to be impossible within the constraints of Vibe? I would really like to just be able to search the PDF using Vibe's indexing, but it appears either size or format is an issue. Any other thoughts on how this could be accomplished would be appreciated as well.
    Thanks, Don.

    Thanks for your response Erik. I think I had already increased these, but I need to confirm as I may have missed something.
    Don..
    >>> On 19/02/2013 at 2:26 PM, in message <[email protected]>, e-ebell<[email protected]> wrote:
    I can't help you at the moment regarding your "PDF#page" problem.
    But increasing the max size of a document's index and the number of
    words and terms to be indexed per document is well documented. You just
    have to find the section in the docs ;-)
    Here we are: '4.12.4 Increasing the Number of Words That Are Indexed
    for Each Document'
    (http://www.novell.com/documentation/...c.html#bxirext)
    You should adapt your settings for lucene.max.fieldlength,
    doc.conversion.size.threshold and
    doc.max.text.extraction.size.threshold. I can't tell which settings
    might fit in your case as you are using extraordinary large documents.
    Just give it a try ;-)
    HTH
    Cheers
    Erik
    Erik Ebell - Novell Partner, TTP Member
    Code and Concept - Enterprise 2.0 & Innovative IT
    ('www.codeandconcept.de' (http://www.codeandconcept.de))
    ShareOnVibe - The Productivity Booster for your Vibe platform!
    ('www.ShareOnVibe.com' (http://www.ShareOnVibe.com))
    e-ebell's Profile: http://forums.novell.com/member.php?userid=37635
    View this thread: http://forums.novell.com/showthread.php?t=464259

  • Adobe PDF for Goods Issue / Stock

    Hi All,
    I've been looking thru the list of available Adobe Forms in SFP, and there are a few for purchasing (MEDRUCK etc) and some for issuing and receipting. I haven't  been able to locate any around the inventory control area.
    It is easy to use adobe forms for Purchase Orders (assigned in Define Message Types for Purchase Order) however it is not clear in configuration where to assign an adobe form for receipts / issues and inventory.
    Has anyone had any luck using adobe forms for these functions or is everyone still using smartforms? Does SAP even support adobe forms for Goods Issues / receipt and pyhsical inventory documents?
    Kind Regards,

    Nomally,  PDF forms are supported for only External documents , since IM related documents are for the companys internal purpose i guess there isnt an option given for PDF forms for them . But there are standard programs which you can use to convert any Spool to PDF  SE38: RSTXPDFT4  .
    Or you can install PDF printer , and get any output in PDF format directly from SAP.
    Or you need your abaper to use OTF in the Print program to gte an outpurt in PDF.

Maybe you are looking for

  • ITunes update can not install due to Apple Software Update

    When i download the newest edition of iTunes it saves to my desktop. Then i double click it, it asks me the usual (where i want the files installed to etc) then it seems to update, but near the end, it says "The Older version of AppleSoftwareUpdate c

  • Ical not sending email notifications

    iCal no longer sends email reminders. I have come to rely on this feature and it no longer works. I am running OS 10.6.

  • DME Accompanying Sheet for files created with PMW

    Happy new Year! We are using the PMW to create various payment formats. From standard payment programs like RFFOD__U we are used to get summary sheet (like sap script F110_D_DTA). This summary sheet contained for example the total of account numbers

  • Installing plugins in GB.

    I just went to a GB class and they showed lots of plug-ins in GB and said there were many free ones available. I've only found VST plug-ins and as I understand it, they need to be AU. Where can I get these? Also.. there is a VST folder in Library/Aud

  • Best way to export iMovie project for editing

    I am creating an iMovie project in iMovie 09 with a friend. I have part of the movie and he has the other part (basically I have put together a lot of the video and some transitions, and he is going to put in some music he created and add a couple of