Text field data in the Interactive adobe form to long text

Hi Expert,
I have a text field(allow multiple line) in the interactive adobe form which has been binded to table type(char132) field of the context element.
Now I want the save text field data as a long text using SAVE_TEXT.
When I enter some value in the text field and trigger SUBMIT event then it is going to dump.
I am unable to trace out what is wrong, since control is not reaching to INIT method of the view.
please help.
Regards,
Rajesh.

Hi,
what is in ST22 for this problem?
Regards Jiri

Similar Messages

  • Calling and manipulating data on an Interactive Adobe form from ABAP report

    Dear All,
    Can you please tell me how to call an interactive adobe from from a custom adobe form?
    If so how can we pass and receive data between the interactive adobe form and the abap report program?
    Thank you.
    Regards,
    Prosenjit.

    Hi,
    It is possible to call an Interactive Adobe form from ABAP report and pass data into the form. If you search the forum, you will get many threads explaining the process. Let me know if you have any specific questions on this.
    Regards,
    Sanoosh

  • How to extract data from an interactive adobe form and update SAP database

    Hi ,
    I want to create an Interactive Adobe Form with two text fields and a submit button.On click of submit data entered in the text fields should be stored in a ZTable.
    Please let me know the procedure for doing this in ABAP.
    Thanks,
    Prasuna.

    Hi ,
    pls have a look at the link below...
    [http://www.adobe.com/devnet/livecycle/articles/lc_designer_schema_tip.pdf]
    if u r using abap web dynpro application for calling the adobe form than on the CLICK Action of the button give the code :
    zdept is the interface name ..
    method ONACTIONCLICK .
      data:
        Node_Adobe       type ref to If_Wd_Context_Node,
        Node_Zdept       type ref to If_Wd_Context_Node,
        Elem_Zdept       type ref to If_Wd_Context_Element,
        Stru_Zdept       type If_Main_View=>Element_Zdept .
      data wa_zdept type zdept.
    * navigate from <CONTEXT> to <ADOBE> via lead selection
      Node_Adobe = wd_Context->get_Child_Node( Name = IF_MAIN_VIEW=>wdctx_Adobe ).
    * navigate from <ADOBE> to <ZDEPT> via lead selection
      Node_Zdept = Node_Adobe->get_Child_Node( Name = IF_MAIN_VIEW=>wdctx_Zdept ).
    * get element via lead selection
      Elem_Zdept = Node_Zdept->get_Element(  ).
    * get all declared attributes
      Elem_Zdept->get_Static_Attributes(
        importing
          Static_Attributes = Stru_Zdept ).
      wa_zdept-DEPTNO = Stru_Zdept-deptno.
      wa_zdept-DNAME = Stru_Zdept-dname.
      wa_zdept-LOC   = Stru_Zdept-loc.
      insert into zdept values wa_zdept.
    endmethod.
    Hope this helps  !!!
    best of luck !!
    Regards
    Ravi

  • Text Field value display twice in Adobe Form.

    Hi Experts,
    I want to display a text field value twice in a ADOBE FORM but it only display at first occurance of the text field.
    Please suggest me possible solution.
    Regards,
    Abdul

    Why don't you have two different text fields in the interface and bind them separately at the two different places in the form. In the driver program you can control the value being passed to be same for both the fields.
    Regards
    Ranganath

  • Saving the data from an interactive adobe form

    Hi Gurus,
    I want to know how to upload the data from an interactive form (i.e the data sent by a person via email or URL.It is in XML format)  into the SAP database.
    Thanks,
    Raj

    Hi Vaibhav,
          I have designed an the interactive form which works both online and offline.In offline scenario when i am uploading the form the data form fields which has cardinality 1:1 are being fetched but how wil i fetch the data for the node of cardinality 0:n. i have used the code :
    node = document->find_from_name( name = 'attr' ).
    attr = node->get_value( ).
    attr is the attribute name of some node named node_info.
    When i use this code it fetched only the first line of the table i.e only the first value.
    How will i fetch the values for rest of the rows.Can u please guide me on this
    will reward points for sure.
    Thanks and Regards,
    srividya.

  • Fill DDL based on other field values in offline interactive adobe form

    Hi,
    I have a requirement where in i need to fill the values for a dropdown list  based on 3 other field values in offline adobe interactive forms which uses web service to interact with SAP.
    Note: I read many blogs and posts in SDN , but couldn get much info ab the same, so posting a new thread.
    Thank you.
    Regards,
    Soumya

    Hi Soumya,
    It is possible but a little bit tough and will make your form heavier.
    The solution is advisable only when there is not very much data required for the drop down(May be not more than 500 values as it will create performance issue).
    You can create a hidden table on the form contaning data for all the combinations. Depending on the selection of another 3 fields you can write the code to select only those values from this hidden table which are applicable to that selection. These values you can add to the drop down list removing the previous values.
    Only you have to do is on calculate or vlaidate event of target DDL you have to write your code.
    Pseudocode:
    1. Clear your DDL using deleteItem() method.
    2. Loop at your hidden table.
    3. Inside the loop check for applicable entries depending on selection in other 3 fields.
    4. Select the appropriate vlaues
    5. Add using additem method().
    Refer formCalc or JavaScript help for the appropriate code.
    Hope this will be helpfull.
    Regards,
    Vaibhav

  • Validate the radiobutton in interactive adobe form

    Hi All,
    right now iam working on the interactive adobe form where we can see the dropdown boxes and radiobuttons and some of the text fields. okay here i have issues on the radiobuttons to validate some data.
    exactly my issue is :
                         we have 3 radiobutton , if end user select the one of the radiobutton on the adobe form then the value in the drop down boxes will be automatically changes.
    how handle this type issues on the adobe form.
    Thanks,
    Ramana

    you can use the javascript or other scripting language there is on the element.
    Can't remember the name right now

  • Capturing the changed data in the interactive forms through HTML Viewer

    Dear all,
    I'm showing the Interactive Adobe form in the HTML Viewer and I want to capture it back after the user enters data in the form and save it to application server.
    Can I get some help on this. Please attach supporting documents if any.
    Regards
    Aravind

    sorry i've got no document describing this. under service.sap.com/adobe you'll find a lot of Adobe content.
    But basically use the Adobe Designer from program files\adobe\design 7.0\formdesigner.exe
    create new form based on the CAF tutorials in the Interactive Forms section, add a new data connection to a wsdl, bind input/output parameters to form fields and get a button executing the wsdl operation.
    create your interactive form callable object based on that template, configure the form to start process and as impersonalized form. create the form from the GP administration screen, download it and test it.
    ...And Good Luck!!!

  • How to download interactive adobe form with filled data

    Hi Experts,
    i have created a module pool program that is showing interactive adobe form, i created a button 'SAVE' to download the interactive adobe form to the presentation server.
    but the problem is that i am unable to save the interactive adobe form with filled data. Please provide me the code how to download interactive adobe form with filled data.
    Please provide me valuable information to clear the issue.
    Thank you,
    B. Raghu Prasad.

    Hi Raghu,
    is this adobe form in web dynpro ? if so, I suggest to go to [Web Dynpro |Web Dynpro ABAP; forum to get more advice because it seems to be more specific topic.
    Regards,
    Vincent

  • Issue with interactive adobe forms in webdynpro JAVA

    hi all,
    I have added new field in interactive adobe form in NWDS and also did required changes to RFC function module which extract the data from database tables. Also, i have mapped the exporting parameter of the function module with newly added field on the interactive adobe form. After all required changes i did manual deployment of .EAR, .XDP and .WDP files in J2EE server (my client doesnt have auto deployment like right click on the project and click on deploy). After doing the manual deploy, i do see new filed on the interactive adobe form, but i do not see any value in that new field. I wanted to know am i missing any other step in deploy or what i am missing.
    FYI.. i also tried restarting the J2EE server, still no use.
    Could any one please help me to resolve this issue.
    Thanks,
    Chandra

    You found it? Use "Open" instead of "show" and it will work like ours.

  • Run time switched to interactive adobe form

    Dear Experts,
    I was able to convert the smartform in runtime to Adobe form but the resulting form is non-interactive.
    Is it possible to convert the smartform to a interactive PDF??
    I have a requirement , in the generated Adobe form I would like to insert a signatue field. I was able to convert the smartform and display the generated PDF with the signature field but it was non-interactive.
    Please suggest me a way to make it interactive.
    Regards
    sree.

    Dear Sandra,
    Thank you for your quick reply.
    We have installed the ADS configuration and were able to design the forms using SFP tcode. Now I want  to get the design Layout/data  existing in the smartforms to this interactive form.
    Please provide me any possible solution for this.
    I was able to export the layout of smartform to adobe form but the layouts were not same is there any other way to bring the same layout from the Smartform to the interactive Adobe form??
    Regards
    sree

  • Save interactive adobe form in presentation server through report program

    Hi All,
              We have developed a interactive adobe form in SFP transaction and we are calling this form
              from report program  and we are able to save the form in presentation  server.
              But my scenario is that user provides input in interactive adobe form and i need to save the interactive adobe form
              in display mode that to in  presentation server with input values provided by the user.
             could  any help to achieve this or guide me if i am  moving in a wrong path.
    Thank you,
    Harsha P

    It all depends on what you want to do.
    If you are planning on users to fill out on-line form only and submit to SAP, it is pretty easy to do (that is once you understand how to create web dynpro and interactive form).
    You can also have users fill a form offline and upload to online and save it to SAP.
    You do need to know little bit about coding (ABAP or JAVA),
    but can be done w/ very minimum coding.
    If you are planning on doing in Web Dynpro ABAP,
    go to SE 80 and select WebDynpro and create form.
    To save data/form to SAP, you probably want to use BAPI or Function module already available so that you don't have to do much coding to save data.
    See some of these links for helpful tutorials. Thomas Jung has several good tutorials, but none of them probably have all the information you need... you just have to pick some from here and some from other places... If you have specific question, I will be happy to guide you...
    Practical tips for developing with ABAP WebDynpro
    Practical tips for developing with ABAP WebDynpro
    http://help.sap.com/saphelp_nw2004s/helpdata/en/7c/3545415ea6f523e10000000a155106/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/c766e918-0b01-0010-99b1-c2b78cd059b3

  • Interactive Adobe Form's  Language Translation

    Hi all,
    we activated the MSS 60.1 version on the SAP NetWeaver 2004 Enterprise Portal.
    We need to activate a link on EP that refers to PCR application. From this link we want to call all the Interactive Adobe Forms associated to the ISR standard scenarios.
    Our problem is this: all the standard Adobe Forms are generated in german language. How can we generate them in italian language?
    Thanks a lot to all.

    Hi,
    Maybe useful.
    <b>Translation, globalization, internationalization</b>
    980522   Umlaut is not displayed in Interactive Form
    994045   Non-Latin-1 characters in PDF forms
    963063   Special characters not allowed in the name (create form)
    950271   Translation process in SFP
    837217   Update of translation process
    917483   Translation update
    864990   Form Builder: Layout translation settings
    876203   ISR Layout translation
    Source: <a href="/people/markus.meisl/blog/2006/11/03/the-most-important-sap-notes-for-sap-interactive-forms">/people/markus.meisl/blog/2006/11/03/the-most-important-sap-notes-for-sap-interactive-forms</a>

  • Interactive adobe forms are not accessible in Mobiles

    Hi,
    We have a requirement to use password protected adobe forms generated from SAP ADS. We have developed such adobe forms using java scripts.
    Now the issue is that we are not able to open this XFA forms in mobiles. Could you kindly provide information on this. We need to know that the whether the interactive Adobe forms created from SAP ADS are accesable in mobiles.
    Thanking you.
    Regards,
    Raghu

    Hi,
    Adobe Reader/Acrobat DC mobile products do not support XFA forms.
    Please take a look at the Adobe LiveCycle Blog.
    Adobe Reader Mobile and XFA forms from LiveCycle Designer | Adobe LiveCycle Blog
    Thank you.

  • Digital Signature on Interactive Adobe Form with GP

    Hi All,
    I have a scenario in GP. The Interactive Adobe Form is developed on NWDS. User1 signs on the Form and Submits to User2 for further processing.
    1) Now, can User2 be made to view the digital signature of User1?
    2) If yes, how is the digital signature passed between User1 and User2? Is it through the GP context? What is the type of GP context that can be used in this case?
    Thank You.
    Regards,
    Suyukti B N

    Hi
    You can do this using GP too, GP work on WDJava(It is workflow for java apps). For GP you have to be familiar with WDJava and CAF coding.
    I will suggest go for ABAP if you are comfortable with it.

Maybe you are looking for

  • My ipod wan't connect with my hp laptop windows vista

    the laptop asks for a driver to install and then asks for a disk to enter which came along with the ipod touch 4G to pair

  • Web site hosting/building suggestions.

    Hi, Can anyone recommend web site hosting that is consistent, reliable, dependable and fighly accessible. My hosting needs are mainly image and audio related. My workflow is done exclusively on Mac. Cureently using OS X Version 10.6.8 and prev. Thank

  • Spam getting past email server

    Why has my email server started letting so much spam get through?  What can I do to stop it?  Thanks.

  • Report on Credit Notes and Debit Notes

    Hi Experts Please assist, I need to run a report showing Credit Notes(Subsequent Credits) and Debits Notes(Subsequent Debits) created over a specified period including date, amount, reference etc. Thanks CN

  • COPA report change Header text

    Hi, I am preparing COPA line item report. I am not able to change or add header text in the report as we  do in report painter report. The form I am  using is KE94 Create and KE95 Chage.The report painter option extras-> Report Text -> header text is