Disappearing graphics in CMYK PDF output from Frame 12.0.3

(I thought we already had a thread about this, but I can't find it!) - but I've just run into the same problem with Frame 12 that I've read about other people having.
I have Frame 12, fully patched. With a book file selected (and all my chapter files open), I do File > Save as PDF,
choose the settings I want on "PDF Setup for Selected Files" dialog, and off I go.....
Those settings include the CMYK radio button.
I don't get any error messages, but loads of items are missing (blank) in the resulting PDF - mostly graphics, but also some coloured table border, text, all sorts of stuff really.
If I select the RGB radio button instead, everything is present (although I want a CMYK PDF!!)
What is going on? Is CMYK PDF generation just broken in Frame 12?
I seem to recall someone saying an imported .AI graphic was the culprit in their case, but my graphics are mostly all just PNG or PDF.

> ... corporate branding asks for some text and table borders to be in a Pantone colour, and whilst Frame can pass Pantone colours unchanged into a PDF if you hide them inside an EPS graphic, it can't do it for text or coloured lines.
It's close to a lost cause no matter how you do it, due to FM having deminimus color management.
Pantone colors from Frame end up downstream as just uncalibrated CMYK values, unless the object's color definition is tagged with and accompanied by the "PANTONE 123x" whatever string into the .ps of .pdf workflow (and the target app or system officially supports Pantone, and many RIPs do).
Even so, for end user convenience printing on Windows, the PDF content is still going to pass through the Windows GDI, which, despite furious CMYK handwaving by Mr.Bill's Minions, is still an RGB engine. You say, but the color printers are using CMYK inks! Yep, you get yet another color space conversion if the print path isn't Ps or native PDF.
What we've done is to figure out what the our entity colors are in sRGB space, and do all colors in RGB. BabelColor is a useful app for this task, as are one or more freebie web pages that provide sRGB equivalents for Pantone colors (but usually omit the word "pantone" entirely on their site, lest a rainbow of lawyers descend).
We then tell the distill process to tag images for color management, using IEC 61966-2-1:1999. This actually results in RGB values in EPS files with embedded profiles matching RGB colors generated by Frame (for graphics objects).
Getting Frame TEXT color to match as well aggravates the problem. You can get Distiller (and perhaps PDF rendering settings generally) to "tag everything for color management", but this turns black text into composite black, exploding the file size and slowing printing (and in the specific case of sRGB, is black still really black?). If print is your only target, and you can manage the black issue, this might be a solution (or just use some other color space, like Adobe RGB). Another possibility, where color text is limited, is to import it as EPS text from Illustrator.
There might be aftermarket tools for what's really needed, which is "tag all color objects for color management".
This is an area where some tool other than FM is usually indicated. InDesign has color management. I've never been able to figure out if Frame's ostensible DTP competitor has CM. Frame will never get CM, we are told consistently.

Similar Messages

  • Facing challenges during creation of replica of .IDF file/Pdf output from 4.7 system into of Adobe forms in ECC 6.0 system

    Facing challenges during creation of replica of .IDF file/Pdf output from 4.7 system into of Adobe forms in ECC 6.0 system.
    If anybody has easy way to make those forms...
    Please suggest...

    Hi Shabeer,
    the first thing is that you are running on a very very low RAM.
    For ECC 6.0 with dual stack SAP System to run you should have atleast 4 GB of RAM.
    For your Dispatcher issue kindly check the status of your Oracle database and the connection from SAP To Database.
    You can check the oracle status using brtools utility.
    Regards,
    Prem

  • Create PDF output from Web Layout Report

    Is there a way I can create a PDF output from a Web Layout Report? (NOT from a Paper Layout). The reason I ask because editing on the .jsp Web Layout is very easy and flexible while editing on the Payer Layout is very difficult. Thanks.
    - Todd

    Hi Todd,
    Please refer to this link:
    paper layout & web layout
    As for your second statement, it is a matter of opinion and I beg to differ that .... "Web Layout is very easy and flexible while editing on the Payer Layout is very difficult."
    Best Regards,
    John

  • Grayscale pdf output from Illustrator (?)

    Some of my real estate clients want me to do grayscale versions of their flyers in addition to the color version sometimes. Is there a way to take a cmyk pdf that was output from Illustrator (complete with vectors and images, etc) and output to a new grayscale pdf correctly? There seems to be no way to do that in Illustrator aside from editing them within the app (not the best way). Illustrator does a bad job with converting embedded/linked cmyk bitmap images to grayscale...they end up over-saturated and look incorrect.
    Converting all vectors is easy with Ai CS3's Live Color, so no worries there. I'm just looking for an easy automated way to do this from the cmyk Ai file.

    Mr. Met wrote:
    I thought that only applied to CS4 and/or snow leopard thing. I have CS3/OS 10.4.11 and have no problems printing to postscript.
    Right, it's a problem in Snow Leopard. It looked to me as if you were answering the question of what method to use in Snow Leopard, and print to PS is problematic. For that matter, the result is the same if you print to PS and distill or do it in one step by printing to PDF if you use the same settings, so unless you use a watched folder for distiller, I can't see any reason to use two steps.

  • How to generate PDF output from OracleXMLQuery

    I want to generate a PDF out put from XML by using JSP. For this i writen jsp and xsl. My jsp code works fine if i include html formated xsl and it displays as a text when i pass pdf formated xls.
    Here i am providing my jsp code.
    I don't want to use XSQL, please provide me information ASAP.
    <%@ page import = "java.sql.*,oracle.xml.sql.query.OracleXMLQuery" %>
    <% Connection conn = null;
    Statement stmt = null;
    ResultSet rset = null;
    String dbURL = "jdbc:oracle:thin:@localhost:1521:oracle9i";
    try{
         DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
         conn = DriverManager.getConnection(dbURL, "scott", "tiger");
         stmt = conn.createStatement ();
         rset = stmt.executeQuery ("SELECT * " +
                   "FROM scott.emp ORDER BY ename");
    OracleXMLQuery xq = new OracleXMLQuery(conn, rset); %>
    <% xq.setStyleSheet("emptablefo.xsl"); %>
    <%= xq.getXMLString() %>
    <% } catch (java.sql.SQLException e) {  %>
    SQL error: <%= e %>
    <% }
    finally {
    if (stmt != null) stmt.close();
    if (rset != null) rset.close();
    if (conn != null) conn.close();
    } %>
    Thanks,
    Ramana

    >
    if the report output format is xls this code is generating the pdf output
    >
    looks like pdf is default output in template definition in xml publisher resp
    so for r12 use FND_REQUEST.ADD_LAYOUT as example
    v_request_id   number;
    xml_layout boolean;
    xml_layout := FND_REQUEST.ADD_LAYOUT('XXCUSTOM','XXCONCNAME','en','00','EXCEL');
    v_request_id := fnd_request.submit_request(application => 'XXCUSTOM',
                                               program     => 'XXCONCNAME',
                                               description => NULL,
                                               start_time  => NULL,
                                               sub_request => FALSE,
                                               argument1   => p_date
                                               );also see http://andyblg.wordpress.com/2012/08/23/run-concurrent-program-twice-with-different-layout-r12/

  • Color graphic in a PDF generated from a SmartForm causes error

    I have a SmartForm containing a color graphic. It works correctly,
    appears just the way it should in Print Preview, and it prints
    correctly. However, when I generate a PDF file from, Adobe Reader
    complains that the PDF file is corrupt and refuses to print it. If I
    remove the color graphic from the SmartForm and don't make any other
    changes, I get a good PDF file that can be parsed, displayed, and
    printed without any problems.
    Why is the presence of the color graphic in the SmartForm leading to a
    corrupt PDF file? Is there any workaround (short of removing the color
    graphic) that I can use to get a good PDF file?
    Here is a more detailed description of what I am doing.
    1.     Creating the color graphic
         A. I started with a color .TIF file
         B. I went to transaction SE78,
            Form Graphics -> Stored on Document Server ->
              GRAPHICS General Graphics -> BMAP Bitmap Images
         C. Clicked on the "Import" icon
         D. In the "File name" field, navigated to my .TIF file
         E. Typed the name of my graphic in the "Name" field and some
            descriptive text in the "Description" field
         F. Selected the "Color Bitmap Image" radio button
         G. Set the "Print Attributes" as follows:
            Unchecked - Resides in the Printer Memory
            Checked   - Reserve Height Automatically
            Unchecked - Compression
         H. The color graphic seems to upload correctly
         I. When I click on Print Preview, it is displayed perfectly.
         J. When I use the Search Help associated with the name field to
            find the graphic, it is shown with the name and description
            that I gave it, the Object field is displayed as "GRAPHICS",
            the ID field is displayed as "BMAP".
         K. When I select Graphic -> Graphic Information, the Resolution is
            75 DPI and the Size is 26.86 x 8.26 cm. When I use this graphic
            in the SmartForm, I will enter the resolution as 300 DPI - in
            order to get an image whose dimensions are one-quarter of these
            dimensions, but which will have a good resolution for a laser
            printer.
    2.     The use of the color graphic in the SmartForm
         A. It is a "Graphic" node which is the first node on the first
            (and only) page of the SmartForm.
            i.   The Name is the name of the graphic I created
            ii.  Object = "GRAPHICS"
            iii. ID = "BMAP"
            iv.  The "Color Bitmap Image (BCOL)" radio button is selected
            v.   The Resolution = 300 DPI
         B. The position and size are:
            i.   Left Margin = 15.00 MM
            ii.  Width = 69.00 MM
            iii. Upper margin = 15.00 MM
            iv.  Height = 21.77 MM
    3.     The process of producing the PDF file
         A. The function SSF_FUNCTION_MODULE_NAME is called to obtain the
            name of the function module associated with the SmartForm.
         B. The function module (whose name was returned by
            SSF_FUNCTION_MODULE_NAME) is called with:
            i.   CONTROL_PARAMETERS = a SSFCTRLOP structure with
                 GETOTF = 'X'
                 NO_OPEN = space
                 NO_CLOSE = space
                 NO_DIALOG = 'X'
            ii.  OUTPUT_OPTIONS = a SSFCOMOP structure with:
                 TDPRINTER = 'POST2'
                 TDDEST = space
                 TDNEWID = 'X'
                 TDIMMED = 'X'
                 TDDELETE = space
                 TDCOVER = space
                 TDCOPOES = 1
           iii. JOB_OUTPUT_INFO = a structure of type SSFCRESCL used to
                 receive the OTF file
         C. The function CONVERT_OTF is called with:
            i.   FORMAT parameter = 'PDF'
            ii.  OTF table parameter = the OTFDATA table contained within
                 the JOB_OUTPUT_INFO SSFCRESCL structure returned from the
                 SmartForm function module.
            iii. BIN_FILE parameter = an XSTRING used to receive the PDF
                 file
            iv.  BIN_FILESIZE parameter = an integer used to receive the
                 size of the PDF file.

    Hello David,
    The reason for this problem is probably related to the FlateDecode compression described  in SAP Note 843480 (PDF conversion: Compression of bitmaps and TrueType fonts).
    Try switching off the usage of FlateDecode compression again via report RSTXPDF3 as described in Note #843480.
    It is a little confusing. The option 'FLATE_COMPR_OFF' needs to be set to 'On' to turn off the FlateDecode compression.
    To set this run as follows:
       se38 -> RSTXPDF3 -> enter 'FLATE_COMPR_OFF' in the 'Name' field
             -> Select 'Change Settings' radio button
    You will get a pop-up 'Do not use flat compression'.
    Select the 'on' button.
    After this create a new PDF and check if the problem is resovled.
    Regards,
    Aidan

  • PDF output from payment program (trancode F110)

    We currently use 3rd party software to create PDF files of individual remittance advices from the payment run program, by passing the spool output print stream to this software, which recognises each different vendor remittance, and creates a separate file for each one.
    Due to cost restrictions, we want to no longer use the external software and want to do this all within SAP.
    I have looked at various functions available to create PDF output, and think CONVERT_OTF_2_PDF is the one to use, however, when I have tried a simple test of this FM, it creates one pdf file for the spool output, but we need to create separate PDF files for each different remittance advice, per vendor.
    Can someone suggest a way that we can do this?
    Thanks,
    Michael.
    PS. I am an ABAPer.

    Hello,
    Maybe you can start with Adobe forms in SAP, for printing the technology is free, it is quite an emerging one and there are plenty of tutorials. Maybe you can start from here: http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c2567f2b-0b01-0010-b7b5-977cbf80665d and create your own customer forms.
    Note there is SAP ADobe forms forum under NetWeaver and you can find me and other SAP Adobe people there.
    Regards, Otto

  • Best way to produce PDF output from Classic ASP

    I have Adobe Professional 9.2 and LiveCycle ES Designer 8.1. I need to change a Classic ASP web application to produce a PDF report. The way I see it I have three options:
    1) create native PDF output using open source libraries.
    2) create an FDF form with Adobe Pro as a template and use FDF libraries from Adobe to substitute text in the template
    3) create an XML form with LiveCycle as a template and do direct text substitution into the XML.
    I created a PDF with LiveCycle and prior to saving, unchecked the "save PDF files compressed" in tools/options. I don't want any text boxes, just labels, and in some of the labels I will put distinguishable text. When the web application uses the template it will find various text strings in the XML stream and substitute.
    What's the best way to do this? Is there a better way of doing substitution into the LiveCycle template? I would like to stay with LiveCycle. But from code samples I've seen, FDF substitution is very straightforward and possibly easier. I also thought LiveCycle is supposed to be the way to go instead of Adobe Pro. Thanks

    I cannot speak about theother methods but I can speak about the XFA method. In most cases people will bind the xml to the rawValue property of the field thereby filling the field with the value. However there are other bindable properties. Caption is one of them. first you have to turn on the Dynamic Properties. Click on th efield you want to control on on the Object palette click the icon as shown below:
    A new menu will open like this:
    Turn that option on and the Caption will turn a different color and will become a link. Click on the link and then you can map the caption to a node in your XML structure. This assumes that you have created a Data Connection to bind with.
    Paul

  • PDF output from RH9 WebHelp

    I am asked to publish some WebHelp content as PDF prior to the infrastructure being available to publish WebHelp.
    My wish is to publish it as PDF but not with a "Printed documentation" look. I want to create a PDFthat looks like Web pages. What is the best way to do this?
    My thought is to publish to Word, then tweak and then save as PDF.
    In RH 9 , what tools are available for creating a good-looking HTML output from Word?

    Thank you Peter. I don't need the PDF output to look exactly like my HTML (even if it were possible, which it isn't). But I want the PDF output to be in a style of presentation optimised for online reading and navigating (rather than printing). There seem to be a number of limitations with both the template and the CSS approach.
    For example, I can force the page size and orientation of the PDF output by modifying the style map template. But some settings don't seem to come across: headers, footers, two-column layout. It seems that RH9 overrides these settings when it produces its "print" output. So the clean-up tasks post-generation render this effort impractical in cases where the source files will be changing frequently. I suppose a clever macro writer could automate the cleanup tasks, but I don't happen to have one at my disposal.

  • Is any one else have issues with interactive PDF output from InDesign CC (2014)

    I am currently trying to produce a document with a level of interactivity I have achieved many times before.
    The interactivity is just a web style menu, show/hide the menu shows button set one, clicking on those shows a second set of buttons, and clicking in one of those goes to destination page and hides all menu buttons once more.
    When output from ID CC 2014 the result is loads of missing buttons and no working menu.
    Its not a corrupt ID file. I tried a brand new empty file, recreated basic structure with simple one state buttons and achieved similarly useless results.
    If I back save using IDML and open in CS5, export from there, it works beautifully, so problem is not as many have been recently, to do with Acrobat browsers.
    If I back save and open in InDesign CC (not 2014), export from there, it doesn't work, so problem is shared there!
    Anybody any suggestions? Experienced similar and found a cure?
    SOLVED BY A COLLEAGUE:
    You can (no longer) use full stops/decimal points in button naming. Menu was hierarchically labelled as 1, (1.1, 1.2), (1.1.1, 1.1.2) etc.
    Renamed 1_1, 1_1_2 etc and all functionality has returned. Why you could and now you can't, who knows!
    Hope this helps you if you stumble across here with the same issue.

    Thank you for reporting this.
    I would consider this a bug in InDesign CC v9.x and v10.x and would report it:
    Adobe - Feature Request/Bug Report Form
    (Cannot test it right now.)
    Uwe

  • Pdf output from abap spool

    Would like to know how to use the spool at the backend to create the pdf output in webdynpro. Thanks

    Appreciate if anyone can help me on this. Thanks!!

  • Terrible Graphic Quality with PDF Export from FM9

    I'm using FM9 unpatched on Windows XP Pro.
    I cannot get the PDF export to work properly with graphics. Everything else looks great in general, but the graphics lose quality, both upon import into FM and even more so upon PDF export.
    I have tried every option for importing, both working with native files (ex. .ai) and with JPEG or other format exports, as well as importing the files themselves directly and importing by reference.
    I have also tried tweaking the PDF "Image" settings, removing any and all compression to see if it would help, which it did not.
    In the end, the best results actually come from imported JPEG files, which are a bit blurry, but (relatively) usable, considering the alternatives. The Illustrator files I want to use are just awful, they are completely bitmapped upon export to PDF.
    It is also worth noting that I do not encounter this problem when using the FM drawing tools. The output of those graphic files on printer and in PDF is excellent, vector-quality art.
    I find it unusual that I am having this problem and see no other mention of it in the forums. It is causing serious pain and delays on my project, so if someone has any insight, it would be greatly appreciated.
    Douglas

    First and foremost, you mention using FM unpatched, but you don't mention any specific reason you haven't applied the patches, can you elaborate on that? What version are you running, then?  The latest version is 9.03 aka p250, as shown in Help > About.
    There were several fixes to PDF generation in both the .02 and .03 update, so that would be the #1 recommendation.
    Second thing is to tell us
    1)  how you're creating the PDFs, are you using Save As or are you printing to a print file,
    2) what printer do you have set as your default printer (in FM) when you create the PDF
    Sheila

  • No hierarchy structure in PDF output from ditamap

    I am trying to publish a ditamap to pdf with FM11. Adobe seems to recommend to save as a FM book with components and then to PDF. Then the hierarchy was lost in the PDF even though it looks very good in the FM book structure.
    Almost all topics are rendered as a  chapter;
    the exception is when the chapter has a href to a dita file;
    all sections are rendered as a section no matter where this section belong to and which layer its parent topic is on;
    all the topic title use title.0 para tag, and sections use title.1 para tag, so they are all included in the TOC as chapters and sections, no matter which layer they are on in the ditamap;
    the numbering of chapter/section are in a mess.
    I have looked into the ditafm-output.ini and didn't find useful settings. Any suggestions or clue? or FrameMaker is only not capable for these issues? or can only publish a flat topic PDF?
    Thanks!

    You might not be accessing the right ditafm-output.ini file. See my answer from Adobe support under:
    Publish in Responsive HTML5 - files skipped and 3rd level topics not generated
    Hope that helps.
    EFR
    Cambridge Imaging Systems

  • PDFs output from MadCap Flare issues when converted to PPT

    We are single sourcing docs and training. We have successfully output PDFs from Flare for PowerPoint. The Adobe output lets us fully edcidt the slides, unlike the freeware solution that we tried earlier. HOWEVER, bullets, some autonumbered styles such as H2 and H3, as well as tables (content somteimes overflows) do not render properly, which would require extensive editing.
    Do you have any advice?

    Bill, Thank you! This makes good sense. I can see where autonumbering and tables might pose issues, but Adobe specifically states conversion to bullets is supported.
    So here is what my investigation shows:
    Flalre creates bullet points using the <li> tag in HTML markup.
    This translates in PPT to a small dash, and when I click the bullets, I see None selected. (The Dita type is also li)
    Do you have any insights as to hwo to tag for PPT?
    amny, many thanks!

  • Unable to view PDF output from Report Server

    Help!
    I have successfully setup CGI Report Server and can generate and view reports in IE5 as HTML repformat.
    However when I try to generate output as PDF I do not get the report displayed. Instead I get a little acrobat icon displayed in the top left of the browser window.
    When I click on the icon I get a IE5 message:
    "There is no viewer available for the type of object you are trying to open....
    Content Type: application/pdf"
    ...and then insists on taking me to Microsoft activex plugin page.
    This is very stange as I DO have Adobe Acrobat Reader 4 installed and the plugin works ok when viewing PDF files on Oracle webpage.
    Any suggestions on how to resolve are gratefully received!!
    Regards,
    Richard.

    You have run into an interesting problem. The problem is not with Reports. The problem is with Adobe. You can search Adobe's web site and they point to Microsoft (btw, this problem doesn't occur with netscape as the browser) Microsoft's web site point to Adobe.
    The Problem is that the .ocx Adobe puts out for use with IE times out if the report take stoo long to start sending back data. We had report that worked and some that didn't. We took a report that worked and put a sleep command in it and when the sleep command got to 10 the report quit working.
    My suggestion: move to netscape, make your reports as fast as absolutely possible.
    Jeff
    null

Maybe you are looking for

  • Help with two DIVs as columns at 100% page height

    I've got two DIVs side by side on my page and I want both columns to fill the page from top to bottom. The left DIV stops about half way down the page. There are DIVs inside of each column. My test link is: http://faceworks.webtestingsite.net/pages/f

  • Language translation in smartforms

    In SE63, I tried to convert one smartform "LE_SHP_DELNOTE" from DE language to EN. When I click on EDIT button, I am getting two split windows, one for source and other for target. But the problem is I am getting DE language in both the source and ta

  • Mapping Errors Log file to be sent via FTP

    Hi All, Functional specs of a file to file scenario require to create an aditional log file containing the file name, creation date and a list with the lines were a problem occurred with an error description and then send it to R3 via FTP. Does anyon

  • Im  experiments a 1436 error And  I want know how can I repair it. Is my hardware a classic ipod 80 gb?

    Im  experiments a 1436 error And  I want know how can I repair it. Is my hardware a classic ipod 80 gb?

  • No more Pixel dimension

    Hi everybody, I am in need of some advice. My current project is developing a prototype GUI for a copier. I've done more of these projects before and it was always safe to say that only one panel screen size needed to be supported (i.e. e.g. only 800