Is it possible to mailmerge a form letter to recipients identified in a database (names, addresses, etc.)?

Is it possible to mailmerge a form letter so that the mailmerge process produces separate pdf files, one for each recipient identified in a database (names, addresses, etc.)?
Or is is  it possible to mailmerge a form letter so that the mailmerge process produces one big file that contains a copy of the form letter for each recipient identified in a database?

Hi marceepoo,
If you're using Word for Windows, you sure can. See Adobe Acrobat X Pro * Create PDFs from Word mail merges
Best,
Sara

Similar Messages

  • Form letter: different margin to 1. and 2. page?

    Is there any possibility to build a form letter with different layout of the margin of the first and the following pages of the letter?

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Ina ():
    Is there any possibility to build a form letter with different layout of the margin of the first and the following pages of the letter? <HR></BLOCKQUOTE>
    I think you can use the report package function "SRW.GET_PAGE_NUM(variable)" to get the page number and then control the layout as you wanted.

  • Is it possible to merge addresses into a formed letter?

    Does anyone know if it is possible to take a mailing list of names and merge them into a formed letter or use on envelopes?

    Yes, most of the existing templates do that already.
    If you want to set it up yourself:
    Menu > Insert > Merge Field
    The source data can come from a Numbers table or better from Contacts/Address Book.
    Look up Personalizing Documents with Address Book and Numbers Data page 246 in the Pages09_UserGuide.pdf downloadable from under the Help menu.
    Peter

  • Is it possible to display Oracle form as a region in OAF Page?

    Hi
    Is it possible to display Oracle form as a region in OAF page something like a master detail relationship such that Master information is displayed in OAF UI but detail information below is displayed in Oracle forms?Is there a tag that lets one do that specific for Form.
    One way could be do to embed applet in OAF page which would call and display oracle form but not sure if using javascript/applet in OAF would violate OAF coding standards or create some session management issues.
    Regards
    Preeti

    Thanks for your reply.I have seen an implementation that uses Adf and able to display form on same page as in inlinefraame in .jspx page using inlineFrame tag
    <af:inlineFrame inlineStyle="height:700px; width:1380px;"
    id="inlineFrm1"
    source="#{gofDrillback01.targetURL}"/>
    But I guess OAF doesnt have a similar tag to support forms.Thoughts?
    Regards
    Preeti

  • Form Letter Report - How To Format Date and Number Hidden Fields

    Hi
    Is it possible to format date and number fields in a form letter report. This case were Paper Design shows fields as $<hire_date>. The examples in reference book only print character values which do not require formatting. I cannot determine how to achieve this. Cannot select fields from Paper Design view as per other report styles where can apply formatting. Do I have to perform formatting in the query to return date as string in format I wish for? This is not case for other report styles.
    Thanks

    you could add a field, set the source of the field to hire_date (assuming hire_date is a column in the data model), and put a format mask of whatever format you want. then set visible to No.
    then instead of &<hire_date> you can instead type &<name of your new field>.

  • /bin/bash to write a form letter [solved]

    Ok, in principal, I need to have bash read in a file and make substitutions for variables I have defined in a skeleton file.  Kind of like a form letter.  Why?  I have torque installed on my machine and I need to have my repo-ck build script make a custom build.sh that each respective cluster job will call.
    I'm no student and this isn't homework.  Anyway, here is an oversimplified example
    letter.skl:
    Dear $name,
    The party starts at $time.
    Regards,
    $me
    So the bash script defines all three of those variables and needs to read in the letter.skl and pipe it into a new file that contains the "final" output.  How can this be accomplished?
    #!/bin/bash
    name="John"
    time="11 o'clock"
    me="graysky"
    Last edited by graysky (2011-06-18 22:38:33)

    Yeah... this is how I'm doing it now, but it's very clunky.  I need to generate within my build.functions two files:
    1) A build script unique to each arch and cpu package
    2) A queue file for the cluster that will call #1
    I have leveraged the echo method as I said, but its not elegant and very ugly.  What would be far better would be for me to have a skeleton script I can read in, substitute and write out if this is possible natively in bash.
    Example of my "ugly" code:
    # make cluster.pbs
    echo "#!/bin/bash" > $pkgarch-$arch.pbs
    echo "#PBS -l nodes=1,walltime=1:00:00" >> $pkgarch-$arch.pbs
    echo "#PBS -N $arch-$pkgarch" >> $pkgarch-$arch.pbs
    echo " " >> $pkgarch-$arch.pbs
    echo "[[ $arch = \"x86_64\" ]] && $workdir/build-$pkgarch-$arch.sh" >> $pkgarch-$arch.pbs
    echo "[[ $arch = \"i686\" ]] && sudo linux32 chroot /opt/arch32 /bin/bash -c $workdir/build-$pkgarch-$arch.sh ; sleep 1s" >> $pkgarch-$arch.pbs
    # make script it needs if building in chroot
    echo "#!/bin/bash" > $workdir/build-$pkgarch-$arch.sh
    echo ". /home/$me/.credentials" >> $workdir/build-$pkgarch-$arch.sh
    echo "cd $workdir" >> $workdir/build-$pkgarch-$arch.sh
    echo "whatarch=\$(uname -m)" >> $workdir/build-$pkgarch-$arch.sh
    echo "if [ \$whatarch = \"x86_64\" ]; then" >> $workdir/build-$pkgarch-$arch.sh
    echo " makepkg -g >> PKGBUILD && makepkg -sc" >> $workdir/build-$pkgarch-$arch.sh
    echo "else" >> $workdir/build-$pkgarch-$arch.sh
    echo "su -c \"makepkg -g >> PKGBUILD && makepkg -sc\" $me" >> $workdir/build-$pkgarch-$arch.sh
    echo "fi" >> $workdir/build-$pkgarch-$arch.sh
    echo " " >> $workdir/build-$pkgarch-$arch.sh
    echo "for i in PKGBUILD \"\$_config\"; do" >> $workdir/build-$pkgarch-$arch.sh
    echo "mv \$i $des_cluster/repo/$arch/files/\$i.$pkgarch" >> $workdir/build-$pkgarch-$arch.sh
    echo "done" >> $workdir/build-$pkgarch-$arch.sh
    echo " " >> $workdir/build-$pkgarch-$arch.sh
    echo "x=0" >> $workdir/build-$pkgarch-$arch.sh
    echo "for i in \$(ls *.xz); do" >> $workdir/build-$pkgarch-$arch.sh
    echo " array[\$x]=\$i" >> $workdir/build-$pkgarch-$arch.sh
    echo " x=\$(( \$x +1 ))" >> $workdir/build-$pkgarch-$arch.sh
    echo " mv \$i $des_cluster/repo/$arch" >> $workdir/build-$pkgarch-$arch.sh
    echo "done" >> $workdir/build-$pkgarch-$arch.sh
    echo " " >> $workdir/build-$pkgarch-$arch.sh
    echo "files=\$(echo \${array[@]}|sed s'/\ /,/')" >> $workdir/build-$pkgarch-$arch.sh
    echo "if [ \$whatarch = \"x86_64\" ]; then" >> $workdir/build-$pkgarch-$arch.sh
    echo " curl -u \$myusername:\$mypasswd -T $des_cluster/repo/$arch/{\$files} ftp://\$mysite/\$arch/ -s &" >> $workdir/build-$pkgarch-$arch.sh
    echo "else" >> $workdir/build-$pkgarch-$arch.sh
    echo " su -c \"curl -u \$myusername:\$mypasswd -T $des_cluster/repo/$arch/{\$files} ftp://\$mysite/\$arch/ -s & $me" >> $workdir/build-$pkgarch-$arch.sh
    echo "fi" >> $workdir/build-$pkgarch-$arch.sh
    chmod +x $workdir/build-$pkgarch-$arch.sh
    qsub $pkgarch-$arch.pbs > /dev/null

  • Is it possible to create a form with multiple form fields on a single line?

    Is it possible to create a form with multiple form fields on a single line?  I can't find anything in the documentation or a template that does this.
    I am trying to create a "documents received" checklist with a check box on the left margin, a date-received field to the right of the check box and and a description of the document (Formatted Text) on the far right.
    In the past I have entered the Fixed Text with a word processor, published it to a PDF file, then added the check box and date fields with the Acrobat Forms editor.  I would prefer to use FormsCentral if it is possible.

    We now support multiple fields on one line. This post provides a brief overview.
    Give it a try and send us your feedback.
    Sorry it took so long.
    Randy

  • How to get a second page in a form letter report after create it by Wizard

    How to get a second page in a form letter report after create it by Wizard
    i've built a report by wizard with a sql-Query
    the sql give me back for example 3 dataset
    and the report prints 3 pages
    dataset 1 - page 1
    dataset 2 - page 1
    dataset 3 - page 1
    thats ok,
    but now I need a second page per dataset ( with only a text )
    so that the report should print 2 pages per dataset
    dataset 1 - page 1 ,page 2
    dataset 2 - page 1 ,page 2
    dataset 3 - page 1 ,page 2
    It's not really clear for me, what to do, to create the second page
    any help ?

    .... found answer in other forum

  • Is it possible to print a form in APEX 2.1?

    Hi,
    Is it possible to print a form in APEX 2.1? I'm able to export a report in cvs, but not a form.
    Thanks.

    If you're just looking to export a single row via CSV, then yes, you can add that functionality to your Form page in any release of APEX.
    Have a look at a blog post I made quite some time ago:
    http://spendolini.blogspot.com/2006/04/custom-export-to-csv.html
    Using this, you could limit the query to only bring back the row that is displayed in the form.
    Thanks,
    - Scott -
    http://spendolini.blogspot.com
    http://www.sumneva.com

  • Is it possible to make a form in iWeb for people to fill in

    Is it possible to make a form in iWeb for people to fill in for people to subsribe

    There  are two possible form types that you can add to your website.  One is using a 3rd party form provider that, when filed in and sent, goes directly to you.  Expamples of them, JotForm and Wufoo can be seen here: Add Form
    Further down that page is the second type,  Form action forms, that use the visitors email application to send the response.  That may put off responders.  Take a look at both types.
    OT

  • Need to ommit the short form letter from the given string

    HI,
         I need to ommit the Short form letter from column data.
    EX :
    CREATE table #testdata
    (id int identity(1,1),cust_address varchar(max))
    insert into #testdata (cust_address)
    select 'first street 5N, North'
    union
    select 'second street W, west'
    union
    select 'roja street 5S, South'
    union
    select 'temple street E, East'
    union
    select 'first street, Northwest, NW'
    union
    select 'first street, Southwest, SW'
    select  * from #testdata
    actutal out put:
    id cust_address
    1 first street 5N, North
    2 first street, Northwest, NW
    3 first street, Southwest, SW
    4 roja street 5S, South
    5 second street W, west
    6 temple street E, East
    Need to ommit the Short form letter from this output,
    condition , 1) the short form letter should have space in front of the letter ex : first street (space)N, North
                   so the output should be "first street, North" like that for other words like "first street, Southwest, SW" should be "first street, Southwest"
                 2) the short form letter should not combine with any other letter ex :  first street 5N, North
                     here we dont need to do anything.
    Required Out put :
    id cust_address
    1 first street 5N, North
    2 first street, Northwest
    3 first street, Southwest
    4 roja street 5S, South
    5 second street, west
    6 temple street, East
    Nandha Kumar

     CREATE FUNCTION [dbo].[SplitString]
             @str VARCHAR(MAX)
        RETURNS @ret TABLE (token VARCHAR(MAX))
         AS
         BEGIN
        DECLARE @x XML 
        SET @x = '<t>' + REPLACE(@str, ',', '</t><t>') + '</t>'
        INSERT INTO @ret
            SELECT x.i.value('.', 'VARCHAR(MAX)') AS token
            FROM @x.nodes('//t') x(i)
        RETURN
      END
    with cte
    as
    select  *
    from #testdata
    CROSS APPLY (SELECT * FROM [dbo].[SplitString](cust_address)) AS der
    ) ,cte1
    as
    select *,
    case when UPPER(token)=token COLLATE Latin1_General_BIN
      then  '' else token end as d 
     from cte
     ) ,CTE2
     AS
     (SELECT *,case when RIGHT(UPPER(D),1)=RIGHT(D,1) COLLATE Latin1_General_BIN 
      then  replace(D,RIGHT(UPPER(D),1),'') else token end d1 FROM CTE1
     SELECT m1.id,
           ( SELECT m2.D1 + ','
               FROM cte2 m2
              WHERE m2.id = m1.id
              ORDER BY id
                FOR XML PATH('') ) AS token
      FROM cte2 m1
     GROUP BY m1.id 
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • FM or classes for word form letter ?

    hi there,
    can anybody tell me how i can use the 'form letter' function out of an abap ?
    some classes or fm's ?
    i want to open WORD for windows with specific fields for form letter processing.
    best regards, Martin

    Hi,
    check this sample prog in se38.........
    SAPRDEMODOCUMENTCONTAINER
    Cheers,
    jose.

  • Form Designer Form. Is it possible to delete a form after it is created?

    Hi
    Is it possible to delete a form once its created in the system?
    Regards Glenn

    GlennA wrote:
    Hi
    Is it possible to delete a form once its created in the system?
    Regards GlennIn case you are interested, following can be done at database:
    Say, if you want to delete UD_ABC form (Process Form/Object Form/Parent Form/Child Form)
    delete from FUG where SDK_KEY in (select SDK_KEY from SDK where SDK_NAME='UD_ABC');
    delete from OSI where TOS_KEY in (select TOS_KEY from TOS,SDK where TOS.SDK_KEY = SDK.SDK_KEY and SDK_NAME = 'UD_ABC');
    delete from UNM where TOS_KEY in (select TOS_KEY from TOS,SDK where TOS.SDK_KEY = SDK.SDK_KEY and SDK_NAME = 'UD_ABC');
    delete from MSG where TOS_KEY in (select TOS_KEY from TOS,SDK where TOS.SDK_KEY = SDK.SDK_KEY and SDK_NAME = 'UD_ABC');
    delete from MST where MIL_KEY in (Select MIL_KEY from MIL where TOS_KEY in (select TOS_KEY from TOS,SDK where TOS.SDK_KEY = SDK.SDK_KEY and SDK_NAME = 'UD_ABC'));
    delete from RML where MIL_KEY in (Select MIL_KEY from MIL where TOS_KEY in (select TOS_KEY from TOS,SDK where TOS.SDK_KEY = SDK.SDK_KEY and SDK_NAME = 'UD_ABC'));
    delete from RSC where MIL_KEY in (Select MIL_KEY from MIL where TOS_KEY in (select TOS_KEY from TOS,SDK where TOS.SDK_KEY = SDK.SDK_KEY and SDK_NAME = 'UD_ABC'));
    delete from MIL where TOS_KEY in (select TOS_KEY from TOS,SDK where TOS.SDK_KEY = SDK.SDK_KEY and SDK_NAME = 'UD_ABC');
    delete from ODF where TOS_KEY in (select TOS_KEY from TOS,SDK where TOS.SDK_KEY = SDK.SDK_KEY and SDK_NAME = 'UD_ABC');
    delete from OIU where ORC_KEY in (Select ORC_KEY from ORC where TOS_KEY in (select TOS_KEY from TOS,SDK where TOS.SDK_KEY = SDK.SDK_KEY and SDK_NAME = 'UD_ABC'));
    delete from ORC where TOS_KEY in (select TOS_KEY from TOS,SDK where TOS.SDK_KEY = SDK.SDK_KEY and SDK_NAME = 'UD_ABC');
    delete from TOS where SDK_KEY in (select SDK_KEY from SDK where SDK_NAME='UD_ABC');
    delete from SDC where SDK_KEY in (select SDK_KEY from SDK where SDK_NAME='UD_ABC');
    delete from SDL where SDK_KEY in (select SDK_KEY from SDK where SDK_NAME='UD_ABC');
    delete from RAV where SRE_KEY in (select SRE_KEY from SRE,SDK where SRE.SDK_KEY=SDK.SDK_KEY and SDK_NAME='UD_ABC');
    delete from SRE where SDK_KEY in (select SDK_KEY from SDK where SDK_NAME='UD_ABC');
    delete from SDK where SDK_KEY in (select SDK_KEY from SDK where SDK_NAME='UD_ABC');
    delete from WIN where WIN_KEY in (select WIN_KEY from WIN where WIN_WINDOW_NAME = 'tcfrm' || 'UD_ABC');
    delete from SEL where DOB_KEY in (select DOB_KEY from DOB where DOB_NAME LIKE '%UD_ABC');
    delete from DOB where DOB_NAME LIKE '%UD_ABC';
    drop table UD_ABC;
    Disclaimer: Oracle does not recommend deleting forms.

  • What is the easiest way to get the data from the mailmerge to form Pages files that can be saved separately?

    Using Iwork 09 I have spent several hours setting up a mail merge from a spread sheet in Numbers to create receipts for my customers from a Pages template.
    After the merge I am left with one long Pages document that will not save as separate files; one per customer, it will only save the whole document of several receipts.
    What is the easiest way to get the data from the mailmerge to form Pages files that can be saved separately?
    Many thanks in advance.
    Richard

    Mr. Clark,
    You will probably be more pleased with the iWork apps when you begin to learn your way around. Until you learn such basic things as how to print only one page of a document, you will probably continue to be disappointed.
    Does your Print dialog look like this:
    Or like this:
    If it looks like the first one, then you will want to click this expander control:
    Regards,
    Jerry

  • Is it possible to recover autofill forms that has been removed

    I accidentally clicked remove all (instead of remove 1) in the autofill preference.
    Now I have many sites that I can't remember the passwords.
    Is it possible to recover web form passwords that has been removed from autofill?
    Also I couldn't find them in the keychain. Please Help

    Also I couldn't find them in the keychain.
    Open Keychain Access  /Applications/Utilities
    Select Passwords on the left.
    Use the search field top right corner of the Keychain Access window to find web site addresses
    If you want Safari to "remember" a new password for a site, first make sure User names and passwords is selected in Safari / Preferences - Autofill.
    Navigate to a site. Enter the user name and password. When prompted, click Yes. That will create a new keychain for that site for you.

Maybe you are looking for

  • What are the systems variables in oracle

    Hai All In oracle what is called system variable and types of system variables Good answer hepls me Thanks & Regards Srikkanth.M

  • XML to URL Encoded (XSLT?)

    I have some data in a Document object and need to convert it to URL encoded format so, for example this: <share> <code>GSK</code> <price>13.34</price> </share> becomes something like... &code=GSK&price=13.34& ... I've been looking into doing this wit

  • Can't open a new connection

    it is not possible to open a new connection: contribute answers: is used by the connection "http:xx", give another internet-address. what do i have to do to open again. i reinstalled contirbute 4, doesnt work. i tried contribute 6.5, doesnt work. tha

  • Security Exception when loading Image in the background?

    I've written a javafx app running in the browser. It loads a bunch of images in the background. It worked fine prior JRE 7 u11. However it is broken since JRE 7 u13. Images are not loaded correctly, failing with a SecurityException: java.security.Acc

  • E1500 wireless router having problems streaming video and netflix

    We got a new E1500 router 2 nights ago. The internet works fine, but it has big trouble streaming videos and Netflix, those types of things. I have changed my MTU setting and all the settings suggested in the "Guide Me" section. My drivers are up to