Dynamic generation of Adobe Interactive Form

Hi all. hope you can help.
My required scenario :
We have a 4.6c SAP system that is generating a delivery note with some formatting on the note.
The idea is to use the ADS to create a PDF  based on a template we create (That can be modified later as the business requires - new logo ..etc) together with data from the 4.6c system.
So the 4.6c will send a flat file (ftp) to CE7.1 server where the ADS is running. A pure java application will send the data to the ADS and get back the populated PDF.   
Once the java app has this interactive PDF document it will then be sent to a distributor who will open the PDF and enter serial numbers into the form after which he will print the form.
This process should be automated ie (No WebDynpro )
There is no connectivity between the 4.6c system and the ADS as 4.6c does not support ADS communication.
There is no connectivity between the ADS and the receiver of the PDF other than the e-mail that will be sent.
So my questions
1) Have i missed the point of having ADS installed. As far as i have read - the advantage of having ADS is the possibility
          a) To design using drag and drop
          b) Enable the end receiver of the PDF  to be able to post the data back.
          c) Integration with WDP (not required)
          d) Integration with later versions of SAP.
I have not found any documents supporting a 3rd party app (Pure Java) send some data structure to ADS and getting back a PDF.(This is what i need)
2) Is this scenario a typical one.
3) Should i rather generate the PDF directly using something like iText and forget about ADS.
Thanks in advance

no solution

Similar Messages

  • Filling dynamic drop down in adobe interactive form( webdynpro ABAP)

    HI all,
    Im new in Webdynpro ABAP, my requirement is to fill drop down list in adobe interactive form. i created adobe form and its working fine.
    I Created context like ROOT(cardinality 1:1)->DATANODE cardinality 0:n. This context is for drop down and in wddoinit i did  like this.
      IN WDDOINIT ,
    DATA lo_nd_root TYPE REF TO if_wd_context_node.
      DATA lo_nd_datanode TYPE REF TO if_wd_context_node.
      DATA lo_el_datanode TYPE REF TO if_wd_context_element.
      DATA ls_datanode TYPE wd_this->elements_datanode.
    navigate from <CONTEXT> to <ROOT> via lead selection
      lo_nd_root = wd_context->get_child_node( name = wd_this->wdctx_root ).
    navigate from <ROOT> to <DATANODE> via lead selection
      lo_nd_datanode = lo_nd_root->get_child_node( name = wd_this->wdctx_datanode ).
    get element via lead selection
      lo_el_datanode = lo_nd_datanode->get_element(  ).
    ls_datanode[] = lt_dna_value[].
    CALL METHOD lo_nd_datanode->bind_table
      EXPORTING
        new_items            =  ls_datanode
        set_initial_elements = ABAP_TRUE.
       index                =
    while executing  i'm getting this error ": WebDynpro Exception: ADS: com.adobe.ProcessingException: No output was generated while rendering: Stream for: PDFOut.(200,101). " . can u please tell me how to bind value for drop down.
    I created sample table in same form and i binded same value to table, that time its executing fine.
    can u please tell me solution for this Scenario.
    Thanks
    Hemachandran.
    Edited by: hemachandran R on Sep 12, 2008 2:27 PM

    hi,
    My requirement, is to use dynamic drop down in dynamic table. I am using webdynpro abap.
    i populated the value in drop down.
    Its working fine but the problem is how to fill the default value in drop down. because i want to bind the default value which im getting specify value from the table.because each row
    im getting different values, like first row
    CAR
    , that CAR want to fill as a default value in drop down  and second row  as
    BIKE
    that BIKE  want to fill as default value in drop down  ( example drop down contain   car , bike , cycle).
    In adobe form i binded like this
      $record.DATANODE.DATA[*].DNA_RATING
    i dont know whether this one is correct or wrong  .
    im getting default value as empty.
    please give me some solution how to do this.its very urgent
    thanks
    hemachandran.

  • Drop down in dynamic table in the Adobe Interactive Form (Web dynpro ABAP)

    Hi All,
    I have scenario use drop down in dynamic table in the adobe interactive form (Using the button the dynamic table row will be increasing and decreasing).
    Assume I Add five rows dynamically in the dynamic table. The Last column contains Drop down.
    I have button in the adobe form.
    Button Name = u201CSAVEu201D
    Button type    = SAP Submit button (Native type u2013 I am Using ZCI).
    While clicking save button, I need to store the dynamic table datau2019s to back end system. I can able to store the data to back end system. After form data getting saved those particular values need to display in the adobe form. 
    Here I am facing a problem.
    I cannot able to view as a default value in the drop down, which I have selected some values after save operation I am not getting any values in the drop down as a default.
    Example:
    The dynamic table contains 5 rows (Each and every row Drop down contains one to ten values).
    1)     I have selected second value in the Drop down (ROW1)
    2)     I have selected fourth value in the Drop down (ROW2)
    3)     I have selected fifth value in the Drop down (ROW3)
    4)     I have selected seventh value in the Drop down (ROW4)
    5)     I have selected third value in the Drop down (ROW5)
    I press the save button that particular Drop down value gets saved in back end system and that particular values want display in the Drop down as a default value.
    How to resolve this problem.
    Regards,
    Boopathi M

    Hi,
    Solve the problem .
    I have created the New node for dropdown. also i have one node already for table.
    The new node i bind to dropdown, the table same for table.
    Its working fine
    Boopathi M

  • ABAP WD application - Dynamic filling adobe interactive form

    Hi,
    I am developing a WD Application which has  Adobe interactive form in which when user enters an input field 1 it should automatically populate respective values for input field 2 in the same form.I have this relation maintained in ztable.
    How do we handle this?
    Rgds
    Vara

    Mahesh,
    Sorry for the confusion.
    Here is my req..
    My WD application will have a parameter-Inputfield1 for entering job number
    My interactive form will have
    - Inputfield1 as header.
    - A dynamic table with inputfield2 & inputfield3
    Inputfields2 as item values - should be filled automatically after user input inputfield1 ,
    inputfields3 will be manual entry from user
    Finally i should take all these 3 values and submit it to SAP.I can have a SUBMIT button for this at the end of the form.
    rgds
    vara

  • How to create a dynamic fields in the Adobe Interactive form ?....urgent...

    Hi Experts,
    I'm working on Adobe Interactive form developed in WDP ABAP.( I have successfully config the ADS in my server.)
    Action:
    1. Create two view -
    first_view and second_view in the WDP ABAP..
    2. In the first_view, there are a input field( named "elements_number") and  a button(named "create_button") .
    3. In the second_view, there is Adobe Interactive form ( named "adobe_form" ).
    4. Run the WDP ABAP: first_view is opened. Type a number ex."3" in the "elements_number", click the "create_button".
    5. The second_view is opened.
    6. The "adobe_form" is occured.
    7. There are 3 text_fields in the "adobe_form".
    Steps (1) ~ (6), I have completed, but I don't know how to implement the step (7).
    Please give me some hint on this. I try to use the CL_WD_ADOBE_SERVICE, but I didn't found any examples.  Do you give me some ways to implement the function? Thanks a lot.
    Thank you very much.
    Thanks,
    Tao

    Hi Philippe,
    Thank you very much in advance.
    Do you tell me how to hide elements in the "adobe_form" in the WDP ABAP? How can I get the elements attributes in the "adobe_form" from the method WDDOMODIFY of the second_view  in the WDP ABAP.
    Please give me some hints on this. Do you give me some ways to implement functions( hide elements and  get elements's attributes)? Thanks a lot.
    Thank you very much.
    Thanks,
    Tao

  • Adobe Interactive Forms via Mail and PI.

    Hi All,
    We are currently implementing an adobe interactive forms scenario (offline) at our customer.
    The initial scenario was the folllowing
    1. PDF is generated on the CRM system and downloaded towards the clients PC
    2. PDF is adjusted by enduser
    3. When all info is added, enduser presses the submit button in the pdf, this triggers the sending of an email, with an attachment containing the filled in data in xml format.
    4. PI reads the mail, takes the XML and processes the data.
    The scenario was quiet easy to enable.
    Now the customer wants the PDF to be mailed instead of or toghetger with the xml representing the data. Reason for this is that they want to pdf to be stored inside the initial transaction (service order) in SAP (archiving reasons).
    The PI system is just acting as a mail client. When the mail is read, the pdf needs to be converted into an xml, representing the data. I would like to use the adobe document service to convert the pdf.
    So the system that generates the pdf (=CRM) and the system that needs to convert it (PI) is different.
    Can the adobe document service by addressed from within a standard java or abap class.
    Any idea whether this can be done and how?
    Easier solution would be, attaching the pdf and the xml in the mail message. Is this possible?
    Kind regards
    Joris

    Hi,
    Adobe Interactive form can be generated and sent it via email by using a normal Java class. But that Java class should run in a server which should contain Adobe DocumentService.This java class can be archived as a par file and deployed on Portal server or can be written as a Webservice and can be triggered by clicking on a URL.
    Hope this blog helps.
    /people/ramesh.kotagiri/blog/2009/01/19/dynamic-generation-of-offline-adobe-interactive-forms-for-sap-46c-and-ep-70-without-user-intervention-part-150-iii

  • ADOBE Interactive forms / Automatic handling by SAP via mail

    Hi All,
    Short question. Is it possible that for example, an email
    with a predifined body is send to a SAP SMTP port and that the content is read bij an service(for so far this is possible)and that this service creates an ADOBE interactive form autmatically  and returns it by mail.
    I have to know this, because it is a possible customer scenario.
    Any input is welcome!
    Thanks,
    Harrie Prinsen

    Hi,
    Adobe Interactive form can be generated and sent it via email by using a normal Java class. But that Java class should run in a server which should contain Adobe DocumentService.This java class can be archived as a par file and deployed on Portal server or can be written as a Webservice and can be triggered by clicking on a URL.
    Hope this blog helps.
    /people/ramesh.kotagiri/blog/2009/01/19/dynamic-generation-of-offline-adobe-interactive-forms-for-sap-46c-and-ep-70-without-user-intervention-part-150-iii

  • Adobe Interactive Forms - Senden per mail

    Hallo,
    ich benutze auf meinem Formular die Senden-Schaltfläche da ich das Dokument als PDF senden möchte. Unter "Absenden an URL" habe ich eine feste Mailadresse mit "mailto:" angegeben. Hier möchte ich eine zweite frei wählbare Mailadresse noch mit angeben können.
    Ich habe es schon mit einer zweiten festen Mailadresse (mailto: adr1;adr2) ausprobiert. Das funktioniert.
    Gibt es eine Möglichkeit dieses Attribut (Absenden an URL) der Sendenschalftläche per Script zu setzen? Bisher habe ich auch noch keine brauchbare Lösung gefunden. Eine zweite Schaltfläche möchte ich nicht implementieren. Kann sein, daß in Zukunft auch noch weitere Mailempfänger hinzukommen.
    Vielen Dank im Voraus für eure Unterstützung!
    yukoono

    Hi,
    Adobe Interactive form can be generated and sent it via email by using a normal Java class. But that Java class should run in a server which should contain Adobe DocumentService.This java class can be archived as a par file and deployed on Portal server or can be written as a Webservice and can be triggered by clicking on a URL.
    Hope this blog helps.
    /people/ramesh.kotagiri/blog/2009/01/19/dynamic-generation-of-offline-adobe-interactive-forms-for-sap-46c-and-ep-70-without-user-intervention-part-150-iii

  • Adobe Interactive Form - Layout type

    Friends,
    I am working on an Adobe Interactive Form.
    Regarding the Layout Type in the Properties Tab, what option should i choose:
    Unknown Layout Type / xACF Layout / ZCI layout / Standard Layout.
    I have used print forms in the past and chose Standard Layout. Please let me know what is the right choice for an interactive form.
    I am trying to populate Drop Down box with values. I have chosen "Enumerated Drop-down List" from Web Dynpro Native Library.
    I have done the binding under Binding tab -> Specify Item Values -> Dynamic Properties -> Binding.
    Still the values are not getting displayed in the PDF preview.
    Is the layout type the reason for this or do i need to work with ABAP Dynpro to rectify this error.
    Points will be rewarded for helpful answers.
    Thanks.

    Hi,
    The basic difference is:
    1) ActiveX Dropdowns requires ACF to be installed on each client machine to get back the data from interactive form back to context.
    2) While, the use of Native dropdowns makes a form to ZCI type, so that does not require any xACF component to be installed on each and every machine that uses the Interactive forms.
    So, it is recommended to use Native dropdowns in your forms,
    Also, for the population of dropdowns of type native you can go through SAP note: 1013227.
    Hope this helps,
    Thanks,
    Amita

  • Adobe Interactive Form is displayed in Read Only mode

    Hi All,
    I created Adobe Interactive Form in SFP.
    The following properties are set to the form.
    Layout Type -ZCI Layout
    Preview Type - Interactive Form
    XDP Preview Format - Acrobat 7.0.5 Dynamic PDF
    In PDF preview tab, I can enter data into the Text Fields.
    I added this form in a web dynpro ABAP application using Interactive Form UI element.
    The following properties are set to the UI element.
    DataSource - bound to the context
    displayType - native
    enabled - checked
    templateSource - Formname
    readonly - unchecked.
    When I run this application, the form is displayed in readonly mode.
    I can't enter any data into the text field.
    Any of you guys know that how to resolve this?
    Thanks
    Thruna

    Hi,
    I already face the same issue and after several days working on this issue and many hours on debugging it seems that interface type is very important if you want to use the form in WD4A (this requirement is confirmed by SAP thru an OSS message for me )
    Does the interface based on DDIC or XML ?
    If it's a DDIC interface , sorry that can't works in WD4A as interactive forms. You must define the interface as based on XML for this .
    Hope this help you.
    PS : Finally ,as my forms was very complicated my customer decide to not make it available in WD4A .....

  • SUBMIT(to SAP) Button in Adobe Interactive Forms (Web Dynpro Java)

    Hi ,
    I m using Adobe Interactive Forms with Web Dynpro Java
    But submit to SAP button is not working
    i m using NWDS 7.2 with adobe lifecycledesigner 6.0
    with adobe reader 9.0
    when i click submit to SAP button in interactive form nothing happens and
    data is not transfered into web dynpro Context
    Can anybody help me out................

    Hi Adi,
    The evniorment and versions you posted seems to be quite scattered, make sure all are of compatible and to the lates.
    Anyways this was not the reason for your problem.
    Can you tace if the button click event is triggered ....?
    1) when the PDF is published can you see any of the fields editable...? reason behind is generally when you create a form in ADLC it comes up in static PDF format if its so you need to make it dynamic.
    I dont know if adding the webdynpro script to your form might fix.
    Regards,
    Sai

  • Reading Dynamic Table Values in interactive form (web Dynpro ABAP)

    Hi All,
    I have created a Web Dynpro ABAP application which contains an Interactive Form, That Adobe Interactive Form contains Dynamic table (New rows can be added manually and deleted using a button).
    I am not able to read the Dynamic table values in Web Dynpro u201COn Submitu201D.
    In the Adobe form I have web Dynpro native button (I am using ZCI), while clicking the native button I need to read the dynamic table values.
    How can I resolve this problem.
    Thanks and Regards,
    Boopathi M

    that means, when u add the table instance at runtime, you will also have to add an element to the node that is bound to the table.
    probably addNew() mathos may be useful to you.
    it appends a new record to the record set.
    xfa.sourceSet.dataConnectionName.addNew()
    also when on the exit event of the table field, do the following:
    var i = xfa.parent.index
    $record.rootnodename.tablenodename.data<i>.fieldname = $.rawValue
    xfa.host.messageBox($record.rootnodename.tablenodename.data<i>.fieldname)

  • How to use Adobe Interactive forms with ISR frame work in Webdynpro forJava

    Hi,
    Anybody worked on Adobe Interactive forms with ISR frame work in Webdynpro for Java in ESS/MSS development.
    We have already searched in ISR_Cookbook_2004, however we didn't anything related webdynpro for java in that.
    Any information regarding this will be of great help.
    Regards
    Satish Kumar

    There are a number of issues here. A form that you created with LiveCycle Designer (XFA) cannot be used with FormsCentral. An Acroform, the kind you can create with Acrobat, can be used with FormsCentral, with certain limitations,  one of which is skip logic. A dynamic XFA form allows for this type of thing, but as mentioned, they don't work with FormsCentral. You can set up an Acroform to show/hide or activate/inactivate fields based on selections or entries made in other fields, but you'd have to set this up in Acrobat, not FormsCentral. So you can set up something roughly equivalent to a web form's skip logic, but you'd have to learn how to do this in Acrobat using JavaScript. There is a separate Acrobat JavaScript forum here if you have any questions.

  • DYNAMIC TABLE IN WEBDYNPRO INTERACTIVE FORM

    Hi,
      I am using dynamic table in interactive form(webdynpro java).  In that form i bind node for to populate the details for the table. The details should be come from RFC.
    The RFC contains more than one record. While i tried to populate all the records to the dynamic table i cant able to got all the datas. I got only one record to the table.
        Interactive Form table node structure is:
                Node                                          Cardinality                             Singleton
    vnPDFDataSource                                    1..1                                         true
            chnTableList                                     1..1                                         true
                           chnTableRow                     0..n                                         true
                                   chnRowData              1..n                                        false
                                             attr-1
                                               attr-2
                                                attr-n
    o   The nodes bound to table and row in Adobe form are:
    chnTableList u2013 bound to Table
    chnTableRow u2013 bound to Row   
    If anybody know means let me tell how to solve the problem.
    Thanks,
    Senthil prabhu

    Hi,
    To add a row in dynamic table in interactive form How to create dynamic table in the interactive form
    also check page 11-13 in this docuemnt https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/63f09fc2-0401-0010-1482-dbf9891e7613
    after adding it you can send the table data to rfc asusal Problems while setting Multiple Rows of data as Table Parameter to the RFC
    give a lot at this too want to save data
    regards,
    Pradeep

  • Loadrunner 11 and Adobe interactive forms

    I'm currently on-site for SAP Italy and the client wants to use Loadrunner 11 to test a business process that requires Adobe interactive forms.
    eCATT is not acceptable to the client
    Can you advise me if the question about this being possible using Loadrunner 11 has been answered ? Has anyone actually done this using LR and if so would you share details ?
    I note that in the HP Forum that this topic is currently live.
    jc

    Hello Brenda,
    yes, we've tested eCATT with interactive forms. It works so far, but the question is what is the goal of your test?
    Using eCATT ADS, the application, and the business logic behind is tested. If that is your goal, using eCATT is an appropriate solution.
    Regarding Loadrunner-Tests I'm not the expert. But within the solution an ActiveX does posts to the server using encoded URLs. So there are several problems:
    - is loadrunner able to record those posts?
    - is loadrunner able to modify URL parameters dependend on the current session?
    - is loadrunner able to use the response of such a post and dynamically adapt a post parameter of the subsequent post?
    So I think it is at least very difficult and complex to use loadrunner. I recommend eCATT as the solution for automated tests of InteractiveForms.
    Regards
    Stefan

Maybe you are looking for

  • BI Admin Cockpit - no application data

    Hi All, We are having issues in seeing data in BI Admin cockpit which is avaialble in our EP7 system. We have integrated this EP7 with a BI system. We have successfully completed the run for DATA LOAD and Runtime Query Statistics - Init and Delta in

  • Code to use ABAP proxy

    hi all, can anybody please send me any sample code to call ABAP proxy. the ABAP proxy is already being created and i have all the class and methods names. i have to pick up some fields from a Z-table and have to send them as a message to XI. thanks i

  • Why are my ratings missing when I import files into Lightroom?

    Files that I have previously rated with stars in Bridge appear in my Lightroom catalog after DNG conversion without them. I am having to select all the images and use the 'Update DNG Preview and Metadata' command after ever import. Interestingly, thi

  • PS CS3 crashes in preferences

    Just reinstalled PS CS3 on a new hard disk, 8gb ram, oodles of storage, upgraded from vista 32 to vista 64. The same problem happened when I installed it on vista 32. But did not retain instructions on how to cure it. Edit - preferences-performance,

  • Mensajes automáticos

    Estimados Todos Mi consulta: de que manera se puede hacer que SAP genere un mensaje automático en el momento que se haga una Transferencia de Stocks o bien en un procedimiento de autorización. Agradezco su ayuda saludos cordiales