Show PDF File in ALBPM Presentation

Hi,
Can I show a pdf file stored in a BPM Object (binary attribute) with a Presentation?
I have tried with iframe but this option needs a path or url (String) and I only have the binary file (I can't save it in a folder)
Thanks!

I guess the only alternative is to link to an external PDF document. I don't think you can do this in presentatiosn nor JSP (or HTML) documents for that matter.

Similar Messages

  • Issues showing PDF files in web-browser (Windows 7 x64, 32-bit version of AdobeReader X)

    I'm not sure if this is the right way to share my experience, but at least I know Google will discover this thread eventually and maybe someone else will find what I have been looking for the past 3 hours
    I'm deploying the 32-bit based AdobeReader X (http://www.adobe.com/support/downloads/detail.jsp?ftpID=4950) to Windows7 32-bit and 64-bit based machines. This is a MSI deployement done through our Active Directory. Everything goes well - no errors. Except for the x64-based machines having trouble showing PDF-files in the web-browser.
    I used Adobe Customization Wizard X to customize our MSI installation - this showed out to be the solution once again.
    Common for the installation on Windows7 32-/64-bit were that the value in the registry database for HKCR\Software\Adobe\Acrobat\Exe (Default) was set to "C:\Program Files\Adobe\Reader 10.0\Reader\AcroRd32.exe". This is valid for the 32-bit installation as Program Files is situated in C:\Program Files, but since it's a 32-bit edition of AdobeReader that I'm installing on the 64-bit based system as well, it's installed in C:\Program Files (x86) and the reference in the registry database to "C:\Program Files\Adobe\Reader 10.0\Reader\AcroRd32.exe" is therefore not valid - which explains why PDF files could not be displayed in the web browser. Changing the registry to "C:\Program Files (x86)\Adobe\Reader 10.0\Reader\AcroRd32.exe" solved it. Now this is a manual solution which might be useful on 1-2 machines but on a bigger scale it's not the right way to do it.
    I could change it with a batch/vbs script but still this is only a solution of the symptom and not a solution to the core issue. I therefore focused on Adobe Customization Wizard X again.
    The problem was easily solved. I opened the MSI file, loaded the transform file that I've made previously. Went to Registry > HKEY_CLASSES_ROOT\Software\Adobe\Acrobat\Exe . I then changed the (Default) value from "C:\Program Files\Adobe\Reader 10.0\Reader\AcroRd32.exe" to "[INSTALLDIR]Reader\AcroRd32.exe", generated the MST file and replaced my current one for distribution. Problem solved! :-) The entry in the registry now shows : "C:\Program Files (x86)\Adobe\Reader 10.0\Reader\AcroRd32.exe" and PDF files are open without any issues.
    I hope someone can save a bit of time on this one.
    Best regards!
    Alex Mikkelsen

    I was able install and view the files in adobe reader 10.1.1 and in web browser window 7 64 bit machine.  But when I go to Edit-preferences-internet and  unchecking "display PDF in Browser" , I am not able to view the pdf files in ie 9 browser.  I have used this javscript to check for pdf version.
    Immediately after installing adobe--
    when I do adobe test in ie 9---https://courses.worldcampus.psu.edu/public/diagnostics/Acrobat.html--  launches a test pdf file--Acro_Test.pdf
    After unchecking-- it stays in the  https://courses.worldcampus.psu.edu/public/diagnostics/Acrobat.html instead of showing test pdf file--Acro_Test.pdf
    Tried to go back to "display PDF in Browser"--it is showing it is checked(eventhough I did not check it)
    and in ie
    it stays in the https://courses.worldcampus.psu.edu/public/diagnostics/Acrobat.html instead of showing test pdf file--Acro_Test.pdf

  • Export data to pdf file in ALBPM ?

    Hi,
    Can anyone tell me how to export all my data that are rendered in a jsp file to a PDF file in ALBPM
    i.e I want all my data that are there in jsp page, onclick of a button all those data will be printed/posted on a pdf file with a specified file name.
    Regards,
    Bibhu

    I have used the iText java library to create PDF files in ALBPM 5.7 and OBPM 10gr3. There is a bit of cut and paste programming involved, but it worked out great for us.
    http://itextpdf.com/
    Here is a short code snippet (about 150 lines) so you can see what kind of code would be required
        IText.Com.Lowagie.Text.Font bold20 = IText.Com.Lowagie.Text.Font(IText.Com.Lowagie.Text.Font.HELVETICA, 20,
                                                                        IText.Com.Lowagie.Text.Font.BOLD);
        IText.Com.Lowagie.Text.Font bold9 = IText.Com.Lowagie.Text.Font(IText.Com.Lowagie.Text.Font.HELVETICA, 9,
                                                                        IText.Com.Lowagie.Text.Font.BOLD);
        IText.Com.Lowagie.Text.Font bold8 = IText.Com.Lowagie.Text.Font(IText.Com.Lowagie.Text.Font.HELVETICA, 8,
                                                                        IText.Com.Lowagie.Text.Font.BOLD);
        IText.Com.Lowagie.Text.Font italic9 = IText.Com.Lowagie.Text.Font(IText.Com.Lowagie.Text.Font.HELVETICA, 9,
                                                                        IText.Com.Lowagie.Text.Font.ITALIC);
        IText.Com.Lowagie.Text.Font italic8 = IText.Com.Lowagie.Text.Font(IText.Com.Lowagie.Text.Font.HELVETICA, 8,
                                                                        IText.Com.Lowagie.Text.Font.ITALIC);
        IText.Com.Lowagie.Text.Font normal20 = IText.Com.Lowagie.Text.Font(IText.Com.Lowagie.Text.Font.HELVETICA, 20,
                                                                        IText.Com.Lowagie.Text.Font.NORMAL);
        IText.Com.Lowagie.Text.Font normal12 = IText.Com.Lowagie.Text.Font(IText.Com.Lowagie.Text.Font.HELVETICA, 12,
                                                                        IText.Com.Lowagie.Text.Font.NORMAL);
        IText.Com.Lowagie.Text.Font normal9 = IText.Com.Lowagie.Text.Font(IText.Com.Lowagie.Text.Font.HELVETICA, 9,
                                                                        IText.Com.Lowagie.Text.Font.NORMAL);
        IText.Com.Lowagie.Text.Font normal8 = IText.Com.Lowagie.Text.Font(IText.Com.Lowagie.Text.Font.HELVETICA, 8,
                                                                        IText.Com.Lowagie.Text.Font.NORMAL);
        // step 1:
        // we create a writer that listens to the document
        // and directs a PDF-stream to a file or outputstream
        //fileOut = FileOutputStream(arg1 : "test.pdf");
        //byteOut = ByteArrayOutputStream();
        // step 2: set the page size
        rec = Rectangle(arg1 : 8.5 * 72, arg2 : 11 * 72);
        //rec.setGrayFill(1.0f);
        // step 3: creation of a document-object
        document = IText.Com.Lowagie.Text.Document(rec);
        // step 4:
        // we create a writer that listens to the document
        //PdfWriter writer = PdfWriter.getInstance(arg1 : document, arg2 : Java.Io.FileOutputStream("./HelloWorld.pdf"));
        PdfWriter writer = PdfWriter.getInstance(arg1 : document, arg2 : byteOut);
        // step 5: we open the document
        document.open();
        //document.setMargins(arg1 : 0.2f, arg2 : 0.2f, arg3 : 0.3f, arg4 : 0.3f);
        PdfContentByte pdfCByte = writer.getDirectContent();
        pdfCByte.rectangle(25,25, 562, 742);
                       //pdfCByte.moveTo(140, 700);
                   //pdfCByte.lineTo(240, 700);
                   //pdfCByte.lineTo(240, 800);
                   //pdfCByte.lineTo(140, 800);
        pdfCByte.closePathStroke();
        //pdfCByte.setGrayFill(1.0f);
        // step 6a: Create
        // step 6: add contents to the page
        table = PdfPTable(1);
        table.setWidthPercentage(80);
        table.setHorizontalAlignment(Element.ALIGN_MIDDLE);
        emptyTable = PdfPTable(1);
        emptyTable.setWidthPercentage(arg1 : 100);
        emptyCell2 = PdfPCell(Paragraph(""));
        emptyCell2.setBorder(Rectangle.NO_BORDER);
        emptyTable.addCell(emptyCell2);
        para = Paragraph(30, "Data Data Data Example", normal20);
        cell = PdfPCell(para);
        cell.setHorizontalAlignment(Element.ALIGN_CENTER);
        cell.setBorder(Rectangle.NO_BORDER);
        table.addCell(cell);
        document.add(arg1 : table);
        document.add(emptyTable);
        document.add(emptyTable);
        document.add(emptyTable);
        table = PdfPTable(1);
        table.setWidthPercentage(80);
        table.setHorizontalAlignment(Element.ALIGN_MIDDLE);
        para = Paragraph(30, struct.headerInfo, normal9);
        cell = PdfPCell(para);
        cell.setGrayFill(0.85f);
        cell.setBorder(Rectangle.NO_BORDER);
        table.addCell(cell);
        document.add(arg1 : table);
        document.add(emptyTable);
        document.add(emptyTable);
        // Line #1 NEW Table
        table = PdfPTable(17);
        table.setWidthPercentage(100);
        para1 = Paragraph(30);
        p1 = Phrase ("Requested Date : ", bold9);
        SimpleDateFormat formatter;
        formatter = SimpleDateFormat("MM/dd/yyyy h:mm:ss a");
        evalDateStr = String.valueOf(Utils.notNullString( (object.requestDate==null)?"":object.requestDate.format(formatter : formatter)));
        p2 = Phrase ( evalDateStr, italic9);
        para1.add(p1);
        para1.add(p2);
        cell = PdfPCell(para1);
        cell.setGrayFill(0.85f);
        cell.setColspan(8);
        cell.setBorder(Rectangle.NO_BORDER);
        table.addCell(cell);
        emptyCell = PdfPCell(Paragraph(""));
        emptyCell.setGrayFill(1.0f);
        emptyCell.setBorder(Rectangle.NO_BORDER);
        table.addCell(emptyCell);
        para1 = Paragraph();
        p1 = Phrase ("Coordinates: ", bold9);
        para1.add(p1); 
        cell = PdfPCell(para1);
        cell.setGrayFill(0.85f);
        cell.setColspan(8);
        cell.setBorder(Rectangle.NO_BORDER);
        table.addCell(cell);
        // Line #2
        para1 = Paragraph(30);
        p1 = Phrase ("Contact : ", bold9);
        p2 = Phrase ( varContact   , italic9);
        para1.add(p1);
        para1.add(p2);
        cell = PdfPCell(para1);
        cell.setGrayFill(0.85f);
        cell.setColspan(8);
        cell.setBorder(Rectangle.NO_BORDER);
        table.addCell(cell);
        emptyCell.setGrayFill(1.0f);
        table.addCell(emptyCell);
        emptyCell.setGrayFill(0.85f);
        table.addCell(emptyCell);
        para1 = Paragraph();
        p1 = Phrase ("Latitude : ", bold9);
        p2 = Phrase (object.lat, italic9);
        para1.add(p1);
        para1.add(p2);
        cell = PdfPCell(para1);
        cell.setGrayFill(0.85f);
        cell.setColspan(7);
        cell.setBorder(Rectangle.NO_BORDER);
        table.addCell(cell); 
    //add the table to the document
        document.add(table);
    // close the document
        document.close();

  • SAFARI 6.1.3 update to Reader 11.0.07 - cannot open pdf files that are presently on my computer. Previous version had no problem. Any ideas?

    SAFARI 6.1.3 update to Reader 11.0.07 … cannot open pdf files that are presently on my computer. Previous version had no problem. Any ideas? (Here is the message: Adobe Reader could not open 'Digital_Holiday_Cookbook.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).

    Thank you Pat!!!
    Craig Ekonomos
    [email address removed]

  • Quicklook doesn't show PDF files

    OSX 10.10.2
    Quicklook does not show PDF files and Preview doesn't open PDF files. When I select file => open, all PDF files are grey and cannot be selected. In Finder I select a PDF file and press CMD-i. In the information window I select open with Preview, but nothing will changed. PDF files can only be opened with Adobe Acrobat. When I drop a PDF file from finder to safari, the PDF file will be visible in safari. When I select "open in preview" in safari, preview doesn't show the pdf file. I can see an error in the console "CoreSercviceUIAgent Error -60005 creating authorization". qlmanage -r and qlmanage -r chase doesn't help.
    qlmanage -p *.pdf
    2015-04-29 01:02:15.609 qlmanage[11077:2675779] *** CFMessagePort: bootstrap_register(): failed 1100 (0x44c) 'Permission denied', port = 0xab43, name = 'com.apple.tsm.portname'
    See /usr/include/servers/bootstrap_defs.h for the error codes.
    2015-04-29 01:02:15.612 qlmanage[11077:2675779] *** CFMessagePort: bootstrap_register(): failed 1100 (0x44c) 'Permission denied', port = 0x4517, name = 'com.apple.CFPasteboardClient'
    See /usr/include/servers/bootstrap_defs.h for the error codes.
    2015-04-29 01:02:15.612 qlmanage[11077:2675779] Failed to allocate communication port for com.apple.CFPasteboardClient; this is likely due to sandbox restrictions
    2015-04-29 01:02:15.618 qlmanage[11077:2675779] *** CFMessagePort: bootstrap_register(): failed 1100 (0x44c) 'Permission denied', port = 0x8f2f, name = 'com.apple.coredrag'
    See /usr/include/servers/bootstrap_defs.h for the error codes.
    qlmanage -t *.pdf
    2015-04-29 01:03:27.386 qlmanage[11085:2681809] *** CFMessagePort: bootstrap_register(): failed 1100 (0x44c) 'Permission denied', port = 0x9057, name = 'com.apple.tsm.portname'
    See /usr/include/servers/bootstrap_defs.h for the error codes.
    2015-04-29 01:03:27.388 qlmanage[11085:2681809] *** CFMessagePort: bootstrap_register(): failed 1100 (0x44c) 'Permission denied', port = 0x4437, name = 'com.apple.CFPasteboardClient'
    See /usr/include/servers/bootstrap_defs.h for the error codes.
    2015-04-29 01:03:27.389 qlmanage[11085:2681809] Failed to allocate communication port for com.apple.CFPasteboardClient; this is likely due to sandbox restrictions

    Problem description:
    QuickLook and Preview doesn’t show PDF files
    EtreCheck version: 2.2 (132)
    Report generated 4/29/15, 10:30 PM
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro Intel Core i7, 15" (Early 2011)
        MacBook Pro - model: MacBookPro8,2
        1 2.3 GHz Intel Core i7 CPU: 4-core
        16 GB RAM Upgradeable
            BANK 0/DIMM0
                8 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                8 GB DDR3 1600 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery: Health = Normal - Cycle count = 481 - SN = D86106429R7DGDLAX
    Video Information: ℹ️
        Intel HD Graphics 3000 - VRAM: 512 MB
        AMD Radeon HD 6750M - VRAM: 1024 MB
            Color LCD 1680 x 1050
            PL2779Q 2560 x 1440 @ 59 Hz
    System Software: ℹ️
        OS X 10.10.2 (14C1514) - Time since boot: 3:12:3
    Disk Information: ℹ️
        ST2000LM003 HN-M201RAD disk1 : (2 TB)
            EFI (disk1s1) <not mounted> : 210 MB
            Macintosh HD (disk1s2) /Volumes/Macintosh HD : 2.00 TB (951.82 GB free)
        Samsung SSD 840 PRO Series disk0 : (512,11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh SSD (disk2) / : 510.88 GB (222.02 GB free)
                Core Storage: disk0s2 511.25 GB Online
    USB Information: ℹ️
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Computer, Inc. IR Receiver
        Apple, Inc. Keyboard Hub
            Apple, Inc Apple Keyboard
        Burr-Brown from TI Elgato Thunderbolt 2 Dock Audio
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
            Elgato Systems Thunderbolt 2 Dock
    Configuration files: ℹ️
        /etc/hosts - Count: 1
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/Karabiner.app
        [loaded]    org.pqrs.driver.Karabiner (10.6.0 - SDK 10.10) [Click for support]
            /Applications/MacX Video Converter Pro.app
        [not loaded]    com.macxdvd.driver.goodSysAudioCapture (1 - SDK 10.10) [Click for support]
            /Applications/Parallels Access.app
        [loaded]    com.parallels.virtualsound (1.0.27 27 - SDK 10.6) [Click for support]
            /Applications/Parallels Desktop.app
        [not loaded]    com.parallels.kext.hypervisor (10.2.0 28956 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.netbridge (10.2.0 28956 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.usbconnect (10.2.0 28956 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.vnic (10.2.0 28956 - SDK 10.7) [Click for support]
            /Applications/Splashtop Streamer.app
        [not loaded]    com.splashtop.driver.SRXDisplayCard (1.6 - SDK 10.7) [Click for support]
        [not loaded]    com.splashtop.driver.SRXFrameBufferConnector (1.6 - SDK 10.7) [Click for support]
            /Applications/Toast 11 Titanium/Roxio Crunch.app
        [not loaded]    com.roxio.TDIXController (1.6) [Click for support]
            /Applications/Utilities/DiskWarrior.app
        [not loaded]    com.alsoft.Preview (4.2) [Click for support]
            /Library/Extensions
        [not loaded]    com.Elgato.Thunderbolt2DockChargingSupport (1.0.0 - SDK 10.10) [Click for support]
        [not loaded]    com.Elgato.ThunderboltDockChargingSupport (1.0.0 - SDK 10.10) [Click for support]
        [loaded]    com.avatron.AVExFramebuffer (3.0.1 - SDK 10.10) [Click for support]
        [loaded]    com.avatron.AVExVideo (3.0.1 - SDK 10.10) [Click for support]
        [not loaded]    com.elgato.ElgatoThunderboltDockAudioRename (1.0.2 - SDK 10.10) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.3dconnexion.driver (1.6.3) [Click for support]
        [not loaded]    com.AmbrosiaSW.AudioSupport (4.1.2 - SDK 10.6) [Click for support]
        [loaded]    com.Cycling74.driver.Soundflower (1.6.6 - SDK 10.6) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchAfaTech (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchCinergy450 (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchCinergyXS (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchEmpia (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchVoyager (1.1) [Click for support]
        [not loaded]    com.hzsystems.driver.CDSDAudioCaptureSupport (1.5) [Click for support]
        [loaded]    com.hzsystems.terminus.driver (4) [Click for support]
        [not loaded]    com.iomega.filesystems.udf (2.5) [Click for support]
        [not loaded]    com.iomega.iokit.IomegaREV (2.5) [Click for support]
        [not loaded]    com.logitech.manager.kernel.driver (2.00 - SDK 10.6) [Click for support]
        [loaded]    com.markspace.driver.Android.RNDIS (1.2) [Click for support]
        [not loaded]    com.roxio.BluRaySupport (1.1.6) [Click for support]
        [not loaded]    com.sony.driver.sxsexpressdrivers (1.0.2d006 - SDK 10.6) [Click for support]
        [not loaded]    com.sony.driver.sxsus10drivers (1.0.2d006 - SDK 10.6) [Click for support]
        [not loaded]    com.sony.filesystems.sxsudf_fs (1.0.2d006 - SDK 10.6) [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [running]    com.adobe.AdobeCreativeCloud.plist [Click for support]
        [failed]    com.adobe.ARMDCHelper.cc24aef4a1b90ed56a...plist [Click for support]
        [running]    com.babylon.activation.plist [Click for support]
        [running]    com.brother.LOGINserver.plist [Click for support]
        [loaded]    com.divx.dms.agent.plist [Click for support]
        [loaded]    com.divx.update.agent.plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.logitech.manager.daemon.plist [Click for support]
        [failed]    com.micromat.TechToolProAgent.plist [Click for support] [Click for details]
        [unknown]    com.oracle.java.Java-Updater.plist [Click for support]
        [loaded]    com.parallels.mobile.prl_deskctl_agent.launchagent.plist [Click for support]
        [not loaded]    com.splashtop.streamer-for-root.plist [Click for support]
        [loaded]    com.splashtop.streamer-for-user.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer_desktop.plist [Click for support]
        [loaded]    com.xamarin.mtvs.buildserver.plist [Click for support]
        [loaded]    org.gpgtools.gpgmail.enable-bundles.plist [Click for support]
        [loaded]    org.gpgtools.gpgmail.patch-uuid-user.plist [Click for support]
        [loaded]    org.gpgtools.gpgmail.updater.plist [Click for support]
        [running]    org.gpgtools.Libmacgpg.xpc.plist [Click for support]
        [loaded]    org.gpgtools.macgpg2.fix.plist [Click for support]
        [running]    org.gpgtools.macgpg2.shutdown-gpg-agent.plist [Click for support]
        [loaded]    org.gpgtools.macgpg2.updater.plist [Click for support]
        [loaded]    org.macosforge.xquartz.startx.plist [Click for support]
    Launch Daemons: ℹ️
        [running]    com.adobe.adobeupdatedaemon.plist [Click for support]
        [loaded]    com.adobe.ARMDC.Communicator.plist [Click for support]
        [loaded]    com.adobe.ARMDC.SMJobBlessHelper.plist [Click for support]
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.ambrosiasw.ambrosiaaudiosupporthelper.daemon.plist [Click for support]
        [loaded]    com.bombich.ccc.plist [Click for support]
        [loaded]    com.bresink.system.securityagent3.plist [Click for support]
        [running]    com.elgato.EyeConnect.plist [Click for support]
        [failed]    com.filemaker.fms.plist [Click for support]
        [loaded]    com.google.keystone.daemon.plist [Click for support]
        [failed]    com.micromat.TechToolProDaemon.plist [Click for support] [Click for details]
        [unknown]    com.oracle.java.Helper-Tool.plist [Click for support]
        [running]    com.paradigmasoft.vserver_x64.plist [Click for support]
        [running]    com.parallels.mobile.dispatcher.launchdaemon.plist [Click for support]
        [loaded]    com.parallels.mobile.kextloader.launchdaemon.plist [Click for support]
        [loaded]    com.rogueamoeba.instanton-agent.plist [Click for support]
        [running]    com.sec.faxdb.plist [Click for support]
        [running]    com.splashtop.streamer-daemon.plist [Click for support]
        [loaded]    com.splashtop.streamer-srioframebuffer.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer_service.plist [Click for support]
        [loaded]    com.timesoftware.timemachineeditor.backupd-auto.plist [Click for support]
        [loaded]    com.wuala.WualaFS.KextLoaderHelper.plist [Click for support]
        [loaded]    de.meilenstein.MSTFirstRunInstaller.plist [Click for support]
        [loaded]    de.meilenstein.MSTHostPreferences.plist [Click for support]
        [loaded]    org.cindori.AuthHelper.plist [Click for support]
        [loaded]    org.cindori.TEAuth.plist [Click for support]
        [loaded]    org.gpgtools.gpgmail.patch-uuid.plist [Click for support]
        [loaded]    org.macosforge.xquartz.privileged_startx.plist [Click for support]
        [unknown]    org.virtualbox.startup.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [failed]    com.amazon.cloud-player.plist [Click for support] [Click for details]
        [running]    com.amazon.music.plist [Click for support]
        [loaded]    com.citrixonline.GoToMeeting.G2MUpdate.plist [Click for support]
        [failed]    com.smithmicro.cleaning.schedulermailer.plist [Click for support] [Click for details]
        [loaded]    com.splashtop.streamer-for-user.plist [Click for support]
        [failed]    com.vladalexa.MagicPrefs.plist [Click for support] [Click for details]
        [not loaded]    org.virtualbox.vboxwebsrv.plist [Click for support]
        [running]    ws.agile.1PasswordAgent.plist [Click for support]
    User Login Items: ℹ️
        NeoFinder Global QuickFind    Programm  (/Applications/NeoFinder.app/Contents/Resources/NeoFinder Global QuickFind.app)
        FontExplorerXAutoload    Programm Hidden (/Volumes/Macintosh HD/Users/[redacted]/Library/Application Support/Linotype/FontExplorer X/FontExplorerXAutoload.app)
        iTunesHelper    Programm Hidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        lingvod    Programm  (/Applications/ABBYY Lingvo.app/Contents/Resources/lingvod.app)
        Air Display Host    Programm  (/Applications/Air Display Host.app)
        FavoriteApps    Programm  (/Applications/FavoriteApps.app)
        Dropbox    Programm  (/Applications/Dropbox.app)
        Rogue Amoeba Schedule Helper    Programm Hidden (/Library/Application Support/Audio Hijack Pro/Rogue Amoeba Schedule Helper.app)
        Wondershare Helper Compact    Programm  (/Volumes/Macintosh HD/Users/[redacted]/Library/Application Support/Helper/Wondershare Helper Compact.app)
        Elgato Thunderbolt Dock Dienstprogramm    Programm  (/Applications/Elgato Thunderbolt Dock Utility.app)
        AdobeResourceSynchronizer    Programm Hidden (/Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Helpers/AdobeResourceSynchronizer.app)
        PowerboxInjector    Programm  (/Applications/PowerboxInjector.app)
        Karabiner    Programm  (/Applications/Karabiner.app)
        MEGAsync    Programm  (/Applications/MEGAsync.app)
    Internet Plug-ins: ℹ️
        OVSHelper: Version: 1.1 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 3.0.0.85 BETA  - SDK 10.7 [Click for support]
        Google Earth Web Plug-in: Version: 6.0 [Click for support]
        Silverlight: Version: 4.0.60531.0 [Click for support]
        FlashPlayer-10.6: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        DivX Web Player: Version: 3.2.4.1250 - SDK 10.6 [Click for support]
        AmazonMP3DownloaderPlugin101749: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 [Click for support]
        Flash Player: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        iPhotoPhotocast: Version: 7.0 - SDK 10.8
        JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    User internet Plug-ins: ℹ️
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 [Click for support]
        Picasa: Version: 1.0 [Click for support]
    Safari Extensions: ℹ️
        1Password
        AdBlock
        My eBay Manager
        Ultimate Status Bar
        Scroll To Top
    3rd Party Preference Panes: ℹ️
        3Dconnexion  [Click for support]
        ADOView  [Click for support]
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        FUSE for OS X (OSXFUSE)  [Click for support]
        GPGPreferences  [Click for support]
        handyPrint  [Click for support]
        Logitech Preference Manager  [Click for support]
        MagicPrefs  [Click for support]
        Perian  [Click for support]
        Tuxera NTFS  [Click for support]
        Valentina Server  [Click for support]
        xGestures  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: ON
        Auto backup: YES
        Volumes being backed up:
            Macintosh SSD: Disk size: 510.88 GB Disk used: 288.86 GB
        Destinations:
            Data [Network]
            Total size: 3.00 TB
            Total number of backups: 32
            Oldest backup: 2015-01-29 19:13:21 +0000
            Last backup: 2015-04-28 23:34:01 +0000
            Size of backup disk: Excellent
                Backup size 3.00 TB > (Disk size 510.88 GB X 3)
            Backup [Local]
            Total size: 2.00 TB
            Total number of backups: 27
            Oldest backup: 2015-01-31 11:33:00 +0000
            Last backup: 2015-04-12 21:05:25 +0000
            Size of backup disk: Excellent
                Backup size 2.00 TB > (Disk size 510.88 GB X 3)
    Top Processes by CPU: ℹ️
            14%    Adobe CEF Helper
            10%    My Watches.debug
             8%    WindowServer
             8%    backupd
             3%    Creative Cloud
    Top Processes by Memory: ℹ️
        1.34 GB    kernel_task

  • How to get pdf file from sap presentation server using java connector

    Hi Friends,
    with the below code i am able to get po details in pdf in presentation server.
    DATA : w_url TYPE string
           VALUE 'C:\Documents and Settings\1011\Solutions\web\files\podet.pdf'.
    CALL FUNCTION 'ECP_PDF_DISPLAY'
            EXPORTING
              purchase_order       = i_ponum
           IMPORTING
      PDF_BYTECOUNT        =
             pdf                  = file  " data in Xsting format
    *Converting Xstring to binary_tab
          CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
            EXPORTING
              buffer                = file
      APPEND_TO_TABLE       = ' '
    IMPORTING
      OUTPUT_LENGTH         =
            TABLES
              binary_tab            = it_bin " data in binary format
    **Downloading into PDF file
          CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
      BIN_FILESIZE                    =
              filename                        = w_url
              filetype                        = 'BIN'
             TABLES
              data_tab                        = it_bin
    when i am using java connector , to retirve the file from presentation server , the follwoing error i am getting...
    init:
    deps-jar:
    compile-single:
    run-single:
    com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: Error in Control Framework
            at com.sap.mw.jco.rfc.MiddlewareRFC$Client.nativeExecute(Native Method)
            at com.sap.mw.jco.rfc.MiddlewareRFC$Client.execute(MiddlewareRFC.java:1244)
            at com.sap.mw.jco.JCO$Client.execute(JCO.java:3842)
            at com.sap.mw.jco.JCO$Client.execute(JCO.java:3287)
            at PdfGen.<init>(PdfGen.java:35)
            at PdfGen.main(PdfGen.java:78)
    Java Result: 1
    BUILD SUCCESSFUL (total time: 1 second)
    i debugged too, problem with <b>gui_download......</b>
    I am very glad to all with your suggestions!!
    Regards,
    Madhu..!!

    Hi
    You can try to create an external command (transaction SM69).......sorry I've forgotten,,,,they works on application
    How do you call CL_GUI_FRONTEND_SERVICES=>EXECUTE?
    Max
    Edited by: max bianchi on Oct 13, 2011 10:27 AM

  • Installed the Java patch for MAC yesterday and immediately could not get adobe reader to show pdf files...have troubleshot and can't seem to remedy ...ideas?

    I have used the Firefox troubleshooting guides, no good. The Java patch is enabled and shows when I check applications. However when I run Firefox plugins it still shows the java plug in is outdated and need to be updated immediately.

    OK, I went to the Firefox knowledge base article you cited and followed the directions with the exception that in the drop down menu I choose Adobe Reader for PDF files rather than the plug in default that apparently was set by the Java patch. Problem solved !!!!!!! Thank you so much for taking the time to get me back to the basic place I needed to be to correct this issue. YOU ROCK!!!!

  • Base64 to pdf. After conversion - how to show pdf file ?

    Hello all,
    I have to show and save a pdf file from internal table ion base64 format.
    I mean that I receive an internal table with data in base64 that represent a pdf file. I have
    to convert it into pdf file than show and save the file.
    I maked a conversion by:
      CALL METHOD utility->decode_base64
        EXPORTING
          encoded = encoded
        RECEIVING
          decoded = decoded.
    and, now my question is :
    What I have to do about the string decoded ? I have to append it somewhere ?
    and, how to create a pdf file from decoded string ?
    tks a lot.

    How to show PDF using SAPGui
    Please check my reply in the following thread

  • Not showing pdf files in laptop

    Pdf files that downloded in Lumia 525 are not showing in laptop, I downloaded pdf by internet browser and also by uc downloder, plz help me how these files may visible

    Windows Phone 8 doesn't have a file manager mate. downloaded files are sandboxed within the app itself. if you wish to open these PDF's is probably best to open it on a laptop/desktop, or try to sync with something like OneDrive.

  • Show pdf files in palm using J2ME

    Hi,
    I'm developing a J2ME application for Palm Tungsten C that get some pdf files from a server, so this application should show a list of received pdf files to the user. So this user selects the file he wants to see.
    I installed the adobe reader for Palm, but i want to know how to integrate my application with the pdf reader (when the user selects the file that he wants to see, my application open this file with a pdf reader)...
    Thanks.

    Basicly, there has not much changed since version 5 so you can use also vers. 8 SDK / IAC section.
    The command you to use is "insert", where the first page has to be opened and the other pages will be inserted.
    If you google for PdDoc.insert you may get tons of examples and maybe also in C.
    If you use Acro-Javascript via IAC you may find an example direct in the AcroJs helpfile.
    HTH, Reinhard

  • Showing pdf file into an RTF report

    Hi all,
    At the end of my report I need to show a PDF file that I get from the table fnd_lobs, so in my xml I had a BLOB tag with the PDF. I know that this is possible with images using this:
    <fo:instream-foreign-object content type="image/jpg">
    <xsl:value-of select="IMAGE_ELEMENT"/>
    </fo:instream-foreign-object>
    But if my content type is PDF, it is possible to show it?
    Thanks
    Edited by: user752708 on Jan 12, 2010 7:48 AM
    Edited by: user752708 on Jan 12, 2010 7:50 AM

    Hi, I have this query to get a pdf file from the database:
    select tl.description, do.file_name, lo.file_data
    from FND_DOCUMENTS_TL tl
         ,FND_DOCUMENTS do
         ,fnd_lobs lo
    where tl.document_id = do.document_id
    and do.media_id = lo.file_id
    and tl.language = 'PTB'
    and tl.description = 'CONDICOES DA OC'
    I´m going to have a column formula to return lo.file_data, so I will hava a tag xml with de blob on it. This blob tag should appear at the end of the report. But in my case is a PDF file.
    Can you explain me what APIs are you talking about.
    Thanks!
    Edited by: user752708 on Jan 12, 2010 9:15 AM

  • RoboHelp air help application does not show pdf files

    Hello everyone,
    I hope this is the right place to post my problem.
    I am developing an air help application and I want to embedd some pdf files. I tried two different ways yet:
    1. A direct link to the pdf file (which is located in the project folder)
    2. An iframe
    In the topic preview both ways are working fine. But when I generate the application, it just shows a black page, where the pdf content should be.
    Thanks for your help.
    Holger

    Welcome to the forum.
    It is the right place to ask but it will not be the answer you want.
    Only links to HTML and Microsoft Office files are supported. Although it will not help you short term, the more people who report a bug or request a feature, the more likely it is to be actioned. Please follow this link.
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
    Please take a look at the sticky topic Before You Post as often answers depend on the version of RoboHelp being used.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Elements 4 Slide Show PDF File Size

    My a 36-slide show with music ends up as a 6.76 MB PDF file. Are there techniques for reducing the file size?
    My attempts have had mystifying results. I fould that 2 of the original images were multi-megabyte BMP files, so I replaced them one-by-one with much smaller JPGs, and made PDFs after each step. (Miraculously, when I edited the original photos, the edits automatically flowed down into the slide show images.)
    When I made the replacements and created new PDFs, the size didn't shrink accordingly. It appears that Elements makes its own JPGs from the photos in the slide show, so the size of the original doesn't matter.
    But replacing the first big file with a smaller one slightly INCREASED the size of the PDF, from 6.76 MB to 6.79. Replacing the second one increased it again from 6.79 to 6.80. Small changes, but mysterious.
    BTW, taking out the music (built-in looping audio from Elements) reduced the file size from 6.76 to 5.87 MB.
    Are there other ways to reduce the size of the PDF file?

    Yep, I know this is user-to-user. I've gotten very good answers here, too.
    I experimented with the "slide resolution" (or whatever the name of it is). There wasn't much difference in file size between 800x600 and 1024x768, and I couldn't see much difference on the screen. Fonts seemed less jazzy with 1024x768, but it wasn't night and day.
    File size ballooned when I went to the next higher resolution. I think the visual quality improved, too, but I can't be sure.
    Looks like the higer resolution settings might be good if one distributed the slide show on CD.

  • Not Showing: PDF file

    I tried to download a PDF file and iI got this message:
    "If this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this type of document.
    You can upgrade to thelatest version of Adeobe Reader for Windows, Mac or Linux by visiting http://www.adobe.com/products/acrobat/readstep2.html."
    I downloaded the file and did the upgrade but Im still not showing the file. What did i miss? Help! thanks

    This sounds you are not viewing the PDF in a browser that uses its own PDF viewer instead of Adobe Reader (Firefox or Chrome).

  • Instantiating a PDF-file that is present as an attachmeent in a SOFM object

    Hi all,
    I have a workflow that processes incoming customer request that come in via e-mail. For each e-mail a workflow is triggered using transaction SO28. This results in a workflow with a SOFM attachment. If the incoming e-mail contains an attachment (PDF-file)  this PDF is visible in the SOFM object as an attaachment.
    However I want to instantiate this PDF-attachment automatically so that it is available in the workflow as an IMAGE object.
    Does anybody have experience with this or have some handy coding for this?
    This would be greatly appreciated!
    Kind regards,
    Erik Gouw

    I'm not an expert on editing files that are opened by another application, but I am not sure it _can_ be done the way you currently have it set up.  At least as far as IE is concerned.  (And I hate IE, too.. never did like it.)
    IMHO, the file should be stored in a database; that way, no matter how many people are accessing it, you can make changes and save them to the binary stored in a BLOB/CLOB datatype.  And if you (exclusive) lock the record as it's being saved, whomever is trying to access it will be "paused" until the save is complete and they will then retrieve the latest update without any corruption of data, or other 'hiccup'.
    If a database is not an option, I'm not sure what to do.  If it were an intranet, it might be different.  But a network share isn't the best solution.  It might be cost-saving or easier to maintain; but there's a saying - You can have it cheap, fast, or good; pick two.
    ^_^

Maybe you are looking for