Ddl-generation error

Hello, i'm having a very strange error during ddl-generation, i'm using Netbeans 5.5, Glassfish V2 and Mysql 5.0.26. Toplink bug?
JDO76609: Got SQLException executing statement "ALTER TABLE ana_ute DROP FOREIGN KEY UNQ_ana_ute_0": java.sql.SQLException: Error on rename of './lbdb_test/ana_ute' to './lbdb_test/#sql2-11af-1e' (errno: 152)

probably i found the problem...
Toplink generate this:
ALTER TABLE ana_ute DROP FOREIGN KEY UNQ_ana_ute_0;
but with Mysql the correct command is:
ALTER TABLE ana_ute DROP KEY UNQ_ana_ute_0;
This problem is only for the Unique Key.

Similar Messages

  • Toplink.ddl-generation doesn't seem to be working

    I can't get my project to persist. Why is this?
    I have a skeleton project using JSF2, EJB3, Glassfish3, JPA/toplink, Helios. When I run the deployed project, I get this error:
    +Caused by: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.0.1.v20100213-r6600): org.eclipse.persistence.exceptions.DatabaseException+
    Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'test.bar' doesn't exist
    Error Code: 1146
    A blank DB called test exists on mySQL
    I have a connection pool in glassfish with a URL=jdbc:mysql://localhost:3306/test
    user=root, pass=root
    A mySQL connector jar exists in $glassfishHome/glassfish/lib
    My code is as follows:
    newBook.xhtml
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
         xmlns:h="http://java.sun.com/jsf/html">
    <h:head>
         <title>Creates a new book</title>
    </h:head>
    <h:body>
         <h1>Create a new book</h1>
         <hr />
         <h:form>
              <h:panelGrid columns="2">
                   <h:outputLabel value="ISBN : " />
                   <h:inputText value="#{bookController.book.isbn}" />
                   <h:outputLabel value="Title :" />
                   <h:inputText value="#{bookController.book.title}" />
                   <h:outputLabel value="Price : " />
                   <h:inputText value="#{bookController.book.price}" />
                   <h:outputLabel value="Description : " />
                   <h:inputTextarea value="#{bookController.book.description}" cols="20"
                        rows="5" />
                   <h:outputLabel value="Number of pages : " />
                   <h:inputText value="#{bookController.book.nbOfPage}" />
                   <h:outputLabel value="Illustrations : " />
                   <h:selectBooleanCheckbox value="#{bookController.book.illustrations}" />
              </h:panelGrid>
              <h:commandButton value="Create a book"
                   action="#{bookController.doCreateBook}" />
         </h:form>
         <hr />
         <i>APress - Beginning Java EE 6</i>
    </h:body>
    </html>
    BookController.java
    package controllers;
    import java.util.ArrayList;
    import java.util.List;
    import javax.ejb.EJB;
    import javax.faces.bean.ManagedBean;
    import javax.faces.bean.RequestScoped;
    import ejb.BookEJB;
    import entities.Book;
    @ManagedBean
    @RequestScoped
    public class BookController {
         @EJB
         private BookEJB bookEJB;
         private Book book = new Book();
         private List<Book> bookList = new ArrayList<Book>();
         public String doCreateBook() {
              book = bookEJB.createBook(book);
              bookList = bookEJB.findBooks();
              return "listBooks.xhtml";
         public BookController() {
         public BookEJB getBookEJB() {
              return bookEJB;
         public void setBookEJB(BookEJB bookEJB) {
              this.bookEJB = bookEJB;
         public Book getBook() {
              return book;
         public void setBook(Book book) {
              this.book = book;
         public List<Book> getBookList() {
              return bookList;
         public void setBookList(List<Book> bookList) {
              this.bookList = bookList;
    BookEJB.java
    package ejb;
    import java.util.List;
    import javax.ejb.Stateless;
    import javax.persistence.EntityManager;
    import javax.persistence.PersistenceContext;
    import javax.persistence.TypedQuery;
    import entities.Book;
    @Stateless
    public class BookEJB {
         @PersistenceContext(unitName = "jdbc/test") //java:comp/env/jdbc/
         private EntityManager em;
         public List<Book> findBooks() {
              TypedQuery<Book> query = em
                        .createNamedQuery("findAllBooks", Book.class);
              return query.getResultList();
         public Book createBook(Book book) {
              em.persist(book);
              return book;
    Book.java
    package entities;
    import javax.persistence.Column;
    import javax.persistence.Entity;
    import javax.persistence.GeneratedValue;
    import javax.persistence.GenerationType;
    import javax.persistence.Id;
    import javax.persistence.NamedQuery;
    import javax.persistence.Table;
    @Table(name="bar")
    @Entity
    @NamedQuery(name = "findAllBooks", query = "SELECT b FROM Book b")
    public class Book {
         @Id
         @GeneratedValue(strategy=GenerationType.IDENTITY)
         private Long id;
         @Column(nullable = false)
         private String title;
         private Float price;
         @Column(length = 2000)
         private String description;
         private String isbn;
         private Integer nbOfPage;
         private Boolean illustrations;
         public Book() {
         public Long getId() {
              return id;
         public void setId(Long id) {
              this.id = id;
         public String getTitle() {
              return title;
         public void setTitle(String title) {
              this.title = title;
         public Float getPrice() {
              return price;
         public void setPrice(Float price) {
              this.price = price;
         public String getDescription() {
              return description;
         public void setDescription(String description) {
              this.description = description;
         public String getIsbn() {
              return isbn;
         public void setIsbn(String isbn) {
              this.isbn = isbn;
         public Integer getNbOfPage() {
              return nbOfPage;
         public void setNbOfPage(Integer nbOfPage) {
              this.nbOfPage = nbOfPage;
         public Boolean getIllustrations() {
              return illustrations;
         public void setIllustrations(Boolean illustrations) {
              this.illustrations = illustrations;
    persistence.xml (located under src/META-INF)
    <?xml version="1.0" encoding="UTF-8"?>
    <persistence version="2.0"
         xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
         <persistence-unit name="jdbc/test">
              <jta-data-source>jdbc/test</jta-data-source>
              <class>entities.Book</class>
              <properties>
                   <property name="toplink.ddl-generation" value="drop-and-create-tables"></property>
                   <property name="toplink.ddl-generation.output-mode" value="database"></property>
                   <property name="toplink.logging.level" value="finest"/>
                   <property name="toplink.logging.logger" value="DefaultLogger"/>
                   <property name="toplink.jdbc.user" value="root"/>
                   <property name="toplink.jdbc.password" value="root"/>
              </properties>
         </persistence-unit>
    </persistence>

    It seems that Glassfish 3 uses eclipseLink as a default and not TopLink. I've reconfigured using eclipseLink.

  • DDL Generation not working

    Hi all,
    for some strange reason the DDL generation has stopped working. See below. The physical model is definitely selected and also all the objects in it.
    Any suggestions?
    Thanks and regards, Garry
    -- Generated by Oracle SQL Developer Data Modeler 3.1.0.687
    -- at: 2012-05-02 16:00:12 CDT
    -- site: Oracle Database 11g
    -- type: Oracle Database 11g
    -- Oracle SQL Developer Data Modeler Summary Report:
    -- CREATE TABLE 0
    -- CREATE INDEX 0
    -- ALTER TABLE 0
    -- CREATE VIEW 0
    -- CREATE PACKAGE 0
    -- CREATE PACKAGE BODY 0
    -- CREATE PROCEDURE 0
    -- CREATE FUNCTION 0
    -- CREATE TRIGGER 0
    -- ALTER TRIGGER 0
    -- CREATE STRUCTURED TYPE 0
    -- CREATE COLLECTION TYPE 0
    -- CREATE CLUSTER 0
    -- CREATE CONTEXT 0
    -- CREATE DATABASE 0
    -- CREATE DIMENSION 0
    -- CREATE DIRECTORY 0
    -- CREATE DISK GROUP 0
    -- CREATE ROLE 0
    -- CREATE ROLLBACK SEGMENT 0
    -- CREATE SEQUENCE 0
    -- CREATE MATERIALIZED VIEW 0
    -- CREATE SYNONYM 0
    -- CREATE TABLESPACE 0
    -- CREATE USER 0
    -- DROP TABLESPACE 0
    -- DROP DATABASE 0
    -- ERRORS 0
    -- WARNINGS 0

    Hi Garry,
    This could be because you asked it not to generate objects on a previous DDL Generation. When you do your DDL Generation, a "DDL Generation Options" panel is displayed. This has various tabs (Tables, PK and UK Constraints, etc.). I suggest you open these tabs and check that the "Selected" tick-boxes for the relevant objects are set.
    If this doesn't help, please can you check whether there are any relevant error messages in your log file (this is normally the file datamodeler.log in the folder datamodeler\datamodeler\log).
    David

  • SAP System Message: Syntx error or generation error in a screen

    dear sap basis gurus,
    i am currently having problems signing on to our DEV server. i get this error message:
    <SID>: SAP System Message
    Syntx error or generation error in a screen.
    it won't let me log on.
    there were no changes made on the server (i.e., profile parameters) lately. it was working really fine after our support package level upgrade about 5 months ago.
    have you encountered this problem before? please help me as there we have two imminent go-lives.
    thank you very much in advance.
    best regards,
    albert

    hello nick, ashok,
    thank you very much for your responses.
    i have already resolved this issue by just freeing up some space from our disks. not one of them was full though.
    i hope i would no longer encounter the error message.
    again, thank you.
    best regards,
    albert

  • Report Painter GR214 generation error - Short dump 4.6C

    While generating a report with more than twenty sections, the system short dumps with the error message GR214 pointing to  "MESSAGE_TYPE_X"                                          
    "%_T01JR0 " or "########################################" 
    "INSERT_ROW_FORMULA_NEW"                                  
    Any leads to fix this?
    The generation error happens only when I include a last line formula in the last section, Till then it is working fine.

    Hi,
    The error you are receiving could be caused by a large number of row blocks in your report definition, (you can check the report definition with report RGRRDC00). A report should not contain too many row and column blocks. It is not possible to give an upper bound for the number of row blocks (since the length of the coding depends on other parts of the report as well). However, even a complicated Report Writer or Report Painter report should not contain more than 50 row blocks, and reports with more than 100 row blocks should not be defined.
    In this case the report(s) have to be redefined. Please also refer to the note 387916 for further information regarding this issue.
    When there are more than 30 variables in a report, please have a look at the note 332091.
    Please reduce the number of row blocks in the report by using the function 'Edit' -> 'Rows' -> 'Explode' in the Report Painter
    definition. This function enables several rows to be created for one row block (in the Report Painter definition one row block is just one row). Report Painter (and Report Writer) are designed to display hierarchical reports where the rows in the few row blocks are built up using the 'Explode' function.
    regards
    Waman

  • Smartform report generation error

    Hi,
    I have a problem with a report calling a smartform. The report works perfectly on the 1 system but on the other system there is a generation error. I found that the problem lies with the following declaration:
    data: otf_info type SSFCRESCL. 
    I compared the structures on the different systems and they are identical. The only difference is the Support Package levels. The error occurs on the system with the higher support package - SAPKB64015 (basis and aba) whereas the other system is still at level 12 (SAPKB64012).
    Any ideas what is causing the generation error and what could be done to fix it?
    Regards
    Liza-Marie

    Hi ,
    I think there may be some errors in function group errors.
    Try the following :
    T/Code : SMARTFORMSEnter the name of the form> Test--> This will leads to function module --> Utilities(Menubar)-=-> Repair function group --> Repair.
    After repairing the function group --> Save and Activate.
    Then transport the Smartform to other system .
    Regards,
    Lanka

  • SID generation error

    Hi All,
    I am loading data for Sales Item for this i have enhanced the DataSource. Now while i am loading the data to DSO it is giving error while activating the DSO--SID generation error as it found some hex. values.
    To overcome this i tried with TOUPPER formula for that field but still it is giving error. So i have removed unchecked the check box 'SID generation upon activation' as i am not going to use this DSO for reporting.
    But i am transferring data to InfoCube where again it is giving the same error.
    Kindly help me out to overcome this error.

    Hi
    Always Load Master Data before Transaction data to get rid of SID Generation Error.
    And Hex Values FM -- CHAR_HEX_CONVERSION.
    http://help.sap.com/saphelp_nw70/helpdata/EN/48/b4e431c0ca11d2a97100a0c9449261/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/25/73725c700511d3aa40006094b92fad/frameset.htm
    Re: How-to convert a character to its hex value?
    Hope it helps

  • Getting a sid's generation error while activating  DSO

    Dear All,
    We are created a standard dso on top of generic data source. This data source is created on top CDHDR and CDPOS tables through function module.
    While acting the DSO , We are getting a sid generation error.
    Please let me know the process to resolve the issue or tell me any other alternative solution is available to overcome this situation.
    Thanks
    Regards,
    Sai.K

    Dear All,
    Thanks for your prompt response and please find the below attachment.Here , the info object fetches some hexa decimal values due to that it got failed.
    Please let me know solution to overcome the this error.
    Thanks
    Regards,
    Sai.k

  • Generation Error - when trying to publish a Java web service

    Hi All,
    I keep getting the following Generation Error -- java.util.NoSuchElementException_ when I'm trying to create a Java Web Service using the jdeveloper wizard.
    I have 2 entities and 2 stateless session beans acting as their facades. One entity has a One-One(FK) relationship with the other entity. I test out the entities and session beans using the test client and the OC4J embedded container and everything seems to work. When I try to generate a Java WebService from one of the entities I keep getting the "Generation Error". Could someone please provide me with some insight into why I'm facing this problem, because it seemed fine when I published J2EE web services previously and now this happens and I cant seem to publish web services anymore. Everytime I keep getting the same GenerationError. Thanks in advance.

    Without going into any technical discussion about the code, my first question is what JDK version was used to create this which was imported into the form? Understand that Forms 10 runs on JDK 1.4.2, so if you used any newer JDK version, likely there will be problems.

  • Generation error during WebDynpro migration from 7.0 to 7.31

    Hello everybody!
    We are trying to migrate some WebDynpro DCs to NW 7.31. After checking in the old sca file into the new track, synching the DCs in NWDS and creating projects for them, most of the DCs compile ok, but we get a build error in one WebDynpro DC we are not able to resolve.
    The build.log shows
        [wdgen] [Error]   Generation error while processing <somepath>/NWDSWorkplace_7_3.jdi/2/t/C5FB4D1181864A07E2DF8F1E8D280266/gen_wdp/packages/de/xxx/somepath/wdp/Resource<myview>.properties (java.lang.reflect.InvocationTargetException)
    with the stack trace showing an Generation error while processing template defaultResource:
         [wdgen] [Info]    Generation error while processing template defaultResource
         [wdgen] [Info]    Catching throwable null
         [wdgen] [Info]    java.lang.reflect.InvocationTargetException
         [wdgen] at sun.reflect.GeneratedMethodAccessor114.invoke(Unknown Source)
         [wdgen] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         [wdgen] at java.lang.reflect.Method.invoke(Method.java:597)
         [wdgen] at com.sap.ide.generationfwk.task.GenerationTaskJavaMethod.executePersistent(GenerationTaskJavaMethod.java:139)
         [wdgen] at com.sap.ide.generationfwk.GenerationBase.doPersistentGeneration(GenerationBase.java:207)
         [wdgen] at com.sap.ide.generationfwk.GenerationBase.doPersistentGeneration(GenerationBase.java:164)
         [wdgen] at com.sap.ide.webdynpro.generation.Generation.doPersistentGenerationForComponentDefaultResource(Generation.java:541)
         [wdgen] at com.sap.ide.webdynpro.generation.Generation.doPersistentGenerationForComponentResources(Generation.java:3188)
         [wdgen] at com.sap.ide.webdynpro.generation.Generation.doPersistentGenerationForComponentRecursively(Generation.java:1788)
         [wdgen] at com.sap.ide.webdynpro.generation.Generation.doPersistentGenerationForComponentRecursively(Generation.java:1772)
         [wdgen] at com.sap.ide.webdynpro.generation.Generation.doPersistentGenerationForComponentRecursively(Generation.java:1772)
         [wdgen] at com.sap.ide.webdynpro.generation.Generation.generateComponentsForArchive(Generation.java:2660)
         [wdgen] at com.sap.ide.webdynpro.generation.Generation.generateMDOsForArchive(Generation.java:2604)
         [wdgen] at com.sap.ide.webdynpro.generation.Generation.generatePersistentArchive(Generation.java:1630)
         [wdgen] at com.sap.ide.webdynpro.generation.console.GenerationConsole.generate(GenerationConsole.java:190)
         [wdgen] at com.sap.webdynpro.generation.ant.GenerationAnt.main(GenerationAnt.java:69)
    So far, everything I could find is pointing to some localisation issue, but I'm not able to solve the problem. Some hints say I'd have to change the language settings of the DC (or SC) upon import, but I never saw anything that gave me an opportunity to do so. On the other hand, other WebDynpro DCs in the same track get imported o. k. and compile without any error.
    The other thing I see in this WebDynpro DC is that in some views, all GUI element texts are missing, some views are o. k.
    Can anyone shed some light on this issue ?
    Thanks
    Michael

    Ok, I can provide some more information:
    In the WebDynpro DC's .dcdef file, I changed
    <properties>
      <localization xmlns="http://xml.sap.com/2003/06/Localization" xmlns:ns0="http://xml.sap.com/2003/06/Localization">
       <domain>BC</domain>
       <originalLocale>en</originalLocale>
      </localization>
      <minimizeClassFiles xmlns="http://xml.sap.com/2004/07/DCProperties/WebDynpro" xmlns:pns1="http://xml.sap.com/2004/07/DCProperties/WebDynpro">auto</minimizeClassFiles>
      <projectVersion xmlns="http://xml.sap.com/2004/07/DCProperties/WebDynpro">1</projectVersion>
    </properties>
    to
    <properties>
      <localization xmlns="http://xml.sap.com/2003/06/Localization" xmlns:ns0="http://xml.sap.com/2003/06/Localization">
       <domain>BC</domain>
       <originalLocale>de</originalLocale>
      </localization>
      <minimizeClassFiles xmlns="http://xml.sap.com/2004/07/DCProperties/WebDynpro" xmlns:pns1="http://xml.sap.com/2004/07/DCProperties/WebDynpro">auto</minimizeClassFiles>
      <projectVersion xmlns="http://xml.sap.com/2004/07/DCProperties/WebDynpro">1</projectVersion>
    </properties>
    After that, the views with previously missing GUI texts were showing these texts inside the NWDS WebDynpro view editor, and those views that did previously show these text didn't show them any more! So there seems to be some discrepancy regarding the language the views were created in.
    Any hint on what files have to be changed in what way to either remove internationalization completely or to set all views to a single language ?
    Thanks
    Michael

  • Runtime Error in CA01 - Syntx error or generation error in a screen 1200.

    Hi,
    I am unable to identify the exact reson for this runtime error, please guid what i need to do to overcome this error.
    Transaction CA01.
    I am getting below Syntax Error in Screen 1200 of Prog SAPLCPDA
    Element CHANGE_RULE touches or overlaps other element
    Message no. 37315
    Please find below Error Log.
    Short text
        Syntx error or generation error in a screen.
    What happened?
        At the screen generation it was detected that a screen to be generated
        has a syntax error or could not be generated due to another error.
    What can you do?
        Note which actions and input led to the error.
        For further help in handling the problem, contact your SAP administrator
        You can use the ABAP dump analysis transaction ST22 to view and manage
        termination messages, in particular for long term reference.
    Error analysis
        Screen "SAPLCPDA" 1200 could not be generated.
    How to correct the error
        Rerport the error to SAP if it is a SAP screen.

    Hi,
    What are the possible reasons for getting this error.
    Runtime Error in CA01 - Syntx error or generation error in a screen 1200.
    Thanks in advance

  • Generic oracle eway code generation error in Java caps 5.1.3

    Hi,
    I'm using an oracle eway for adding records to a table. I have a prepared statement in the otd. When I try to build the project I'm getting the following error. Could any one let me know how this problem can be fixed?
    com.stc.codegen.framework.model.CodeGenException: Generic Oracle eway code generation error(ERROR_CODEGEN_GENERIC_CODELET_GENERAL)
         at com.stc.oracle.codegen.OracleEWayCodeletFactory$OracleEWayCodelet.generateFiles(OracleEWayCodeletFactory.java:1860)
         at com.stc.codegen.frameworkImpl.model.CodeGenFrameworkImpl.processCodelets(CodeGenFrameworkImpl.java:640)
         at com.stc.codegen.frameworkImpl.model.CodeGenFrameworkImpl.process(CodeGenFrameworkImpl.java:1544)
         at com.stc.codegen.frameworkImpl.model.DeploymentVisitorImpl.process(DeploymentVisitorImpl.java:405)
         at com.stc.codegen.frameworkImpl.model.DeploymentVisitorImpl.process(DeploymentVisitorImpl.java:308)
         at com.stc.codegen.frameworkImpl.model.DeploymentVisitorImpl.traverseDeployment(DeploymentVisitorImpl.java:268)
         at com.stc.codegen.driver.module.DeploymentBuildAction.loadCodeGen(DeploymentBuildAction.java:923)
         at com.stc.codegen.driver.module.DeploymentBuildAction.access$1000(DeploymentBuildAction.java:174)
         at com.stc.codegen.driver.module.DeploymentBuildAction$1.run(DeploymentBuildAction.java:599)
         at org.openide.util.Task.run(Task.java:136)
         at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:599)
    Caused by: com.stc.codegen.framework.model.CodeGenException: Exception when generating OTD code ...Exception: javaClass: Oracle_std_otdOTD: Exception when invoke DB Codegen Task...Exception: Invalid parameter type: Class : [Std_insert_PreapredStat] Object: [Param1] Param Type : [DECIMAL].(ERROR_CODEGEN_DB)(ERROR_CREATE_OTD)
         at com.stc.oracle.codegen.OracleEWayCodeletFactory$OracleEWayCodelet.generateOtdJarFile(OracleEWayCodeletFactory.java:2045)
         at com.stc.oracle.codegen.OracleEWayCodeletFactory$OracleEWayCodelet.generateFiles(OracleEWayCodeletFactory.java:1756)
         ... 10 more
    Regards,
    Abdul

    hi...
    i too getting same problem..how did u reslove this...
    please help me out...
    thanks in advance
    KK

  • Content generation error. Failed to open the InDesign file.

    Hey all -
    In importing an article to a folio, I just received this error:
    "Content generation error.
    Failed to open the InDesign file. Please confirm the file can be opened in InDesign."
    The file is open right now in InDesign. I can close it and reopen it with no errors.
    I've tried resaving the article to a new file. No help.
    I tried creating a new folio and importing the article there. No help.
    All links are good. It's a simple file with images, a scrolling pane, and some buttons that link to other articles.
    Anyone else run into this problem? Any solutions?
    Thanks!

    Im getting this error also....?
    Want to avoid inporting each artical on at a time. Need to import multiple articals at once.
    Thanks.

  • Content generation error. [Error: Failed to Export the PDF file.]

    Hi;
    Everytime i try to update an article within a folio in DPS folio builder i get this error :
    Content generation error.
    [Error: Failed to Export the PDF file.]
    My colleague next to me is running exactly the same set up and doesnt get the error. in fact his update anf sideloading is fast as lightning.
    the ONLY difference is that im running v28 tools and he is on v27, however wehave another colleague running v28 and his updates work perfectly.
    Any ideas lovely community?
    Scott

    Hi Bob;
    Have tried that one. And again on your suggestion....no luck.
    Scott

  • "Content generation error. Failed to Export the PDF file"

    Building a multi-folio in InDesign 6 Folio Builder V30. Received "Content generation error. Failed to Export the PDF file" on several of the spreads. I have tried reducing the original pdf files sizes, but that did not help.
    Any suggestions on other possible causes or way to fix.?
    thanks
    Christopher Huber
    MMN

    I'm very new to DPS so I hope the following description makes some kind of sense.
    My magazine is in the process of doing trial runs for an iPad edition. I'm setting some templates up for us to work off so the process from magazine to iPad will run a lot smoother month to month.
    So far I've set up some dummy stock pages in an InDesign CS6 document, currently 15 pages long.
    All images are linked and all fonts have paragraph styles applied to them.
    I'm at the stage I want to check the document on my iPad to test run font sizes and their legibility.
    We have successfully been able to export the document as a jpg file but we really need the PDF format. When attempting this we get the above message.
    Sonia.

Maybe you are looking for

  • No recognized audio in .M2TS files

    I've seen a couple of different threads about this issue that have said the same thing but all have referenced AVCHD from various Sony Cameras. In my case my footage is from  HDPVR. Why the capture device would matter doesn't make any sense to me but

  • Cursor behavior in CAD - UCCX

    UCCX version 9.0.2.11001-24 Agent Desktop 9.0.2.1063 We recently upgraded from version 5.0 to the new version.  Since then, agents have complained that when they receive a skill call, the CAD window takes control of the mouse from whatever they were

  • Error of "Configure the Role of the Integration Service"

    Hi Guru: When i run the Template Installer,I got the following error in the step 19:"Configure the Role of the Integration Service" =================================================== Element 'SXMB_SET_ROLE_TO_IS':ONLY_ONE_CENTRAL_XMB Element 'SAPDEM

  • Embedding Keywords into Metadata?

    How do I embed keywords into photo metadata so that it is there permanently? (using Maverics and iPhoto 11)

  • Splitting text from black to white in the middle of a paragraph

    Googled and found a solution but it wasn't great. Basically I have a body of text and I want some to be overlayed over a white background (black text) then in the middle of the paragraph be overlayed onto black background (white text). Some of the ba