How set adobe form as dynamic

Hello Everybody,
I have a Java WebDynpro application with an adobe form. On adobe form is TextField and Button. On click event of Button I have javascript code:
xfa.resolveNode("TextField").presence = "hidden";
But it doesn't work because adobe form is static and not dynamic.
I use SAP NetWeaver Developer Studio 7.0.08 and Adobe LiveCycle Designer 7.1. In Form Properties in LiveCycle Designer I have:
  XDP Preview Format: Dynamic PDF
  Override Default Rendering: checked
  PDF Render Format: Dynamic PDF
If I save generated PDF and open it in Adobe Designer, I see, this is a static PDF. If I save it as Dynamic PDF, javascript works.
How can I render my adobe form as Dynamic PDF?
Thank you for your help!
Michal

Hi,
I would like to add row and colume in my adobe form but i think i couldn't able to add due to the form is not in dynamic form.
i insert your code that you provided in my wdDoModifyView
if(firstTime)
     IWDInteractiveForm iForm = (IWDInteractiveForm)view.getElement("TrainingRequestForm");
     iForm.setDynamicPDF(true);
however, it pop me with this error:
The method setDynamicPDF(boolean) for the type IWDInteractiveForm is deprecated.
do you know the reason? and how to solve it?

Similar Messages

  • How set adobe form as dynamic *urgent*

    Hi,
    I wish to know how to set adobe form as dynamic in web dynpro 7 as my add and delete rows button can't work in web dynpro but can work successfully in adobe formDesigner.
    thank you

    Hi weilin,
    I'm not an expert on Java Webdynpro but i can give you my code in an Abap WebDynpro where i made it and where that works .
    Hope this will help you.
    Best regards.
    <i>
    In the view where my forms have to be display,
    go to methodWDDOMODIFYVIEW
    Here write this code according to Java requirement
    DATA:
        lr_interactive_form TYPE REF TO cl_wd_interactive_form,
        lr_method_handler   TYPE REF TO if_wd_iactive_form_method_hndl.
      CHECK first_time = abap_true.
      lr_interactive_form ?= view->get_element( 'ADOBE' ).
      lr_method_handler ?= lr_interactive_form->_method_handler.
      lr_method_handler->set_legacy_editing_enabled( abap_true ).
      lr_method_handler->set_hide_toolbars( abap_true ).
    Then you form will be display as interactive in your page
    </i>

  • Dimensions of Adobe Form element - dynamic?

    Hi,
    I have a Java WebDynpro Application that contains a ViewSet, with an adobe form in one of the cells. I would like to have the entire Adobe application frame(including the page number at the bottom) dynamically fit within the real-estate available on a given PC, but I am having issues accomplishing this.
    It seems that when defining the form element, it forces you to specify an exact vertical height of the form, say 700px, instead of allowing you to enter 100%, which to me would indicate that it should fill the available vertical space in the grid. When I enter 100% it shows only ~ 1 inch of my form. I can enter a fixed height, but the form displayed may be either too big (a 2nd scroll bar is provided by the WebDynpro in addition to the Adobe scroll bar) or too small (lots of unused space on the screen) for a given pc.
    Are there any tricks for configuring the form to have the height adjusted to the PC screen real estate dynamically? Is this a limitation within the View Set of the WebDynpro?
    Thanks in advance.

    Hi Todd,
    What we did is calculate the height and width based on the resolution of the client screen. Instead of directly accessing the Web Dynpro application via an iView, we merely access a portal application that redirects to the Web Dynpro iView. The portal application passes the screen resolution, obtained by some javascript (<i>screen.height</i> and <i>screen.width</i>), to the Web Dynpro application as URL parameters. Based on that information, the Web Dynpro application can calculate the optimal height of the form. It's far from perfect, but since we open the Web Dynpro application in a new, maximized, screen, it works reasonably well (although the tabs in IE7 do cause some trouble).
    Kind regards,
    Sigiswald

  • Finding adobe form name dynamically

    Hi Guys,
    I am working on Adobe forms.
    I am using the same interface to multiple forms.
    I want to find the currently executing form name dynamically in the form interface.
    Based on the form i need to display the different data for some fields.
    Regards,
    Ramesh

    Hi Larissa,
    You can use the below code to resolve the naming issue:
    Download_File is node mapped to the download link for PDF.
                             //Get the Attribute Info of Attribute for PDF
                              IWDAttributeInfo attrinfo = wdContext.nodeDownload_File().getNodeInfo().getAttribute(IPrivateViewName.IDownload_FileElement.DATA);
                              ISimpleTypeModifiable simpletype = attrinfo.getModifiableSimpleType();
                             //Get modifiable Binary Type
                             IWDModifiableBinaryType binarytype = (IWDModifiableBinaryType)simpletype;
                             //Set the File Name
                             binarytype.setFileName("FileName");
                             //Set the Mime Type to PDF
                             binarytype.setMimeType(WDWebResourceType.PDF);
    Hope this resolves the issue...
    Regards,
    Arafat

  • How does Adobe Forms Central base their automated page breaks when distributing to a PDF form?

    OR
    How can I define those page breaks before Adobe Forms Central created the PDF. I have attempted to "insert" a page break within the form; however, when distributing this form to be created as a PDF, the PDF is still placing the auto-generated page break wherever it wants.
    Is it possible to move these auto generated breaks once the PDF form is created?
    Thank you!

    Did you add the page breaks while in Web View or Page View? FormsCentral uses "web view" as the default, but uses the "page view" to show where the PDF will have page breaks. Go to the menu bar on the top right, select "view," and then select "page view." You  should be able to see page breaks here, and move them where you'd like them. It won't affect what people see on the web, just in the PDF.

  • How could Adobe Form handle multiple Include Text

    Hi all,
    In abap program, I have declared a global structure *t166k and pass it to adobe form. However, the the passing parameter *t166k need to based on the looping xt166k as shown below. If this is the case, how could I handle such multiple include text?
    Thanks in advance.
        loop at xt166k where tdid ne 'F17'.
          move xt166k to t166k.
          case t166k-tdobject.
            when 'EKKO'.
              t166k-txnam(10)   = ekko-ebeln.
            when 'LFA1'.
              t166k-txnam(10)   = ekko-lifnr.
            when 'LFM1'.
              t166k-txnam(10)   = ekko-lifnr.
              t166k-txnam+10(4) = ekko-ekorg.
          endcase.
          perform get_header_text.
        endloop.
    form get_header_text.
      if t166u-druvo = '1'.
        *t166k = t166k.
    endform.                    " GET_HEADER_TEXT
    In Adobe Form
    General     
    Name     GV_HEADER_TEXT
    Description     Header Text
    Status     Inactive
    Text     
    Text Type     Include Text
    Include Text     
    Text Name     T166K-TXNAM
    Text Object     T166K-TDOBJECT
    Text ID     T166K-TDID
    Text Language     FORM_LANGU

    Are you using a custom driver program?
    If yes, then loop the function module with the number of copies you have.
    the copy name should be a variable which should be passed to the form in the loop change the value of the copy control accordingly.
    Please let me know, if you see any issues.
    Thanks,
    Rakesh

  • How to check how many adobe forms are in use cross systems or locally

    Hello,
    we want to check that we are not using to many adobe forms within our SAP system. Is there an easy way to get this information out of sap ?
    please guide. (TC or  Report)  
    thanks
    JR

    Each time you open a new browser window you will get a new session.
    attributes stored in one session are not accesible from the other one, so they can not be overwritten
    Regards
    Tilo

  • Adobe Forms and Dynamic Images

    Hi all,
    I have a table in my Interactive Form and I need to add a dynamic image for each row of this table according with the URL field of my node, so i've done the steps of the tutorial "Dynamic Non-Interactive PDF Form", adding a image field, setting none for default binding, setting the url field as $record.Images[*].URL and then, adding the following FormCalc expression to initialize the image: this.value.image.href = xfa.resolveNode(this.value.image.href).value;
    Well, my node Images return 3 records and when I run the app, the following message returns:
    Script failed (language is formcalc; context is xfa[0].form[0].dataSource[0].Images[0].subImageTable[0].subImageRow[0].imageField[0])
    script=this.value.image.href = xfa.resolveNode(this.value.image.href).value;
    Error: SOM Expression returned list when single result was expected
    Script failed (language is formcalc; context is xfa[0].form[0].dataSource[0].Images[0].subImageTable[0].subImageRow[1].imageField[0])
    script=this.value.image.href = xfa.resolveNode(this.value.image.href).value;
    Error: SOM Expression returned list when single result was expected
    Script failed (language is formcalc; context is xfa[0].form[0].dataSource[0].Images[0].subImageTable[0].subImageRow[2].imageField[0])
    script=this.value.image.href = xfa.resolveNode(this.value.image.href).value;
    Error: SOM Expression returned list when single result was expected
    So, anyone here knows how to add a dynamic image to a table row?
    Thanks in advance
    []'s

    I solved it now, just changing the FormCalc expression.
    Instead of using the expression:
    this.value.image.href = xfa.resolveNode(this.value.image.href).value;
    I used this:
    this.value.image.href = xfa.record.Images.URL;
    The URL value of Image Field, in this case is:
    <b>$record.Images[*].URL</b>
    And, to finish, I needed to add a Text Field bounded to  <b>$record.Imagens[*].URL</b>, case else the image doesn't appear.
    That's it!

  • How to add form fields dynamically

    Hi
    I have a form with several fields, and in one section I have one check box and two text fields in a row and also have one button "Add more"
    when I click on the Add more button I need to create one more row with the above fields dynamically.
    how can I do it? Could some one suggest me with any code snippet?
    thanks,
    Suman K

    Use custom tags.
    Create all the new fields on the JSP page using custom tags ... i,e through Java code.

  • How create tabular form using dynamic sql

    I have 50 tables and I need create application for support all these tables, I don't want to create 50 tubular regions.
    I want create list of tables; user pick one of them and I want generate dynamic tabular form for suppot.
    Is it possible?
    Thanks Mary

    Hi Mary,
    It is possible, but you would have to control everything manually. Have a look at: [http://apex.oracle.com/pls/otn/f?p=33642:252] - I've included instructions explaining how this has been created
    Andy

  • ADOBE Forms (Creating Dynamic Forms)

    I am currently creating a form using Adobe Professional 8. IT is three pages each created on separate form files (.pdfx). I combine the files into a PDF package.
    I want to link up the pages together so that when the user types in a value on the first page that it also appears on another box on the second and third page.
    I also want it to be filled using Adobe Acrobat Reader and saved, then submitted.
    If you want me to send you the forms so you know what im talking about please let me know.
    Let me know if you have any questions, comments, or concerns.
    Thanks for all your help in advance!
    Chris P.

    Ensure the fields which are required to be filled on multiple pages have
    the same field name, use the distribute form option and you're done.
    Jon

  • Web dynpro Abap - Adobe Form Table Dynamic

    hi Friends ,
    I created one table in ADOBE interactive form  and i kept two button for row add and row delete in table
    it is working fine in Adobe fomr Preview form
    but i deployed in Web dynpro abap this functionality is not working is there any reason
    Pls give suggestion
    Regards
    Krishnan R.

    Krishnan,
    Check if the form is Interactive and also  have you installed Adobe Reader Rights on the server. If not please check note 736902 and ask BASIS to apply them.
    Chintan

  • How set Access forms to lists in Sharepoint?

    I need to create new view for list like Access form in Sharepoint. I go to Lists-Parameters -> Create View -> Access view.
    Then I create form in Access and save in Sharepoint site. This file have saved like .accdb. How I can choose this view for default view for my list?

    Hi,
    According to your post, my understanding is that you wanted to use the Access view in a list.
    There is no OOB way to use the Access view as a default view in SharePoint 2010.
    In SharePoint 2010, when create an view in Access 2010, you can only choose to ‘Save to SharePoint Site’ to save the .accdb file to a SharePoint document library.
    User then can access the reports or forms in the document library instead. The .accdb file will be opened in Access application.
    If you publish the Access database to Access Service, it will create a new site for the Access database, you can view the forms and reports in browser.
    For more information about publish a access database to SharePoint, you can refer to this site:
    SharePoint 2010 and Access 2010: http://www.youtube.com/watch?v=Dq-tDuPfgZc
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • How to make form objects dynamically fit into window sizes?

    Hi,
    Form objects are always static. i.e, stick to the disigning time window size/resolution.
    When the resolution changes, the form objects will not strech to the new window size.
    Many of the clients are unhappy with this incapable feature.
    Is there any way to come out of this problem?
    Thanks and Regards,
    Vishwanath

    In teh hierarchy view - click on the Master Page/ Page1. Now on the object palette on the Master Page Tab you can choose a Paper Type. If you scroll to the bottom of the list you can choose a Custom size. The width and height dimensions are now available to you. The UI in designer limits you to 59 in. If you need more than that there is a way to get bigger but you have to do it in the native XML format. Let me know if you need more than that. Here is a modified sample.
    Paul

  • How to handle Adobe Form - Dynamic Tables.

    Experts:
    I am new to Web DynPro for ABAP and Adobe Interactive forms.
    I have created a Adobe form with dynamic table. When I submit the form, WD4A is able to read only the first row of the table. Other rows are getting lost.
    I thought just binding with the context will trasfer data from Adobe to WD4A. But it is not happending.
    Do I need to write any code in WD4A and any script in Adobe Designer?
    Can any one send me a sample code (ABAP and JavaScript). Even link to that will be very useful.
    Thanks,
    Vijai

    Thomas:
    My context is as follows.
    <CHANGING>
      <REQUISITION_ITEMS>
        <ELEMENT..1>
        <ELEMENT..2>
        <ELEMENT..3>
    The cardinality of <CHANGING> node is 1..1 and the cardinality of  <Requisition_items> is 1..n.
    Thanks
    Vijai

Maybe you are looking for

  • PSE 12 on Mac OS in 32 bit mode

    Can PSE 12 on Mac OS X Mavericks be changed to run in 32 bit mode?  My Epson v550 scanner needs it to launch in PSE 12.

  • How can I buy Snow Leopard in Russia?

    I have MacBookPro '13 bought in 2008. MacOS is Leopard. Now I would like to upgrade to Snow Leopard, since Lion is too 'heavy' for my computer (I work with graphics a lot). However, no Apple reseller in St.Petersburg (Russia) would sell me Snow Leopa

  • I  cannot login to ITunes store when trying to set up my Apple TV

    I type in my Apple ID and then my password when logging in to my Apple TVbut get the message "Cannot connect to ITunes store". I have verified my id and password. I have reset both my router and my Apple TV. Any help would be appreciated. Cheers, Reg

  • Moving between windows

    I recently ourchased a new mac and am unable to tab between windows. It used to be that by using command and shift, ti would move between similar windows ie. safari Has this changed?

  • System-wide extension change

    I have a request to change every extension starting with 20xx to 22xx for every phone in the system. Is there any way to do this besides manually? call manager is 4.1.3 thanks rob