Document Merge

I have a question if InDesign has any support for datamerge 'immediate commands'.  We had an older system that would accept commands embedded in the input stream that would change the formatting of all subsequent lines. SGML types of commands the system understood we pretty common - ie <cf='century'> for changefont, <b>, <center>, etc, etc.
So, any plugins, etc??  I've seen that you can do some work with paragraph styles, but this is much more limiting that what I'm looking for.
We control the database, so this system really reduced the number of 'bases' that we maintain to merge data into, as a lot of the formatting can be handled at time of dataentry, as we can include almost anything into the fields.
Thank you in advance.

You can do this with InDesign Tagged Text. It has nothing to do with Data Merge, though, if you mean the InDesign mail-merge feature.

Similar Messages

  • XML Publisher PDF DOCUMENT MERGER

    Hi,
    The Report POXPRPOP (Print Purchase order Report) has been customized with XML publisher for PDF output. The RTF has been designed and it works well. Now I have to combine the two or more PO attachment with above XML report output and produces single PDF as output at concurrent request. The PO attachment is BLOB (PDF file, Word doc). For this I found that in the XML Publisher User Guide that we make this as post processing event through PDFDocumentMerger API.
    Could any one validate this and also suggest if any other best approach to do this?
    if you know more about this PDF document MErger could you know me how to stimulate this process?
    Any help in this regard would appreciate.
    Thanks,
    Sai Krishna.

    Hi,
    We have a similar requirement, did u get any solution. It would be great if you could share your solution.
    Thanks,
    Satheesh

  • Error in Infopath document merger, post upgrading to sharepoint 2013

    Hi all,
    Post upgradation of sharepoint portal to 2013, infopath document merger is not working for a portal.
    Assuming the error or compatibility issue with earlier infopath template 2007, created the new template; still error persists.
    Attaching herewith the error for reference.
    Looking for the resolution of it, in case somebody had faced this & cracked it.
    regards,
    Sandip

    Hi,
    According to your post, my understanding is that you failed to merge documents in a SharePoint Library.
    To merge forms in a SharePoint Library, we need programmatically effort. Please check whether you Create Custom Merge correctly, refer to the following reference
    http://msdn.microsoft.com/en-us/library/office/ee526363(v=office.14).aspx
    Regarding InfoPath product, I suggest you also open a thread at
    http://www.infopathdev.com/
    I believe at that forum, more people in expertise in InfoPath may help you regarding this.
    Refer to Merge multiple InfoPath forms: 
    http://office.microsoft.com/en-in/forms-server/merge-multiple-infopath-forms-HA010211945.aspx
    Best Regards,
    Lisa Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Lisa Chen
    TechNet Community Support

  • Document merge problem due to embedded fonts

    I am trying to merge 6 single page pdf documents into one pdf file.
    I am receiving this error on two of the six docs:
    "These documents contain subset fonts that have the same name and cannot be merged"
    Can anyone help me work through this issue?
    I am working with Adobe Acrobat 5.0.5 10/26/2001
    Thank you
    Joe

    I have exactly the same problem. How do I turn the subset off? Ticking off the option with percentages doesn't help.. What else could cause the problem? Please help, it's pretty urgent!
    Thank you in advance,
    Al

  • XML Document Merge

    Hi,
    I would like to merge(append) more than 1 XML documents into a single document.
    I'm trying to avoid using XSLT sofar and I gone through this forum and tried the following
    solution.
    Eg.,
    <!-- file1.xml -->
    <root>
    <Frthemes>
    <theme id="app1">
    <title name="French"/>
    </theme>
    </Frthemes>
    </root>
    <!-- file2.xml -->
    <root>
    <Enthemes>
    <theme id="doc" />
    <theme id="app1">
    <title name="English"/>
    <attrib x="1"/>
    </theme>
    </Enthemes>
    </root>
    After merging it should look like,
    <root>
    <Frthemes>
    <theme id="app1">
    <title name="French"/>
    </theme>
    </Frthemes>
    <Enthemes>
    <theme id="doc" />
    <theme id="app1">
    <title name="English"/>
    <attrib x="1"/>
    </theme>
    </Enthemes>
    </root>
    So I create a
    DocumentImpl myDoc;
    for (int i = 0; i < files.length; i++) {
    parser.parse(files.getCanonicalPath());
    myDoc = (DocumentImpl)parser.getDocument();
    mergeDocuments(newDoc, mibDoc.getDocumentElement());
    void mergeDocuments(Node parent, Node child) {
         // newDoc.appendChild(child);
    Node inserted = newDoc.importNode(child, true);
    parent.appendChild(inserted);
    either I get
    org.w3c.dom.DOMException: WRONG_DOCUMENT_ERR: A node is used in a different document than the one that created it.
    or
    org.w3c.dom.DOMException: HIERARCHY_REQUEST_ERR: If any node is inserted somewhere it doesn't belong
    Actually the interesting part is, I created a empty document and import a other node and it worked.
    Meaning, I can copy(merge) a document node into empty document.
    But If I try to merge doucument node into already existing document is gives WRONG_DOCUMENT_ERR
    So how do I merge more than 1 document with out using XSLT ?
    Using Xerces, Java1.4
    Thanks.

    try this
    Element element1 = doc1.getDocumentElement();
    Element element2 = doc2.getDocumentElement();
    // you gotta import the node into the right document
    Element tempElement = (Element) doc2.importNode(element1);
    element2.appendChild(tempElement);

  • PDF document merging - portrait/landscape

    When I try to merge 2 pdf documents using the XML Publisher API's (PDFDocMerger), I notice that, if my second file is in landscape mode, after merging the content of second file is shown in portrait mode with data being chopped off from the page. I tried adding a new section at the end of first pdf doc in landscape mode, but this does not help.
    I want the merged documents to retain the orientation of the page layout of the individual pdf''s. Is there a property I need to set.

    Reader cannot create PDFs. You'd need to ask in the Acrobat Forum, as your scanner probably uses it to make the PDF.

  • Pdf documents merging with each other

    Hi all
    I am facing a problem regarding writing pdf documents using iText. I have an application that generates different pdf documents using a common function that generates the pdf. Problem occurs when two or more people generate pdfs. Most of the times the pdfs get merged with each other, which is a serious problem. Please help me regarding this.
    Thanks
    Gurpreet Singh

    sounds like this fuction of yours is making use of a static variable or two.

  • Problems with document merge?

    Hi,
    I have installed JDeveloper 9i rc2 and the following code (it runs correctly on JDeveloper 3.2.3)
    Document d = new XMLDocument();
    d.appendChild(d.createElement("d"));
    Document d2 = new XMLDocument();
    d2.appendChild(d2.createElement("d2"));
    DocumentFragment rootNode = new XMLDocumentFragment();
    Element e = d2.getDocumentElement();
    d2.removeChild(e);
    --> rootNode.appendChild(e); /* It is here that the Exception is throwned */
    d.getDocumentElement().appendChild(rootNode.cloneNode(true));
    throws the following exception:
    oracle.xml.parser.v2.XMLDOMException: Node doesn't belong to the current document.
    Any clue why this happen?
    Thanks

    @see org.w3c.dom.Document.importNode

  • XML document merging

    Hi,
    I am using xerces latest version. I have two xml documents. I want to insert one xml in the another-one under some element(this i will get using xpath). How should I do this. please help me...
    -Regards

    Just read both the XML Document and put it in StringBuffer and then just parse it and append it.
    Raheel

  • Why doesn't mail merge in Pages reflect changes made to the numbers source document?

    When using mail merge in a Pages envelope document, changes made to its Numbers address source document are not reflected.  I have to create a whole new Pages envelope document and choose the Numbers address source document merge fields all over again.
    I never had any trouble doing this with Word and Exell!  
    What am I doing wrong?

    Denney,
    Mail Merge from Numbers works just as you are trying to use it.
    You create a Numbers document with the proper layout for merging.
    Enter the data in teh numbers document and Save it.
    You create a Pages Document to merge into and create the links to the Numbers document.
    You Edit > Mail Merge in Pages.
    To merge again from the Numbers document, make the necessary edits, Save the Numbers document and do the mail merge again in the Pages document that you created for that purpose. The only problem that normally arises is that we forget to Save the Numbers document after editing.
    Jerry

  • How do I do an email merge with an Excel database?

    I have performed mail/document merges with Excel databases and Word documents.
    How do I do the same for a mass Emailing using Excel?

    hi clarencenathan02, i'm not sure how this question relates to firefox in particular, so we may not be able to help you with that issue...

  • Is it possible to merge 10 BI reports using one key?

    BI reports are based on Opportunity Id, and each report contains 5 different Ids, hence 1 single report will be splitted in 5 different reports based on Opty Id it has. Now for the same Opty Ids it does have different reports as well, so for 1 Opty Id if there will be 10 different reports, then all those reports should be merged in a single PDF.
    In the "PDF Document Merger" section, no such functionality is mentioned to split the report based on a Key and then merges them. The requirement is to merge the reports in a single PDF File only, based on the Opty Id. As Customer has explained , they have 5 different reports, and 2 Opty Ids. So their final expected outcome is 2 reports by Opty Id, whereas each report will contain 5 different reports one below the other in a PDF file and print them.
    Please advice how to proceed.

    i would set up a report, or more if you have more levels of reporting.
    have it take the parameters you are splitting and then merging on.
    from jdeveloper, write a webservice app that will:
    a create a recordset of the parameters you want to pass to the reports.
    loop through the recordset and run each report.
    put the output file names into an array (or an inputsteam array).
    feed that array into pdfDocMerger.
    you can optionally renumber and password protect as well.
    then you create a script that runs the java program

  • Merge Fields from the server

    Hello, I made a Pages document and I need to merge fields using the shared address book on the server.
    If I drag the contact from "On My Mac" it works 100% , but when I try to drag a contact which is on the shared address book on the server it doesn't work.
    Any idea?
    Many thanks.

    hmmm ... not possible to copy and paste the address book locally.
    it is a business application so everybody can use that Pages document merging the shared address book
    any other idea?
    thanks.

  • Data merge to pdf - unusual result

    No matter what I do, I can't get InDesign to merge the content of my piece AND the data correctly.
    My project is simple.  I'm making a postcard that is exactly half the size of a sheet of letter paper.  There's a .25" margin.
    I created the text box that is exactly the correct size that shows where the address fields should be...
    When I do a document merge, the resulting .indd file is correct.  However, when I attempt the same data merge by selecting "export to pdf", the resulting file is way way off.
    See attached files.  The pdf doesn't even have two address fields, let alone a mirror of the content.

    Always use the camera icon to attach an image. This is something that needs to be fixed. I was attaching files via the attach link and FAIK, they never load. Stay queued forever.
    When you merge the data you should have a new ID doc. So if your original doc was mydoc.indd, the merged doc should be something like mydoc-1.indd. Export this to PDF. Should work.

  • How To Run a Parameterized Report Stored in Crystal Enterprise on demand

    I have been integrating into Crystal Enterprise 10 for  many years now with no problem.  We use .net to schedule and run reports as well some administration tasks.  Users can view reports through our asp.net web application using the crystal viewers.
    However, I now have a task that requires us to run a report that is stored in CE on demand.  This can NOT be done through the viewer because it will not have direct user interaction.  The crystal report has to be bundled with other documents and then displayed to the user in a single PDF.  I have everything working right now if the report has already been scheduled and ran through CE.
    What I can't figure out to do is how to actually run the report in CE on demand and immediately get the results back.  I can't schedule it (even for immediate running) because I can't have it backed up in the job server queue.  If the report was local on the machine that Integerate with CE, I think it is as simple as loading document, setting parameters, and calling refresh.  However, I need this to happen in CE with the RAS or PageServer server.  In other words, the execution of the report needs to occur on server and I need the end results.
    I have scoured the Net looking for an example but everything either talks about scheduling through Job server or on demand through the viewer.
    Hopefully someone can help.

    Thanks for the answer Elaine, but I am still not quite there.
    We already had interactive on-demand report viewing working through our web app.
    The problem is that I need non-interactive on-deman report running.  Let me explain the process a little more to help paint the picture of the process we have.
    1.  While working in our application, the user selects an "information dump" on the selected the employee.  This dump is information from a number of different places and document types.
    2.  The application then goes to each of these different information areas and converts the information to PDF format.
    3.  Application stitches all the individual PDF files into a single PDF which is what is returned to the user via the web application.  The delivery mechanism cannot change due to requirement limitations.
    Currently, the information is coming from multiple MS Word mailmerge documents merged "on-the-fly" with data for the employee and a stored HTML worksheet that is also converted to PDF.
    We now have to add a PDF version of 2 reports that are ran when the user requests the information dump. 
    I already have the code to connect to CE and get a reference to the RASReportFactory.  We do this today using the interactive viewer.  However, we use the viewer to display reports that have already been scheduled and ran.  This means we simply make a call to RASReportFactory.OpenReportSource to get the source for the viewer.
    We now can't have a viewer in this process.  I found the call to the method OpenDocument on RASReportFactory to get a handle to a ReportClientDocument.
    I know how to properly set the values for the report arguments as well as the database information.
    What I don't see is a method to tell it to run the report.  I see Save and SaveAs but this simply saves the document by to CE or to a local file with the changes I made to parms and db info. 
    What do I call to tell it to execute the report so I can turn around and export it to PDF?  Thats the million dollar question.
    Edited by: Stephen Barrett on Aug 20, 2008 12:11 AM

Maybe you are looking for

  • Problem in using XA datasouce

    Hi, I am trying to invoke a simple EJB which executes simple SQL through XA datasouce in OC4J 10.1.3.4, the DB is XE. But when I executed the sql, I got the exception: 09/05/20 03:13:54 java.sql.SQLException: javax.resource.ResourceException: SystemE

  • The most confusing broadband problem I've ever com...

    Well, This all started about 3-4 days ago now. I was online one night and suddenly, everything Disconnected. However, not entirely. The network shows that I am online with Internet access (Hence how I'm here right now posting this) But this is where

  • Interfacing Labview with .EXE file

    I need to create a GUI in labview that can interface and run dos commands (codes) from .EXE file.how can I achieve this. Please advice.

  • How Do I Download Photos to my Video iPod

    I need help on how to load photos onto my iPod.. i no how to do the musci but not the photos Thanks

  • Safari not loading  pages completely or at all

    Safari  7.0,6  has stopped loading some pages.  It  partially loads a page  and then hangs up (spinning beach-ball). Other pages don't load at all. This is a recent occurrence.   It even hung up going to Apple.com.   I am running Mavericks and accord