Overlay Creator interactivity to output into HTML, PDF, EPUB

Need the interactive options introduced in Overlay Creator to be Output to HTML, PDF, EPUB etc. Right now you can only use them in the Digital Publishing Suite.

Hi D.,
using desformat=html you'll get the report-output in html.
What do you mean with "not get same results"? Did you get an report with other data? Or an error message?
Regards
Rainer

Similar Messages

  • How to create a multiple PDF-form outputs into one PDF?

    Hi,
    I`d like to create a PDF document with a few pages in it, build from different PDF-forms using many form-function calls. Where each PDF-form can use its own interface.
    I`ve made a simple programme, but as the result I have a few separated documents with scrolling tab instead of one document with all pages in it.
    What am I doing wrong?
    *& Report  ZZ_TEST_PDF_MULTY
    REPORT  zz_test_pdf_multy.
    PARAMETERS:
      p_page TYPE i DEFAULT 2,
      p_row TYPE i DEFAULT 4.
    END-OF-SELECTION.
      DATA:
        tb_itf TYPE tsftext,
        s_itf TYPE tline.
      DATA:
        c_fmname TYPE rs38l_fnam,
        s_outputparams TYPE sfpoutputparams,
        s_docparams TYPE sfpdocparams,
        s_formoutput TYPE fpformoutput,
        s_sfpjoboutput TYPE sfpjoboutput,
        c_page TYPE string,
        c_row TYPE string.
      CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
        EXPORTING
          i_name     = 'FP_TEST_00'
        IMPORTING
          e_funcname = c_fmname.
      s_outputparams-nodialog = 'X'.
      s_outputparams-device   = 'PRINTER'.
      s_outputparams-preview  = 'X'.
      s_outputparams-dest     = 'PDF'.
      s_outputparams-getpdf   = ' '.
      s_outputparams-title    = sy-title.
    *  s_outputparams-bumode   = 'M'.
      CALL FUNCTION 'FP_JOB_OPEN'
        CHANGING
          ie_outputparams = s_outputparams
        EXCEPTIONS
          cancel          = 1
          usage_error     = 2
          system_error    = 3
          internal_error  = 4
          OTHERS          = 5.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      s_docparams-langu   = 'R'.
      s_docparams-country = 'RU'.
      DO p_page TIMES.
        MOVE sy-index TO c_page.
        REFRESH tb_itf.
        DO p_row TIMES.
          MOVE sy-index TO c_row.
          c_row = sy-index.
          CONCATENATE
              'page' c_page 'row' c_row
            INTO s_itf-tdline SEPARATED BY space.
          APPEND s_itf TO tb_itf.
        ENDDO.
        CALL FUNCTION c_fmname
          EXPORTING
            /1bcdwb/docparams  = s_docparams
            textlines          = tb_itf
          IMPORTING
            /1bcdwb/formoutput = s_formoutput
          EXCEPTIONS
            usage_error        = 1
            system_error       = 2
            internal_error     = 3.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ENDDO.
      CALL FUNCTION 'FP_JOB_CLOSE'
        IMPORTING
          e_result       = s_sfpjoboutput
        EXCEPTIONS
          usage_error    = 1
          system_error   = 2
          internal_error = 3
          OTHERS         = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.

    Sorry, but making single PDF from many smartforms is not what I want to achieve. I wold like to know how to get one PDF document made by ALC-forms.
    In my example I have many PDF documents. So, how to get (or put) them all in one PDF?
    ps: the way to get one PDF from smartforms is also here:
    "Combining Multiple Smartform Outputs Into One PDF file"
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/62ae7fcd-0b01-0010-3e9d-a54f26944450

  • Multiple JSPs output into single PDF file

    Could anyone guide me on how do I combine output of multiple JSP files into a single PDF file? I have got 8 different reports and shall required to have single output of all of them in a PDF file. Its urgent. Please help.

    Hi Mahalakshmi,
    Clik on the link to view document: <b>[Combining Multiple Smartform Outputs Into One PDF File|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/62ae7fcd-0b01-0010-3e9d-a54f26944450?overridelayout=true]</b>
    Thanks
    Venkat.O

  • Embed an interactive google map into a PDF

    Hi there,
    I'm currently working on a client project where many different store locations need to use the same layout, but with a large map. In order to save costs for the client, the aim is that each store will edit the template to their own store. So I'm wanting to embed google maps into the pdf (which I've done via InDesign), where the store can simply drag the map and zoom in on their individual location (pins are not needed) and then print out their document. I've been able to make an interactive map using the html code google maps gives you in InDesign, and works fine in Adobe Content Viewer - but not in Adobe Acrobat, where it ends up as a static image. This happens regardless of wether I save it as an interactive PDF, or SWF file.
    Is there anyway to embed a dynamic, working google map into an interactive PDF document?
    (notes: I am working on iOS. The file will have to work on both Windows and Macintosh, but I understand that it may only work when the file is opened in Acrobat)

    giselabell wrote:
    (notes: I am working on iOS. The file will have to work on both Windows and Macintosh, but I understand that it may only work when the file is opened in Acrobat)
    How do you use InDesign on iOS ?

  • This is Regarding wants table values output into HTML formate

    Hello Experts,
    can you please help me regarding this,i want table valuees in to HTML formate,so can you please tell solution ,is there any FM or any other solution for geeting Table values in HTML formate.please suggest me
    Thanks and regards,
    durga.k

    dketcham wrote:
    cotton.m wrote:
    >
    2) I'm looking at how you called stuff, and you're trying to call the jsp file as an image? That jsp isn't the source of the image, just a page linking to an image. I think if you really want to do things that way you're going to need to just include that jsp within the jsp you're calling it from (or you can do it the easy way, and if you have the information to get the path of the image you want, you could simply call the image from the first jsp you posted)This is incorrect.
    There are two JSPs. The second when called will (if it worked) return the source of an image as stored in the database.even when called with <img src=xx.jsp>??
    Yes.
    If any of what I say next seems obvious or otherwise negative I apologize, just trying to explain and I don't know what you know vs what you don't.
    The link in the src is just a URL not a filetype. So just because it ends with JSP does not mean it has to return HTML. The content type is determined by the browser using the Content-Type header returned by the server in the HTTP response. In this case the header is set to be a jpeg so that's what the browser will attempt to interpret the content part of the response as.
    So in fact one is not limited to just HTML or images but whatever content type you would like to return (that the browser can understand anyway). This could be HTML or it could be an image of some type or it could be a PDF or it could be an Excel spreadsheet. All you have to do in the JSP is set the header appropriately and then send content that is actually in that format.
    This does not just apply to JSP by the way but all other web programming languages. You can do similar things to produce the same results in PHP, Perl, ASP etc.
    The only JSP/Servlet complication is whether or not doing this in a JSP is a "good" idea but I am not an expert enough at that to make a definitive statement. Mostly though JDBC in a JSP is a no-no.

  • Save a the output of a SAP report into Html

    Hi , I have a SAP report which in MM to determine pro rate factor of oil & water for the  given combination of  plant, storage location, material, period and   year  . When we run the report it produces a report which can be printed and signed by managers, I wnat to save this to N drive automatically for future use just incase something goes wrong .So I want to save this automatically in html in the N drive, how do I do that please.
    Thanks
    Aarav

    Hi ,
    try this
    USE THE FM
              CALL FUNCTION 'WWW_HTML_MERGER'
                   EXPORTING
                        template    = rep_template
                   IMPORTING
                        html_table  = html[]
                   CHANGING
                        merge_table = merge_table[]
                   EXCEPTIONS
                        OTHERS      = 1.
    I think this will convert the output into HTML format.
    So in the HTML[] you will have the data.
    NOW upload this data into the N drive.
    I got this code from
    include FGRWEF98B_F98_BATCH_OUTPUT_CLO.
    Check this include .
    Regards,
    Venkatesh.

  • Split a long PDF form programmatically into smaller PDF forms

    You can programmatically split forms using LC Assembler service and use the DDX. You could extract page1 from pdf1 and create a pdf, then page2 of pdf1 into a different PDF using something similar to:
    <?xml version="1.0" encoding="UTF-8"?>
    <DDX xmlns="http://ns.adobe.com/DDX/1.0/">
    <PDF result="Final.pdf">
         <PDF source="PDF1.pdf" pages="1"/>
    </PDF>
    <PDF result="Final2.pdf">
          <PDF source="PDF1.pdf" pages="2"/>
    </PDF>
    </DDX>
    To split according to Level 1 bookmarks, you can also use the PDFFromBookmarks tag.
    For example,
    <PDFsFromBookmarks prefix="stmt">
         <PDF source="doc1.pdf"/>
    </PDFsFromBookmarks>
    More info is available in the Assembler Service and DDX Reference available at http://help.adobe.com/en_US/livecycle/10.0/ddxRef.pdf.

    Sorry, but making single PDF from many smartforms is not what I want to achieve. I wold like to know how to get one PDF document made by ALC-forms.
    In my example I have many PDF documents. So, how to get (or put) them all in one PDF?
    ps: the way to get one PDF from smartforms is also here:
    "Combining Multiple Smartform Outputs Into One PDF file"
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/62ae7fcd-0b01-0010-3e9d-a54f26944450

  • Multiple smartform output to single pdf file

    HI,
    I am new to ABAP. I have a requirement to combine multiple smartfrom output to  single pdf file.  I searched in this site. I got material but i did not get the complete concept. Can anybody tell me the methodology and sample code to do that.
    Thanks & regards,
    Maha.

    Hi Mahalakshmi,
    Clik on the link to view document: <b>[Combining Multiple Smartform Outputs Into One PDF File|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/62ae7fcd-0b01-0010-3e9d-a54f26944450?overridelayout=true]</b>
    Thanks
    Venkat.O

  • How to convert a jsp into a pdf file

    Hi,
    I am working on a struts based project . In this project i have a jsp which displays table in a nested format , but i have to provide the user a button say
    "GET PDF" on click of which that entire jsp should get exported as a .pdf file as it is .
    1] I cant use display tag because export functionality is not provided for nested table.
    2] I cant figure out how to put an entire jsp as an input stream if i was to use itext (that is if its possible ).
    What are my other options ? Bottom line, what i need is to "make a .pdf file of a .jsp displayed, on a click of a button ".
    Thanks in advance,
    Anjali.

    Anjali_Pal wrote:
    Hi,
    I am working on a struts based project . In this project i have a jsp which displays table in a nested format , but i have to provide the user a button say
    "GET PDF" on click of which that entire jsp should get exported as a .pdf file as it is .
    1] I cant use display tag because export functionality is not provided for nested table.
    2] I cant figure out how to put an entire jsp as an input stream if i was to use itext (that is if its possible ).
    To start with it isn't the jsp but rather the output of the JSP that you want in a pdf. The solution to that is that you must provide a method that puts the output into a pdf. Normal solutions for that first start by finding an appropriate pdf library of which there are more than one.
    What are my other options ? Bottom line, what i need is to "make a .pdf file of a .jsp displayed, on a click of a button ". Besides finding an existing library you could write your own.

  • Convert pdf and output to html

    I need help!
    If I have a pdf file and I want to upload to iFS, should I convert it to html or test format and save to database with iFS feature? Or it's better to save as a pdf file and output as html with iFS feature.
    Also, if I a some images in the pdf file, what should I do?
    Thank you so much in advance.
    Hong
    null

    Try to use filterDocumnet() and getFilteredDocument() in oracle.ifs.beans.Document. It helps to generate the PDF into HTML format.
    null

  • Is html/pdf output format from BO 508 compliant?

    Hi Experts -
    I heard BO reporting tool can output html/pdf format.  Are they 508 compliant?  If not, how can I make them into 508 compliant please advice.
    Thanks

    Hi
    You can make it 508 complaint  by choosing/check marking this option from BusinessObjects InfoView > Preferences > Webi > 508 Complaint.
    Please note that this forum is not the right area to discuss BO technical questions.
    Raise your future queries at: SAP BusinessObjects Web Intelligence
    Hope this helps.
    Best,
    DeepB

  • How to download BI Queries(more than 2) Output into a single PDF file?

    Dear All,
    Requirement:
    How to download BI Queries(more than 2) Output into a single PDF file?
    Purpose:
    The user wants to see 9 queries output into a single file (preferably a zipped file), sent to his email id on daily basis.
    Constraints:
    1) The user may not have SAP GUI on his system.
    2) The user do not want to log into the portal. (otherwise I would not have needed this help)
    Please help me with all possible ways to achieve this task.
    Regards,
    Avinash.

    Hi,
    Please check this links;
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0bfcac90-0201-0010-52a3-d5b270b86ef3
    Information Broadcasting Part 1 u2013 System Parameter Setting
    http://sapbwneelam.blogspot.com/2008/09/information-broadcasting-part-1-system.html
    Information Broadcasting-Part 2 -System Settings
    http://sapbwneelam.blogspot.com/2008/09/information-broadcasting-part-2-system.html
    Information Broadcasting Part 3 u2013 Scheduling the First Report
    http://sapbwneelam.blogspot.com/2008/09/information-broadcasting-part-3.html
    How To... Troubleshoot Information Broadcasting (BEx Workbooks)
    http://sapbwneelam.blogspot.com/2008/09/how-to-troubleshoot-information.html
    Hope it Helps
    Regards
    CSM Reddy

  • Interactive Overlay Creator

    Hi,
    Does anyone know where I can download the additional AIR utility, the Interactive Overlay Creator?
    I downloaded the Content builder and tutorials about a month ago and have only got round to playing with it now and it seems I need the Interactive Overlay Creator.
    It looks like there have been some developments since I downloaded the tools and perhaps these downloads are not available any longer?
    If anyone knows anything or can send me a link to the download that would be great.
    Cheers,
    Jamie

    "Some development" is a serious understatement. At this point you'll need to download the release tools.
    Links to Mac/Win CS5/CS5.5 tools are here: http://kb2.adobe.com/cps/900/cpsid_90002.html
    Bob

  • Is it possible to convert PDF file into HTML

    Dear friends
    Is it possible to convert PDF file into HTML. I have few hundread PDF files i like to convert this files into HTML. I hope it can be done through Java but i don't know how to start this coding. anybody can give me a brief idea to go ahead.

    Why do you want to do this yourself? I quick search on Google showed several utilities to do this, some freeware, some commercial.

  • InDesign CS6 - Can you add Google Walking Tour into a PDF document or interactive pdf?

    Hello,
    I am trying to figure out how to add a Google Walking tour into my pdf document. I tried using the HTML feature in InDesign CS6 but all i get is a static image of a map. Acording to the features of InDesign this should be working correct? Please let me know if this is possible or not. Thank you!
    this is an example of the kind of a tour i am talking about:
    https://www.google.com/maps?q=churchill+downs+apartments&ll=39.668589,-104.889007&spn=0.00 7325,0.016512&sll=39.669082,-104.889653&layer=c&cid=6959793594299031036&panoid=xDKaTZWvSuU KbJAQUvKKcA&cbp=13,304.18,,0,0&hq=churchill+downs+apartments&t=m&z=17&cbll=39.66918,-104.8 90121
    I've copied the HTML that Google provides for embeding but no success yet. Thanks!

    That will work in DPS, but not, AFAIK, in PDF.
    Bob

Maybe you are looking for

  • System Throws short dump while executing data source 2LIS_11_VASCL in RSA3.

    Hello Experts, I got short dump while executing data source 2LIS_11_VASCL in RSA3. The details are as follow. When importing object "MC11VA0SCL_TAB", the structure did not match the structure of the target object. The error occurred in component no.

  • There should be a smoother way to transfer a folder of mus

    I've been using the ZEN V Series Media Explorer to copy music to my Zen V Plus. It ought to be possible to copy a folder of music from my hard dri've to my Creative Zen V Plus player, automatically creating a playlist having the same name as the fold

  • HTTP/S POST from J2SE adapter engine (NO SOAP)

    Hi there, We have a scenario at work where we have XI sending messages to the "lightweight" J2SE adapter engine in the DMZ....and from there the message is sent out to an HTTPS site that is obvioulsy outside of our network. Currently I can see that t

  • Display Polish letters in a Java program

    Hi, I'm internationalizing a small app. I have properties file for Polish language encoded as UTF-8. When I run the program it displays some non-sense characters instead of the Polish letters. In what format do I have to encode the properties file? O

  • Chart Web Part to not plot zeros on a line graph

    Hi all, Is it possible to not plot zeros on a line graph? I have a line chart with days of the current month along the x-axis and a value on the y-axis. I have a series representing a forecast as a line that will show what the values along for the wh