Merge and merge using Miramo + FrameMaker?

How to mail merge using framemaker and miramo edition personal?

My understanding of miramo.

Miramo, 'push' approach is used to connect the database and generate the report database, and generate a Frame model maker to report.

Miramo-> application data-> generate report-> generate the framemaker template-> and publish it.

Please correct me if my interpretation is wrong.

question 1: has PE Miramo have tool manufacturer integrated framework?

2nd question: how to connect the database of miramo and generate the report and model of framemaker?

question 3: if I have the model of machine frame with me, how can I publish it online if the user clicks on a link?

where can I find out if I need a more concrete example on miramo?

waiting for update of specialists.

This would be a better answer in the forums user Miramo http://www.miramox.com/forum/index

However for the benefit of third parties, the General procedure would be as follows:

1 using the FM, create a model with the formatting, layout and variables you need, it can include the boiler plate, but it is not. Requires analysis of your hand to determine what content you should include and how it is structured. Just do it once.

2. from your database, output the required content (sorted?) with tags (either in the convention of Miramo macro or XML), by example <|Name>such and such.

3 create actions mmpp pre processor of miramo to do what is necessary on the FM band. For the label name in this case, you would probably put the contents in a variable in your document of mat FM. You must also specify an import of reusable content. The paratags and character tags are defined in your model of the stage 1 file.

4. use a command file for:

(a) application to run the mmpp with your release of database marked to create a markup of Miramo file

(b) run the file mmpp creates through miramo specifying your model file and the output type (FM, PDF, etc.) you need

An precision, as you seem to have a misunderstanding about how behaves the Miramo. Miramo does not connect to the database, rather that it accepts as input the output generated by the database, reporting mechanisms. If you must have a direct link, then use FrameScript or Patternstream.

You can control the whole process of the database to generate the report, then using system calls for the mmpp and miramo process to create the desired end products. Alternatively you can create a standard interface by using any tool to your comfortable with to query the database and produce the report, then feed the contents of the report to the mmpp and miramo apps; or you can do it manually in several steps. It is up to you. Miramo let's you create as a merger and mailing applications. It is not a prior, specific, custom tool to merge right out of the mail box.

Read the user guides of Miramo & reference for more information about annotations and the treatment of the labeled content.

Tags: Adobe FrameMaker

Similar Questions

  • After migration, iPhoto again takes massive space on the hard drive? My system is showing iphoto and photos with more than 100 GB of space each. I once picture is merged uses always massive GB of space? Thank you.

    After migration, iPhoto again takes massive space on the hard drive? My system is showing iphoto and photos with more than 100 GB of space each. I once picture is merged uses always massive GB of space? Thank you.

    # Multimedia files are hardlinked.

    (141516)

  • Problems with the skin appear and publish options on FrameMaker 12

    Hello

    Customize the output using web FrameMaker is problematic.

    1. This is the first number - FrameMaker online help says the following:

    «You can also import WebHelp or compressed WebHelp skins defined in the files .skn or .zkn, respectively.» "To import a skin, click on import and select the .skn or .zkn file in the file system."   (see Adobe FrameMaker 12 * customization of specific output settings)

    However, when you import a skin (publication settings > custom > outings > navigation > selection of the skin > import), the import option allows only a type.skn file and not the tablet *.zkn.

    2. second question - the custom skin is not correctly unhooked in the Webhelp output.

    To be more precise, the required graphic elements were not copied on skin custom. The only way round, it comes to manually copy on the graph of the skin of the files in the output folder, and then refresh the help output. Graphics appear, but unfortunately still the skin does not display 100% correctly.

    3. third question. To create the custom skin, I had to create a new RoboHelp project, and then create a new skin among the galleries of available skin. Preview and generate the RoboHelp project displays correctly the skin. Unfortunately, when using FrameMaker, the skin does not display correctly.

    4th issue - inaccurate information in help online about the ISF import options.

    Online help FM says the following:

    Important: When you import a file from the ISF, RoboHelp parameters included in the file replace the corresponding settings of FrameMaker m files.

    To import a file of the ISF:

    1. In the dialog box publish, click the settings button and choose import file ISF.
    2. In the select an ISF file dialog box, select the settings file.

    Where is this option? There is no option to import ISF on my version of FrameMaker? !!!

    Thank you

    Thank you Jeff,.

    How can I download and install patches 12 FrameMaker?

    Warren

  • to copy the FrameMaker book using the FrameMaker API

    How to copy FrameMaker book to a different folder using the FrameMaker API path?

    ASHA,

    I would use F_ApiSave().  Save the book to the new location, and then save each file in the book. When saving a file, update the corresponding component of the book with the new file name (FP_Name).

    Russ

  • To make the first page of the file as a hyperlink using the framemaker API

    How can I make the first page of the file as a hyperlink using the framemaker API?

    This should make the entire page as clickable to open the link on the pdf creation.

    Thank you

    ASHA Rayakar

    Hi Asha,

    If you have managed to make a hypertext link at all, you are on the right track. From your description, it appears you are trying to use an existing text frame to place your marker of hypertext, a block of text that already contains text. If you put a hypertext marker in a paragraph with text, in fact, the only area that is clickable will be this paragraph. There is nothing you can do about it... This is the main behavior of FrameMaker.

    If you put a hypertext marker in a block of text that contains zero text (not even a single space), by default FrameMaker making this whole image map area. So if you try to make a whole page clickable, you will draw a new block of text that covers the entire page and insert the marker of hypertext, without text. You can experiment with this manually in the GUI.

    In your code, you must use the credentials of the members tr.beg.objId and tr.end.objid FO_Pgf. Looks like you might be using variable ID which is incorrect. If you do not have an ID of the variable, you can find the location/range of corresponding text including the FP_TextRange property. This will return the good ID FO_Pgf you need.

    If you are looking for the text block that contains a variable, you can use something like:

    F_TextRangeT tr;

    F_ObjHandleT textFrameId;

    TR = F_ApiGetTextRange (docId, varId, FP_TextRange);

    textFrameId = F_ApiGetId (docId, tr.beg.objId, FP_InTextFrame);

    This help at all?

    Russ

  • to replace '-' with ' / ' in a string using the FrameMaker API

    How to replace "\folder1\folder2\folder3" by "Folder1/Folder2/folder3" using the framemaker API?

    Hi Asha,

    It should work as well. Note the following, however:

    -your version will be case-sensitive, always which is OK for what you wanted

    -Maybe you left a code, but what you have shown is missing some important steps of allocation/deallocation for use with F_StrCat(). You need to allocate more space before the concatenation of strings and to release all pointers unused when or before you use them again. It might work for now, but I can assure you that inadequate allocation routines are a sure path to memory leaks and crashes in the future.

    Russ

  • Old lock to activate ipad asking for Apple ID and password used to configure icloud, which is forgotten. Help?

    My older ipad bouchoirs activation requires Apple ID and password used to configure icloud. I think I know the ID because she tips ***@outlook.com, but not the old password. Help?

    Try https://iforgot.apple.com

    or

    Contact Apple for the Apple ID account security support

    https://support.Apple.com/en-us/HT204169

  • Inject an apple ID and PW using the Configurator 2?

    Hi all

    Wondering if a id apple & PW can be added to a profile and deployment using the Configurator 2. Sorry if this has been covered, am new to this and learning and discovery I.

    see you soon,

    Kristian.

    Hello, Kristian,.

    AC2 negates the need to have a configuration of account iTunes\AppleID on each device, can I ask why you wanted to do this, there may be a better way? ipads how are you trying to install? ipad users can add their own iTunes account to download other additional applications then deployed via the configurator.

    Kind regards

    Rick

  • Got a 27 "monitor from Apple, with thunderbolt (error). My MacPro can't love at first sight. Apple won't bring back the monitor. Will using a USB 3 map and then using a hard drive with USB 3 and Thunderbolt works?

    Got a 27 "monitor from Apple, with thunderbolt (error). My MacPro can't love at first sight. Apple won't bring back the monitor. Will using a USB 3 map and then using a hard drive with USB 3 and Thunderbolt works?

    N ° you need a computer logic board which has built in Thunderbolt.

  • I can record is more than all of the new bookmarks after update to Firefox 40.0.2. I have over 1000 bookmarks and also use xMarks.

    I can record is more than all of the new bookmarks after update to Firefox 40.0.2.
    I have over 1000 bookmarks and also use xMarks.
    I tried to remove 5 bookmarks and save a new bookmark, but it does not work.
    When I click on the bookmark star, stars in the bookmarks folder jumps, but does not record, it does not offer the possibility of filing in the subfolder right it me and the star is not awarded (there should be one filled with stars when the Web site is updated bookmark)

    Thank you for your help. I tried the maintenance of places without success. I have disabled xMarks, but it made no difference, I couldn't save all new bookmarks. I went on the site help above and deleted the "places.sqlite" file and recreates a new file, but it didn't work. I uninstalled Firefox full using IOBit Uninstaller and reinstalled, but I found this program does not delete the profile folder (used to have a checked during uninstall of Firefox, but it seems to have disappeared in the latest versions). The problem persisted.

    Finally, I took a screenshot of all my addons. Then, I uninstalled Firefox again, then delete the entire folder profiles (located very usefully described in the second link above https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file )
    I reinstalled Firefox, reinstalled xMarks and connected and transferred all my favorites, I reinstalled all my previous addons and ALTO - it now everything works perfectly!

    Thank you for your help

  • When Firefox restarts the pages that they do not charge just display story, I then have to refresh to get new data as Explorer always charging and Firefox used to

    This should be an easy solution, because all the other browsers and Firefox used to do this. Firefox is restarted the pages do not charge they just historical display. I have to hit the button reload current page to get new data. This has been driving me crazy for a few weeks. I thought I had fixed a couple of times but only a few pages loaded and now it's the whole story again.

    Joe

    Oh, you use the Session Manager. What happens if you check the box in the Session Manager options, to the title of the backup & restore, "Reload All restored Windows"?

  • Cannot use the mouse to copy and paste using firefox21

    Hello
    When I use my browser firefox21 and use the mouse to select text
    I would like to copy then right click on the mouse and select copy
    Then, the highlight on the text disappears and won't let me copy and paste using the mouse

    I tried to reset firefox is default - and still have the problem
    I don't have any addons installed - I did a scan for malware using malwarebytes and erase all the shows

    I also did a clean reinstall of firefox and still have the issue of copy and paste

    I tried another browser chrome and has not had the problem with the mouse

    Is this a problem with the browser firefox 21

    Thanks - Steve

    This happens on all sites, or only on certain sites?

    Some sites may have "copy" scripts that change what happens when you right-click. To prevent sites from pre-empting the normal context menu of Firefox, try the third "Advanced JavaScript" setting described in this article: JavaScript and their preferences for interactive web pages settings (uncheck the third).

    Does make a difference?

    (Incidentally, I noticed on the threads in Google groups if you select widely, the selection is cleared when you do a right click, but if you select a little less, it is not clear.) I have not studied the model in detail).

  • Why my computer loses its cursor and/or loses its and must use the mouse to go back?

    I will be typing along and all of a sudden, nothing shows up on the screen and must use the mouse to get back.

    Also will be done solitare or another game and lose her and the mouse to move the things. Is this a virus?

    I updated my windows and nothing showed as a problem here.

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • I a s 6 more and when using the phone, if my face touches the screen it clicks on the logout button and the phone hangs up the call. Is it possible to prevent this without holding the phone away from my face when calling?

    I a s 6 more and when using the phone, if my face touches the screen it clicks on the logout button and the phone hangs up the call. Is it possible to prevent this without holding the phone away from my face when calling?

    iPhones have a proximity sensor which is supposed to automatically turn off the screen when you hold it in your face. If this is not the case you can take the phone and have it checked.

  • Can I upgrade OS 10.8.5 and always use Adobe Creative Suite 5?

    Can I upgrade OS 10.8.5 and always use Adobe Creative Suite 5? Also many design fonts Adobe I used for years.

    Abobe CS5 works very well for me in El Capitan. All fonts work ok it stable and fast.

    I hope this helps.

    See you soon

    Pete

Maybe you are looking for