Reports Sugestion - Data Template Support for Downloadable PDF Reports.

This is something that I miss in APEX reports that I would like to see. Right now I have BI Publisher tied to my APEX install but there are reports I would like to move over but I hate the fact that APEX does not have the ability to use BI Publisher XML Data Templates! It seems like if you have the integration this would be a natural thing to have so you could use complex report and APEX security (as I found a few issues in BI Publisher that are deal killers for running a few of my newer reports directly on BIP). Most of my reports are too complex and would require extensive XPath coding to setup using RTF templates. This just seems like something that would be very useful in APEX.

David:
I should have a whitepaper on this subject by the end of the month.
http://jastraub.blogspot.com/2008/12/more-changes-to-flexwsapi.html
I know this doesn't help you right now so I will describe how it works. Create a Manual Web reference as described on Tyler's blog, except for the SOAP Envelope, using something like:
<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pub="http://xmlns.oracle.com/oxp/service/PublicReportService" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
<soapenv:Header/>
<soapenv:Body>
<pub:runReport soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<reportRequest xsi:type="pub:ReportRequest">
<attributeFormat xsi:type="xsd:string">#P2_FORMAT#</attributeFormat>
<parameterNameValues xsi:type="pub:ArrayOfParamNameValue" soapenc:arrayType="pub:ParamNameValue[]"/>
<reportAbsolutePath xsi:type="xsd:string">#P2_ABS_PATH#</reportAbsolutePath>
</reportRequest>
<userID xsi:type="xsd:string">#APP_USER#</userID>
<password xsi:type="xsd:string">#P101_PASSWORD#</password>
</pub:runReport>
</soapenv:Body>
</soapenv:Envelope>
You can hardcode format to pdf if that is all you wish to download. You can also hardcode the userID parameter, reportAbsolutePath, and the password parameter if you wish. Use something like DOWNLOAD_DOCUMENT as the collection name.
Now create a page and create a before header process of type Web service that invokes this reference. The document's binary data will be stored in a node of an XML document in the collection encoded in base64 format. You will need another process that converts that to a BLOB and then presents a dialog to the browser to save the document. You can accomplish with a process like the following, after the call to the Web service:
declare
l_mime varchar2(48);
l_name varchar2(4000);
l_base64 clob;
l_blob blob;
l_size number;
l_xml xmltype;
l_ns varchar2(4000) default null;
l_path varchar(255) default '//multiRef';
begin
l_mime := flex_ws_api.parse_response('DOWNLOAD_DOCUMENT',l_path||'/reportContentType/text()',l_ns);
l_name := 'test.pdf';
l_base64 := flex_ws_api.parse_response_clob('DOWNLOAD_DOCUMENT',l_path||'/reportBytes/text()',l_ns);
l_blob := flex_ws_api.clobbase642blob(l_base64);
l_size := dbms_lob.getlength(l_blob);
htp.init;
owa_util.mime_header( nvl(l_mime,'application/octet'), FALSE );
htp.p('Content-length: '||l_size);
htp.p('Content-Disposition: attachment; filename="'||replace(replace(l_name,chr(10),null),chr(13),null)||'"');
owa_util.http_header_close;
wpg_docload.download_file( l_blob );
apex_application.g_unrecoverable_error := true;
end;
I hope that helps. Stay tuned for the white paper and sample application.
Regards,
Jason

Similar Messages

  • Template builder for adobe pdf and excel

    Hi All
    I couldnt find plugins and template builders for adobe pdf and excel.
    some pointers pls..
    thanks
    cm

    Rainer,
    I want to use this PDF Templates in EBS, is it possible?.. and also I have 10 sample output pdfs and one RDF for my AR Invoice Report.
    For this scenario do i require PDF Writer Software?.. I am new to develop reports in pdf templates.
    please adivce me
    with regards
    Ram

  • What are the Non SAP data sources supported for Analysis workbooks?

    AO 1.4 SP6
    BO 4.1 SP2
    What are the Non SAP data sources supported for Analysis workbooks?
    Thanks.

    HANA is a data source (which could contain non-SAP data)
    For other Excel front-ends that may connect to "non-SAP" data look at Live Office or Power BI by Microsoft - see Excel and Power BI connectivity to SAP BusinessObjects Universes | Power BI

  • FlexPMD Coldfusion component for creating PDF report

    http://www.flexinabox.com/index.cfm/2009/11/29/FlexPMDPDF--A-ColdFusion-PDF-report-generat or-for-Flex-PMD
    Enjoy !
    Xavier

    Don't want to use third-party libraries? Then you'll have to write your own code that outputs data according to the PDF specifications. You can download them from Adobe:
    http://partners.adobe.com/public/developer/pdf/index_reference.html
    Personally I would recommend the third-party libraries as this is a very large wheel to reinvent.

  • Multilingual support for BI Publisher reports

    Hi all,
    We are currently using BI Publisher APIs to generate reports. Our aim is to enable multi-language support for these reports.The translatable strings based on the locale are stored in xliff files. Using jedit, UTF-8 encoding is chosen as the default encoding for these xliff files. It works fine with french and some other single byte languages but with double byte languages like chinese,japanese it is throwing the below mentioned error.
    Interestingly, with the same type of encoding (UTF-8), the BI Publisher stand alone server successfully supports the multi byte feature.
    java.io.UTFDataFormatException: Invalid UTF8 encoding.
    at oracle.xml.parser.v2.XMLUTF8Reader.checkUTF8Byte(XMLUTF8Reader.java:160)
    at oracle.xml.parser.v2.XMLUTF8Reader.readUTF8Char(XMLUTF8Reader.java:187)
    at oracle.xml.parser.v2.XMLUTF8Reader.fillBuffer(XMLUTF8Reader.java:120)
    at oracle.xml.parser.v2.XMLByteReader.saveBuffer(XMLByteReader.java:450)
    at oracle.xml.parser.v2.XMLReader.fillBuffer(XMLReader.java:2363)
    at oracle.xml.parser.v2.XMLReader.tryRead(XMLReader.java:1087)
    at oracle.xml.parser.v2.XMLReader.scanXMLDecl(XMLReader.java:2922)
    at oracle.xml.parser.v2.XMLReader.pushXMLReader(XMLReader.java:519)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:283)
    at oracle.apps.xdo.template.FOProcessor.mergeTranslation(FOProcessor.java:1922)
    at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1706)
    at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:1027)
    at glog.server.report.BIPReportRTFCoreBuilder.format(BIPReportRTFCoreBuilder.java:61)
    at glog.server.report.BIPReportCoreBuilder.build(BIPReportCoreBuilder.java:152)
    at glog.server.report.BIPReportCoreBuilder.buildFormatDocument(BIPReportCoreBuilder.java:77)
    at glog.webserver.oracle.bi.BIPReportProcessServlet.process(BIPReportProcessServlet.java:279)
    at glog.webserver.util.BaseServlet.service(BaseServlet.java:614)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:654)
    at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:445)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:379)
    at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:292)
    at glog.webserver.report.BIPReportPreProcessServlet.getDocument(BIPReportPreProcessServlet.java:57)
    at glog.webserver.util.AbstractServletProducer.process(AbstractServletProducer.java:79)
    at glog.webserver.util.BaseServlet.service(BaseServlet.java:614)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at glog.webserver.session.ParameterValidation.doFilter(ParameterValidation.java:29)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at glog.webserver.screenlayout.ClientSessionTracker.doFilter(ClientSessionTracker.java:59)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at glog.webserver.util.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:44)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:263)
    at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:190)
    at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:283)
    at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:767)
    at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:697)
    at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:889)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:690)
    at java.lang.Thread.run(Thread.java:595)
    <Line 1, Column 1>: XML-20108: (Fatal Error) Start of root element expected.
    oracle.apps.xdo.XDOException
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.apps.xdo.common.xml.XSLT10gR1.invokeNewXSLStylesheet(XSLT10gR1.java:641)
    at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:247)
    at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:181)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1151)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:275)
    at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1809)
    at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:1027)
    at glog.server.report.BIPReportRTFCoreBuilder.format(BIPReportRTFCoreBuilder.java:61)
    at glog.server.report.BIPReportCoreBuilder.build(BIPReportCoreBuilder.java:152)
    at glog.server.report.BIPReportCoreBuilder.buildFormatDocument(BIPReportCoreBuilder.java:77)
    at glog.webserver.oracle.bi.BIPReportProcessServlet.process(BIPReportProcessServlet.java:279)
    at glog.webserver.util.BaseServlet.service(BaseServlet.java:614)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:654)
    at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:445)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:379)
    at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:292)
    at glog.webserver.report.BIPReportPreProcessServlet.getDocument(BIPReportPreProcessServlet.java:57)
    at glog.webserver.util.AbstractServletProducer.process(AbstractServletProducer.java:79)
    at glog.webserver.util.BaseServlet.service(BaseServlet.java:614)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at glog.webserver.session.ParameterValidation.doFilter(ParameterValidation.java:29)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at glog.webserver.screenlayout.ClientSessionTracker.doFilter(ClientSessionTracker.java:59)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at glog.webserver.util.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:44)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:263)
    at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:190)
    at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:283)
    at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:767)
    at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:697)
    at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:889)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:690)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: oracle.xdo.parser.v2.XMLParseException: Start of root element expected.
    at oracle.xdo.parser.v2.XSLProcessor.reportException(XSLProcessor.java:806)
    at oracle.xdo.parser.v2.XSLProcessor.newXSLStylesheet(XSLProcessor.java:571)
    Thanks,
    Anuradha .

    Hi Klaus,
    Even notepad does not solve the issue!
    Is there any other text editor with reliable encoding, by which we can save as UTF-8?
    Thanks
    Kosstubh

  • File name for downloaded PDF

    I have an application that provides files for download using obscured urls. I use the Content-Disposition header in the http response to set the proposed file name. This works fine if the user opts to save the file directly from the link without opening it (for example, in Internet Explorer, the user right-clicks the link and selects 'Save Target As...'). However, if the PDF is opened, and then the user selects 'File-Save As' from the menu (or clicks the Save icon), the proposed file name is not used. This does work in other applications, just not in Adobe Reader.
    So, the questions are:
    1 - is there a way to make this work as required - OR -
    2 - is this something that will be fixed in a future version

    Its been almost 3 years, has there been any update on this issue? We are experiencing the same issue. Our numerous customers are thinking about just using a different pdf reader that supports this standard. All workarounds we have encountered are hacks around the URL and are unacceptable for our customers.
    Please respond, we would hate for Adobe to lose all of the users that our customers have.

  • NI-supported Direct to PDF Report LV Toolkit

    NI, that is not right how you moved my idea to duplicate with this old idea from 2010.
    My new idea received 12 kudos in 24 hours.  The old idea has 60+ kudos but how is anybody to find it?  Nobody will even consider an idea from 2010.  The ideas exchange system is flawed in this respect.
    My post and the feedback received clearly points to the fact that after 4 years the solutions provided for this on the tools network are inadequate.
    I don't purchase hardware from NI and I don't do data acquistition.  I rely on NI in-built tools and have noticed a steep decline in NI's production of new tools for LV.  I don't believe the LV communitiy is large enough for companies to produce good (reliable and proven) add-ons for LV due to economics.
    I own the report generation toolkit but don't use it as it's too cumbersome, has too many dependencies and takes too long to develop.  This idea is completely un-related to the report generation toolkit.
    In my opinion as a long time LV user, NI should develop a library for direct to PDF reports.

    Hi battler,
    I apologize for any frustration this has caused you. R&D strongly considers the Idea Exchange when we are preparing future releases. My understanding is that ideas are set as duplicate with an old one, such as yours, so that all of the input from customers can be consolodated. This does not mean that your input is not highly valued and not a part of the process of making our future releases, and as it is still a recent post, is something we will be paying attention to.
    Have a great weekend! 
    Rahul B.
    Applications Engineer
    National Instruments

  • Error Report: No Data Usage Alerts for 250 MB Plan - June 2014

    Hi, this post will report a data usage alert error for June 2014.
    I previously signed up for data usage alerts when 50%, 75%, and 90% of my data is used. On June 10, at 11:00 PM, I discovered through my Verizon Wireless account that over 250 MB of data had already been used (my plan contains 250 MB). I did not receive any usage alerts prior to this time. I immediately upgraded to the 500 MB plan to avoid overage charges.
    If the data usage alerts had worked properly, I would not have faced the upgrade fee or overage charges. Would it be possible to cancel the additional charges that arose this month because the data usage alerts did not work properly? 
    Thank you!
    Hannah

    Are you serious!!!  Look at all of the calls on this matter in your records and fix it.  I am sure at this point that it is another Verizon scam to solicite millions of dollars from it's customers only to have yet another class action lawsuit filed so the lawyers can get rich and the customers screwed.
    AyaniB_VZW <[email protected]> wrote:
    AyaniB_VZW  created the discussion
    "How to Stop False Data Usage Alerts?"
    To view the discussion, visit: https://community.verizonwireless.com/message/1219549#1219549
    >

  • No support for downloading Creative Suite 5 Design Premium?

    I downloaded a trial version of v5 last year january.  I subsequently purchased an educational version as faculty/staff and applied my license to the trial version.
    Fast forward to the present.  My old laptop has been scrapped and I am told I am entitled to install the software on up to 2 computers.  However, there is no link available (Adobe is on version 5.5; a dot upgrade rather than a full version), no mirror, nor any support for helping me get the media (e.g. shipping install media).
    Adobe's solution is for me to buy the full version of 5.5 (no upgrade path).
    Seriously?  No dowloadable links for in-release?  There's no version-controlled distribution for licensed customers?  No offer of support other than a retail pitch to "net new" a product license I own?
    Appalling experience.  Off to the secondary market and thanks for nothing.

    I was able to locate the media but I had specifically purchased them extra
    for this exact contingency.  I had downloaded the software and provided a
    serial number.  I received no response from the provider.
    Nonetheless, I am disappointed with the model.  I appreciate that support
    for products needs to have an end of life but products within a Dot release
    should be supported by the vendor and I think that's valuable customer
    feedback.  End of story.
    Thanks for your attention!

  • Data Services support for HL7 standard

    Hi everyone,
    We have a Healthcare customer who uses HL7 messages to integrate with their Healthcare applications.
    According to our investigations, this HL7 standard uses the communication protocol MLLP.
    Is this supported by Data Services?
    Thanks a lot!
    David

    Hello David
    As part SAP NL initiative, I have developed an adapter for integrating HL7 application using SAP PI 7.11. This adapter is a consulting solution and it is known as IAH (Integration Adapter for Healthcare). It can communicate HL7 messages over MLLP and has support for all HL7 V 2.X messages. The adapter is already being used by some of our local & international customers.
    Regards
    Vijendra Singh Bhanot
    Edited by: Vijendra Singh Bhanot on Jan 3, 2011 1:54 PM

  • Is there a Christmas card template available for download for pages?

    I am looking to add a template in Pages for a Christmas card and am wondering if one is available for download.  Thanks all.

    Have a look at http://www.iworkcommunity.com/ . You can also use templates created in Word and open them in Pages.

  • More support for Designer PDFs on Mobile

    Looking at the number of posts here, it is clear that LiveCycle Designer is a very popular application, though I am not sure whether Adobe senior management are aware of this fact.
    Hardly surprising - little in the way of competition, and Adobe's own offerings - Acrobat XI and FormsCentral - just don't offer the same combination of ease of use and powerful form design features.
    It is also clear that many, many people who are using LiveCycle Designer are not using it in connection with the LiveCycle server products - so cannot choose to render the form as Flash/HTML5 - they have to rely on the PDF format.
    Why then is it so difficult for Adobe to produce a Reader on Mobile that supports Designer PDF forms? - as far as I can see, even if I save an ES3 form as a Static PDF, users are unable to complete it using the latest Adobe Reader on Android.
    I'd actually say that non-server linked use of LiveCycle Designer has increased in the last couple of years - but this is not going to continue if there is no way to - easily - get the form usable in Adobe Reader on Mobile.
    I don't think that Adobe realise that by seeding technology like this at the 'cubicle dweller' level (i.e. available to an individual geek/bright spark even if the company has not bought into the server technology) actually does often lead to the company making that 'big purchase'. In short, middle managers get to see some of the great work that Mike/Martha has been doing in his/her cubicle, and slowly but surely news of the efficiencies progress up the food chain until someone is convinced enough to sign off the big server purchase.
    From past experience, Adobe have shown that they don't understand this way of marketing their technology - they seem to rely on glossy ads aimed at C level execs, ridiculously high entry-level prices and making these prices hard to even get hold of. Well, if that was such a bright idea, why have they made such slow progress with (and even scaled back) LiveCycle.
    Some of the LiveCycle tech is really great - e.g. LC Rights Management and Barcoded Forms - and they should have gotten far more penetration out there.  If Adobe want LiveCycle to thrive, they need to change their ways.
    And if anyone has a solution for Designer PDF forms on mobile (even static ones), please share. Thanks

    Looking at the number of posts here, it is clear that LiveCycle Designer is a very popular application, though I am not sure whether Adobe senior management are aware of this fact.
    Hardly surprising - little in the way of competition, and Adobe's own offerings - Acrobat XI and FormsCentral - just don't offer the same combination of ease of use and powerful form design features.
    It is also clear that many, many people who are using LiveCycle Designer are not using it in connection with the LiveCycle server products - so cannot choose to render the form as Flash/HTML5 - they have to rely on the PDF format.
    Why then is it so difficult for Adobe to produce a Reader on Mobile that supports Designer PDF forms? - as far as I can see, even if I save an ES3 form as a Static PDF, users are unable to complete it using the latest Adobe Reader on Android.
    I'd actually say that non-server linked use of LiveCycle Designer has increased in the last couple of years - but this is not going to continue if there is no way to - easily - get the form usable in Adobe Reader on Mobile.
    I don't think that Adobe realise that by seeding technology like this at the 'cubicle dweller' level (i.e. available to an individual geek/bright spark even if the company has not bought into the server technology) actually does often lead to the company making that 'big purchase'. In short, middle managers get to see some of the great work that Mike/Martha has been doing in his/her cubicle, and slowly but surely news of the efficiencies progress up the food chain until someone is convinced enough to sign off the big server purchase.
    From past experience, Adobe have shown that they don't understand this way of marketing their technology - they seem to rely on glossy ads aimed at C level execs, ridiculously high entry-level prices and making these prices hard to even get hold of. Well, if that was such a bright idea, why have they made such slow progress with (and even scaled back) LiveCycle.
    Some of the LiveCycle tech is really great - e.g. LC Rights Management and Barcoded Forms - and they should have gotten far more penetration out there.  If Adobe want LiveCycle to thrive, they need to change their ways.
    And if anyone has a solution for Designer PDF forms on mobile (even static ones), please share. Thanks

  • Using FOP for generating PDF report

    Hi,
    I followed the otn article for generating pdf files uing FOP.
    But I was unable to do so. When I debugged it I found that when the javascript tries to get the XMLFO output from htmldb it gets a blank xml output. I tried to use the exact same url the java script uses ( I got the url by using alerts in java script) I got back an empty xml file.
    I am using htmldb 2.0 on 9.2.0.5.
    Can any one point me to the right direction
    thanks
    amit

    Hi,
    I am using iAS 1.0.2.2.2 (Jserv) it is an Oracle Applications Environment.
    I finished the whole note.
    1. Downloaded the FOP jar files.
    2. Unzipped the jar files in the JAVA_TOP of the Applications environment
    3. JAVA_TOP is already in the class path of the jserv
    4. Added the jsp file to the correct directory
    5. Created the htmdb application with the java script
    6. I put some debugging alerts in the java script
    Now when I click on the pdf link I don't get any output. Because of the debugging statement in the java script I was able to figure out that the java script is not getting any output when it calls back the htmldb for the XML FOP outout.
    I finally tried the URL which the java script uses directly. It came back with an empty xml file.
    thanks
    amit

  • Auto Download PDF report in desktop

    Hi,
    i have a requirement to autosave a standard PDF report every week to a defined path in the desktop of my system.
    How can we do it in APEX ? i know to manually run the application to print and save the PDF to desktop.
    But Since it is more than 10 PDF reports and it has to be done frequently ; there is a need to do this automatically.
    I would appreciate any help.

    Would this  be useful to you?
    Customizing Interactive Reports
    or apex_util.download_print_document?
    APEX_UTIL

  • Report Logo - Displays on HTML, not on PDF report

    Hello once again Gurus.
    We have a system environment setup where we have BI Publisher Enterprise and Apex 3.1.2 talking together to create PDF reports on a Oracle 10g database (R2 I think, I'm uncertain). As part of a business requirement, depending on what project you are looking at within our apex application, when printing a report you see a logo specific to the project. We have already developed this using a RTF template with a dummy image embedded, and +url:{concat(.//URL,.//PROJECT_ID)}+ in the Alternative Text field of the Web tab of the Format Picture dialogue.
    This worked fine when using the RTF templates as Report Layouts within Apex and as templates within a BI Publisher report.
    However, now logos aren't appearing.
    I am not sure if we have upgraded the version of BI Publisher, but we are running Apex 3.1.2.00.02 on Dev and Apex 3.1.1.00.09 on test and prod, however none of these environments are outputting logos in the PDF reports.
    Curiously, if I go into the BI Publisher interface and ask for the report to be outputted as HTML, the image shows. Running the HTML version of the report from Apex also shows the logo -- but the logo isn't showing in the PDF reports.
    As I continue trouble shooting, any assistance would be greatly appreciated.
    Edit: We are on BIP 10.1.3.2

    If anyone could give us any insight on this, it would be appriciated.
    I'm unsure if its a permissions problem with the PDF seeing the image, or something related to server setup. We currently have a redirect in place to production that doesn't include the :7777 in the URL, and for some reason, if the G_URL for the image is changed to this portless URL, the image is embedded. However, this redirect was in place for another application, and will soon be locked down, so is not available for a long term solution to this problem

Maybe you are looking for

  • Not authorized when suspensing, but not when logged in from terminal

    Hi All, I have the following line in my inittab, to start an X server for the user "cedric" x:5:once:/bin/su cedric -l -c "/bin/bash --login -c /usr/bin/startx >/dev/null 2>&1" This works great, my X server is started during the startup of the rest o

  • Install stuck

    I downloaded Yosemite from the app store. Started the install and then it gets stuck. I make it through picking my HDD and hit continue and agree. NowI see the Install OS X white box with a blue progress bar that goes away when i move my mouse. nothi

  • How does LabView 8 handle Ring constants?

    Hi all, This is probably more for NI guys, but I am wondering how LabView 8 handles text rings?  In the past, constants dropped into a VI that are of type "enum" will be updated when the typedef is updated, however, ring text constants will not.  Has

  • I get this error..TRY AGAIN.we are unable to start your subscription for adobe photoshop cs5 extended subscription edition,

    i bought photoshop cs5 with serial numbers.it was working and never ask for subscription...now it is asking for subscription....why it want it and how to do it

  • Erratic Trackpad Issue - Very Annoying!

    I've got a MacBook Pro running Mac OS X 10.5.2. Ever since I upgraded to Leopard, I've had intermittent problems with my trackpad/cursor. Sometimes, after sleeping the computer and waking it up, I get very erratic cursor movements (it "jerks" around