To save a document in the ADOBE form

Good day, friends!
We created a report in the ADOBE interactive form. The report consists of data from ERP 6.0. and there is a column where we need to enter some information explaining the data. The ADOBE from allows us to enter the information and print it, but we cannot save it. It seems strange. We found out that the interactive form includes the following components: Starter Kit, Enable the Enterprise and Additional forms Bundles. The Help says that we need to buy the license for the one of above components, but it doesn't explain the main functionality of them. Which component should we buy (and it is enough) for saving our document in the ADOBE interactive form?

Hi Aidar,
                    you must required the credntial instalation file during the configuration of ADS if you don't have credential file then plz read the notes no. 736902 on OSS.
Kind Regards
Anirudh
Edited by: ANIRUDH SAINI on Mar 26, 2008 8:17 AM

Similar Messages

  • Hello, I was wondering how to get a version of a PDF document? My Adobe shot down and I have not had time to save my document with the notes had been taken. When I reopened there were no notes on my paper. I have a mac book pro. Thx.

    Hello, I was wondering how to get a version of a PDF document? My Adobe shot down and I have not had time to save my document with the notes had been taken. When I reopened there were no notes on my paper. I have a macbook pro. Thx.

    Hi Erika1987,
    If you have not saved the document and Acrobat closed then it's not possible to retrieve the lost data on the pdf file.
    Regards,
    Rave

  • Save the adobe form

    hi expert
         I have created the simple application in that i have created
    open and save button , once i click the open button the adobe form will open
    after that i want to save these adobe form in the particular location ("c:\temp")
    how can i do this without using the upload and download UI element
    help
    its urgency
    thanks
    Regards
    vijay

    Hello Vijay,
    You want save the pdf file to particular location..,So go through the following code. This might be useful to you.
    IIWDAttributeInfo attInfo =
    wdContext.currentContextElement().node().getNodeInfo().getAttribute("pdfsource");
    ISimpleTypeModifiable type = attInfo.getModifiableSimpleType();
    IModifiableSimpleValueSet binaryType =
    type.getSVServices().getModifiableSimpleValueSet();
    binaryType.put("FileName","TravelRequest.pdf");
    binaryType.put("MimeType","WDWebResourceType.PDF");
    String Filename =
    "temp
    webdynpro
    web
    local
    offlineInteractiveForm
    Components
    com.sap.offlineinteractiveform.shital.UploadDownloadformComp
    TravelRequest.pdf";
    /* CONVERTS BINARY FILE TO A BYTE ARRAY */
    try{
    File file = new File(Filename);
    FileInputStream in = new FileInputStream(file);
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    int length;
    byte[] part = new byte [10 * 1024];
    while ((length = in.read(part)) != -1 )
    out.write(part, 0, length);
    in.close();
    wdContext.currentContextElement().setPdfsource(out.toByteArray());
    }catch(Exception e) {
    throw new WDRuntimeException(e);

  • How to use the separate symbol in the text field in the adobe form.

    Hi,experts,
    I don’t know how to use the separate symbol to make a paragraph separate into several lines correctly in the text field in the adobe form.
    Action:
    1. config the ADS successfully.
    2. create the adobe form with a mult-line textfield(binding the 'remark' context in the interface of the form) using sfp.
    3. create a WDA for invoke the form and transfer the 'remark' context data.
    I use the following codes to display the paragraph in the PDF document:
    CONCATENATE
    '1、aaaaaaaaaaa;'
    '2、bbbbbbbbb '
    '3、ccccccccccc'
    '4、ddddddddd'
    INTO remark .
    lo_nd_z_hr_php_payslip->set_attribute(
    EXPORTING
    name = `REMARK`
    value = remark ).
    But I found all the content aren't paragraph separate correctly in the text field in the adobe form when I run the WDA.
    Could you please give me some hints to make the paragraph separate correctly in PDF document? Thanks a lot in advance!
    My email is : [email protected]
    Best regards,
    Tao
    Edited by: wang tao on Apr 8, 2008 1:58 AM

    Hi,
    If it is just a one word value then you could use this in the exist event;
    this.rawValue    
    = util.printx(">?<*",this.rawValue);
    This changes the first character (represented by the ?) to uppercase (represented by the >) and all trailing characters (represented by the *) to lowercase (represented by the <).
    If you wanted something more general ... if they could also enter a middle name then you could call a function like;
    function        toTitleCase(textValue)
      return  textValue.toLowerCase().replace(/\b[a-z]/g, function replacer(match) { return match.toUpperCase(); });
    This uses a regex to change all lowercase letters following a word boundary to uppercase.
    Bruce

  • Place the Adobe Form as PDF file in a URL

    Hi Experts,
    I have created an Adobe form and got the PDF data in the form of XSTRING now I need to place this as PDF file in the URL which I have generated programmatically. Not sure on how to do it. Any function modules or classes to place this as PDF file at a URL will be really helpful for me.
    Tried with HTTP* function modules and seems they are not working.
    Thanks for you help.
    Regards,
    Srinivas

    Hi Sai,
    Thanks for ur input.
    My requirement is not exactly the string with XML data, but the string with PDF data.
    I will try to explain my requirement here in detail.
    I have the adobe form triggering from the webdynpro. This form has different objects like, text fields, dropdowns, check boxes, radio buttons...etc and one SUBMIT button for which webservice is attached in the properties.
    User will fill all the fields and clicks on SUBMIT. When he clicks on the SUBMIT, the webservice should attach the filled PDF document at partner level.
    For this purpose, i need the string with PDF data and not the XML.
    WIth this PDF string again i should be able to re generate the PDF document which was filled by the user.
    If string with PDF data is not possible, Please suggest me the possible way of achieving this?
    Regards,
    Ram.

  • How to write a application using WDJ with the adobe form ?

    Hi, experts,
    I don't know how to write a application using !!webdynpro for java!! with the adobe form so that I can fill data to the adobe form and get data from the adobe form.
    Note: I have configed the ADS(adobe document services),and I can create a application with a interactiveform in webdynpro for abap and run it successfully, so that I can  fill data to the adobe form and get data from the adobe form.
    Do you give me some hint?
    Thanks a lot.
    Best regards,
    tao
    Edited by: wang tao on Sep 9, 2008 8:59 AM

    Hi,
    Refers the following links.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4fd2d690-0201-0010-de83-b4fa0c93e1a9
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5f27e290-0201-0010-ff82-c21557572da1
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/70c9a954-aa20-2a10-64bb-ea0835204e03
    Thanks
    Abhilasha.

  • Read all rows in static table defined in the adobe form using webdynproABAP

    Hi all,
    The requirement is i have to display the 5 empty rows using adobe forms in the table format and retrieve the data from that 5 rows after user enter some value and post it in the database table. This is the part of my requirement.
    I have done the designing part in interactive form and coding in WD using ABAP.
    For that, I defined table in the adobe forms where in the DATA subform I have given Min count value is 5 instead of 1(selected the check box - repeat each item... also). I am able to display 5 empty rows successfully. After enter values in 3 rows and press SAVE button i am getting only first record but not all 3 records.
    I have written the code for SAVE records in WD using ABAP. I am using this method "get_static_attributes_table" for getting all records.
    Please help me resolving my issue.
    Thanks in advance.

    Hi,
    In the WDDOINIT method, create an internal table with 5 empty rows and bind it to the context using the method Bind_Table.
    Then try executing your program, this should work.
    If it doesnt , do let me know.
    Regards,
    Runal
    Edited by: Runal Singh on Jun 11, 2009 3:00 PM
    Edited by: Runal Singh on Jun 11, 2009 3:08 PM

  • Print the attachements added in the adobe form

    Hi,
    I added the attachments in the adobe form.But when ever i print this adobe form , i want to make sure that the attachments are also printed in addition to the original adobe form.
    Is there any automatic way of doign it or any alternatives to avoid adding it as an attachment ,
    i have  a word document stored in the database.
    so when ever i print my form need to print the document sthat are stored in the database also.
    Please help me.
    Regards,
    Sasi

    "Discrepancies"?

  • Handling Submit Button on the ADOBE form called from Web Dynpro

    Hi,
    I have placed a Button on the ADOBE Form. How to Handle the event on this button. When i click this button, i want to save the details of the form into a Custom table.

    Hi Majunath.
    Create an event say, SUB_EVTin the view in WD where you have the Interactive Form UI element.
    Bind this event to the onSubmit of the Form.
    Now check the display type of the form. It will be either ActiveX or Native.
    Now go to the form designer and open Library palette. Navigate to Webdynpro ActiveX or Native Library(Depending on the form display Type in WD).
    Drag and Drop Submit button.
    On click of the button, the event handler in WD view namely, onActionsub_evt will be invoked. You can write your code in this handler.
    Now in order to read data from the form. Go to the form and go to Properties tab. Check the form layout type. If it is not ZCI, run transaction SFP_ZCI_UPDATE and convert the form to ZCI type.
    Now back to the event handler.
    as an example... I will use the following context node definitions
    PDF_DATA  1..1
      ACTUAL_DATA 0..n
        ATTRIB01
        ATTRIB02
    Assume the the node PDF_DATA is bound to the data source of your form.
    Now in the event handler write the foll code
    data: lo_node type ref to if_wd_context_node,
            lt_data   type wd_this->elements_actual_data.
    lo_node = wd_context->get_child_node( name = wd_this-.wdctx_pdf_data ).
    lo_node = lo_node->get_child_node( name = wd_this-.wdctx_actual_data ).
    lo_node->get_static_attributes_table(
      importing
        table = lt_data ).
    This will get all the form data in the internal table lt_data.
    Now you can process the data the way you want and save it in your custom tables.
    Regards,
    Reema .
    Edited by: Reema Shahbazkar on Sep 16, 2008 11:39 PM
    Hope this helps!!

  • To assign the Adobe form in the communication method of the output type.

    Hi Gurus,
    SAP has provided an option to assign the SAP script In the communication method screen which will use to print the layout (document) using this SAP script.  Internally it will overwrite the form name of the Nace transaction. SAP has not provided a field to assign the Adobe forms.
    Can any one help me to resolve this issue
    Thanks,
    Raju Singhireddy

    I don´t understand your problem. I always use Adobe forms in my NACE transaction. Otto

  • Attach files to the adobe form : offline

    <u>Hi all,</u>
    <b>NW04S
    SPS8
    We have the above mentioned.</b>
    My requirement is to create an interactive form, that should have the ability to attach files offline. This means that the user of the form will have no access to the SAP system and should be able to attach supporting documents with the help of the adobe form itself, only.
    How can this be done?
    Is there any solution available to this or we still have to wait for forthcoming support packages?
    <u>Regards.</u>
    <i>Ali</i>

    In Web Dynpro for Java, this function will be available with SPS 10, on the ABAP side it will probably not be available before SPS 12.
    For SPS schedules of SAP NetWeaver, go to <a href="http://service.sap.com/ocs-schedules">http://service.sap.com/ocs-schedules</a> > Basis, ABA, R/3 Support Package Schedule
    Best regards,
    Markus Meisl
    SAP NetWeaver Product Management

  • How to merge data to the adobe forms

    Can any one tell me the solution to merge data to the adobe form created using adobe life cycle designer. Here i want to merge data in the server side and send the resulting forms to the users

    Hi,
    You are correct, You can load the Data from ODSA / ODSB to ODSC.
    1. Create the ODSC which are include the fileds A,B,C,D,E.
    2. Create the Transfermation from ODSA to ODSC> Give the Propermapping with A,B,C,D> Save and Activate the Transfermation.
    3. Create the another Transfermation from ODSB to ODSC--> Give the mapppings with A and E only, then save and activate the Transfermation.
    4. Create the two DTPs for indevidual loading data from ODSA>ODSC and ODSB>ODSC.
    You can see the Data from ODSC by selecting Manage.
    Regards.

  • How do you Save a document downloaded to adobe reader in win 8?

    How do you Save a document downloaded to adobe reader in win 8?

    We have just released Adobe Reader Touch version 1.2 that includes the Commenting and Save features.
    Please see the Announcement (the yellow strip) shown near the top of this forum.
    FAQ: How to update Adobe Reader Touch to the latest version

  • I am trying to save a document with the new pages and it will only save as a zip file any ideas on how to change this?

    I am trying to save a document with the new Pages and it is only saving as a ZIP file anyone know how to fix this or choose a different file type?

    Take a look at the FileSelector
    First make sure the FileSelector is expanded so you can see the directory and sidebar. That's what the little disclosure triangle up by the filename is for. Once the FS has been expanded to look like the above picture, look to see what subdirectory has been selected. Use the SideBar to select an appropriate one.

  • Error in opening the adobe form to create a PCR

    Hi,
    I m getting an error while i open the adobe form to create a PCR as follows.
    Script failed. accessor '$record.ENAME.DATA.FIELD' is unknown.
    Please help.
    <b>Points are sure.</b>

    Hi,
    I m getting an error while i open the adobe form to create a PCR as follows.
    Script failed. accessor '$record.ENAME.DATA.FIELD' is unknown.
    Please help.
    <b>Points are sure.</b>

Maybe you are looking for

  • Audio and video out uf sync

    I'm using Premier elements 12.  When I open a VOB file, the audio and video are not in sync.  I can open that same file with windows media player and all is well.  What do I need to do with respect to editing a file like this? The information about t

  • I have 30 gb of audio 14 gb video and 33gb of other what is other and how do i get rid if it.

    i have 30GB of audio 14GB video and 33GB of other.... how do i get rid of the other?

  • Restrictions on use of softwares

    Forstudents & teacher CS6 edition product, As per restriction on use policy "purchases of suit editions are limited to one title per platform per year"... does that mean I can not use these installed software on my computer after one year of purchase

  • WIP valuation with o value

    Dear Gurus, When I am calculating WIP,data has come but without any value (Rs.0) and no error messages come but one information message was come that RA version data was not changed. And also when I am going in details than Information messages was c

  • Reg: consolidation

    Dear friends, I created each business area as a company code, any one can help how to do consolidation. In my organization we manufacture and sell 6 types of prducts, each product is having different process and different locations. So each divsion o