Multiple print for pdf form retains the value from previous!

Hello All,
We have developed Adobe Print Forms for our business requirements.
When we try to print these forms from the direct transaction, it prints fine. But when we try to select multiple forms to be printed with one transaction, the pdf form generated has data from all the selection!
Eg: Form printed properly for Delivery Note through transaction VL02N.
The same form when we try to print for multiple deliveries from transaction VL71, i retains the data and prints one huge form having all delivery data!!
Please help us out in this issue and let us know what is tha we are missing in this process!
Thanks a lot for your time and help.
Gaurav

Hi ,
i think that the problems comes form the data you give to the form, do you make a refresh of internal table before populated them ...
regards

Similar Messages

  • Get all the values from a multiple select in a multipart form

    Hi there!
    I am using a form with enctype="multipart/form-data" in order to upload files from the form.
    I have read this page: http://commons.apache.org/fileupload/using.html and everything works well for my form.
    The only problem is that I can't get all the values from a "multiple select" html object. I get only one value.
    Using servlets I have used this method:
    public java.lang.String[] getParameterValues(java.lang.String name) But now I have enctype="multipart/form-data" in my form and I can't use this way...
    Is there a way to get all the values of a multi-valued parameter?
    Thanks a lot!
    Stefano

    Hi
    I have got solution for this problem so, I am listing here logic
    assume tag name of html
    <select name="moption" multiple="multiple">
    iterate it in as
    String moption="";
    boolean cnt=true;
    while(itr.hasNext())
    FileItem fi=(FileItem)itr.next();
    if(fi.isFormField())
    if(fi.getFieldName().equals("moption"))
    if(cnt==true)
    moption=fi.getString();
    cnt=false;
    else
    moption=moption+","+fi.getString();
    If wants more help then mail me your problem
    at [email protected]
    Thanks!
    Anand Shankar
    Edited by: AnandShankar on 6 Nov, 2009 12:54 PM

  • When I print to PDF using Acrobat 11 Pro from any application the acrobat Reader does not launch automatically. Associations are correct. Thx for your help,  Bruce

    When I print to PDF using Acrobat 11 Pro from any application the acrobat Reader does not launch automatically. Associations are correct. Happens from Chrome, IE, Word, Excel, Powerpoint. Previously had deskPDF installed but uninstalled correctly. Can't find a preference setting for the auto launch. Thx for your help,  Bruce

    A simple way is to flatten the form fields, which converts the field appearances to regular page contents. You can do this with JavaScript or PDF Optimizer (Advanced > PDF Optimizer > Discard Objects > Flatten form fields). A very nice script that adds a custom menu item can be found here: http://www.uvsar.com/projects/acrobat/flattener/

  • I can't print my PDF form after it is filled out.  Only the form prints not the text that I put in

    I can't print my PDF form after filling it out.  Only the form prints and not the text I put in.

    That's a limitation of Apple's AirPrint framework that Adobe Reader depends on.  We are considering an alternate solution that may resolve this issue though.
    Thanks for your feedback.
    -Gaurav

  • Need to get the values from "Signed" field from PDF form.

    Hi,
    This is Dinesh. I am PHP Developer. My issue is "I am not able to get the value of "signed" field from the PDF form when the form has been submitted.". I want to get the Digital Signature value of that field and i need to store it in the DB.
    Please help me here Or Please forward this issue to any of the PHP developer who solved this issue and let me know.
    Thanks & Regards
    Dinesh

    Hi Vikas,
    you can use this badi MRM_WT_SPLIT_UPDATE, the method will be WHTAX_SPLIT_UPDATE
    in this badi please see the importing and exporting parameters, you will get the  values of withholding tax code  as TE_RBWS in export parameters.
    Please search in google or SCN you will get how to use it.

  • After updating to Adobe Reader 11.0.07 on my iMac, I cannot print pdf forms off the web

    after updating my iMac to Adobe Reader 11.0.07, I cannot print pdf forms off the Web

    It would be great, if you could provide us with the following details:
    1. The OS you are working on.
    2. The version of MS Office installed on your machine.
    3. A screenshot of the error message along with the scenario in which the same is displayed.
    4. How exactly did you go about updating Reader 11.0.02 to 11.0.03. Was it via the updater mechanism or by downloading the patch from the Adobe site.
    Also, it would be great if you could let us know if there was any other Windows or Antivirus related updates applied on your machine in the same timeframe as the Reader update.

  • Export multiple responses in pdf form?

    Is it possible to export multiple responses into pdf form, not just excel? Thanks!

    Sorry we currently do not support this. You can vote for the feature here:
    http://forums.adobe.com/ideas/1378
    We use this to help prioritize our work.
    Thanks,
    Randy

  • Doubt : retaining the value between the calls

    hi,
    Which statement would you use to declare a variable, within a Function Module/Form-routine, so as it will retain the value between the calls?"
    Gaurav

    Dear Gaurav,
    To retain the same value outside a function module, you can define a variable with the same name as the exporting parameter in a function module. However in case of Subroutines you can pass the value by reference as any change in the formal parameters will be reflected in the actual parameters.
    Check the following links for further clarification:
    http://help.sap.com/saphelp_nw70/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db975c35c111d1829f0000e829fbfe/content.htm
    Regards,
    Rajesh K Soman
    <b>Please reward points if found helpful.</b>

  • Retain the values

    hi all,
    I am looping through a ResultSet to set properties of an Class(cl). Then I add each class to the vector(vt) by casting the cl into Object. But when I try to retrieve elements from the vector. I only get one element as though all the elements in the vector are occupied by only one element.
    Tell me how to retain the values(Objects) in the vector?
    Here I set the properties and load the vector
    aud is an Object
    vt_aud is the vector
    while(rs.next())
    aud.setFirstName(rs.getString(1));
    aud.setLastName(rs.getString(2));
    aud.setEmail(rs.getString(3));
    vt_aud.add((Object)aud);
    To retrive
    for(int i=0;i{
    aud = (audience)vt_aud.elementAt(i);
    firstname = aud.getFirstName();
    lastname = aud.getLastName();
    email = aud.getEmail();
    System.out.prinln(firstname);
    The problem is it prints only the last record of the resultSet.
    Thanks for help.

    Hi,
    Java only stores references to objects in collections such as Vector. If you want to store several different objects in the Vector, you need to make sure each one is a separate object, not just the same object re-used each time.
    Try this code:
    Vector vt_aud = new Vector();
    while(rs.next()){ 
    audience aud = new audience();
    aud.setFirstName(rs.getString(1));
    aud.setLastName(rs.getString(2));
    aud.setEmail(rs.getString(3));
    vt_aud.add(aud);}
    or, if you have control over the "audience" class, you can add a constructor and simplify the loop:
    Try this:
    Vector vt_aud = new Vector();
    while(rs.next()){
    vt_aud.add(new audience(rs.getString(1),rs.getString (2),rs.getString(3)));}
    Hope this might help you.
    Anil.
    Developer Technical Support,
    Sun Microsystems, India.
    http://www.sun.com/developers/support

  • Is there a way to delete one of several checkboxes from a pdf form without the leftover checkboxes automatically renumbering themselves?

    Is there a way to delete one of several checkboxes from a pdf form without the leftover checkboxes automatically renumbering themselves?
    I used LiveCycle Designer to make a pdf form with many checkboxes. When I deleted a few of the checkboxes the rest left on the form renumbered themselves. This made my JavaScript out of sync since the JavaScript checkbox numbers did NOT update automatically. I am hoping there is a preference option to not auto update. I just cannot find it,

    I believe you're using the same name for each checkbox, right?!
    If so, each checkbox has an index number which represents its position relative to the other copies in the XML tree and when you add, delete or reorder the copies the index will always be recreated because thats the way how XML works.
    There is no way to stop Designer from doing this, I'm afraid.
    To address individual objects through JavaScript you should use unique names.

  • Updating Tag Name using Adobe Professional for PDF form created with Tags in Adobe Livecycl Designer

    I have created a form using Adobe Livecycle Designer. These PDF forms have Tags on them when created and generted from Adobe livecycle designer.
    I am able to open the PDF form in the Adobe Profesional 9.0.
    I want to edit / Update the Tags on the PDF form using Adobe Professional 9.0. I am not seeing any option to view the Tags on the forms so that I can edit it while I have open the PDF in the Adobe Professional. The PDF document was created in Adobe Livecycle Designer 9.0
    Please let me know how can I edit the Tags on a PDF form using Adobe Professional for a Form that was created using Adobe livecycle and tags added.
    Thanks,
    Siva.

    Edit the tags in Adobe Livecycle Designer.

  • Cannot print a pdf file when the pdf file is opened in another window

    Running FF8.0 I cannot print a pdf file when the file is contained in a separate window opened by the appl (not just another tab). Options -> options -> applications all point to Use Adobe Applications in Firefox. I've had this problem in 7.0, 6.0, etc but I believe I was finally able to print these external browser/adobe windows somehow. Printing a pdf file shouldn't be that tough. When I run into this situation, file can be printed from the external window by IE.

    Check the document properties (Security) for this file in Adobe Reader; perhaps printing is not allowed?

  • How to add a photo to a pdf form via the iOS app

    How do I add a photo to a pdf form via the iOS app?  I need to fill out a form for work using field observations and photos.  I can easily fill out the text portions of the form but I'm unable to add the photos from my phone.  Is this possible?

    Does the form have a provision to insert images (e.g. a Browse button)?
    [topic moved to iOS subforum]

  • How do I convert a powerpoint document to a pdf and retain the notes?

    How do I convert a powerpoint document to a pdf and retain the notes?

    One possibility is to print the slides+notes, choosing "save as PDF" in the print dialog instead of sending it to a printer.

  • Export PDF converts filled PDF form without the data - Turns filled PDF form onto blank Word doc. Is there a solution to this or did Adobe just sell me a service that doesn't work?

    Export PDF converts filled PDF form without the data - Turns filled PDF form onto blank Word doc. Is there a solution to this or did Adobe just sell me a service that doesn't work?

    ExportPDF is not for forms. In general, converting forms to Word is a really, really bad idea which can even cause legal problems. Work with the form as a PDF. Acrobat (not Reader) can export form data as simple text for example.

Maybe you are looking for