<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: Making selective fields editable in adobe form [using web dynpro] in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaa-p/6419757#M2348097</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sonali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The form you are trying to develop is an interactive form. It does not mean that you have to save data to database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is your Form Interface XML based? &lt;/P&gt;&lt;P&gt;Go to the layout of the Form and from the menu option&lt;/P&gt;&lt;P&gt;Utilities -&amp;gt;insert the WebDynpro script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also create  interactive form in abap workbench using SFP transaction with interface type as ABAP dictionary based.&lt;/P&gt;&lt;P&gt;There is one parameter called &lt;STRONG&gt;/1BCDWB/DOCPARAMS&lt;/STRONG&gt; TYPE SFPDOCPARAMS. Set &lt;STRONG&gt;Fillable&lt;/STRONG&gt; field of this parameter as 'X' in driver program that generate the PDF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Nov 2009 10:24:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-11-24T10:24:04Z</dc:date>
    <item>
      <title>Making selective fields editable in adobe form [using web dynpro]</title>
      <link>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaq-p/6419751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have displayed an adobe form using web dynpro application. But I have to make certain fields (not all fields) on this adobe form editable. I dont want to make this adobe form interactive because I dont have to save any data in database. The data entered in the editable fields will be saved as a pdf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I did so far:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) The fields which I want as editable,  I have given there type as "User entered/ optional" &amp;amp; for rest of the fields I have given type as "Read only".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) In web dynpro, I have enabled the adobe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) This is not making the fields editable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4) If I write the following code in my webdynpro method WDDOMODIFYVIEW, then my data coming from adobe is not getting displayed even though the fields get selectively editable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*data: LR_INTERACTIVE_FORM type ref to CL_WD_INTERACTIVE_FORM,&lt;/P&gt;&lt;P&gt;*LR_METHOD_HANDLER type ref to IF_WD_IACTIVE_FORM_METHOD_HNDL.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;*check first_time = abap_true.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;*LR_INTERACTIVE_FORM ?= VIEW-&amp;gt;GET_ELEMENT('adobe').&lt;/P&gt;&lt;P&gt;*LR_METHOD_HANDLER ?= LR_INTERACTIVE_FORM-&amp;gt;_METHOD_HANDLER.&lt;/P&gt;&lt;P&gt;*LR_METHOD_HANDLER-&amp;gt;SET_LEGACY_EDITING_ENABLED( abap_true ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any inputs regarding this??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 13:22:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaq-p/6419751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-18T13:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: Making selective fields editable in adobe form [using web dynpro]</title>
      <link>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaa-p/6419752#M2348092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I don´t think it is possible to let the user edit the form and have not set the form as interactive. I doubt this. If you need some input, create a view preceding the adobe form view in WD app to collect the data from the users.&lt;/P&gt;&lt;P&gt;Regards, Otto&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 13:25:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaa-p/6419752#M2348092</guid>
      <dc:creator>OttoGold</dc:creator>
      <dc:date>2009-11-18T13:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: Making selective fields editable in adobe form [using web dynpro]</title>
      <link>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaa-p/6419753#M2348093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No the input is required on the pdf form itself for some fields, so this wont solve my problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have seen some forms which have 1-2 fields editable &amp;amp; rest are display fields &amp;amp; their interface type is "ABAP dictionary based". Havent been able to figure out how its been done though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 08:42:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaa-p/6419753#M2348093</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-19T08:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: Making selective fields editable in adobe form [using web dynpro]</title>
      <link>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaa-p/6419754#M2348094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sonali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A print PDF (i.e. a non-interactive) sets all fields to read-only per definition. So there is no other way than using an interactive form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Juergen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Nov 2009 09:11:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaa-p/6419754#M2348094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-20T09:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: Making selective fields editable in adobe form [using web dynpro]</title>
      <link>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaa-p/6419755#M2348095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sonali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont think WebDynpro can control the behavior of Adobe forms, Try using the FormCalc for performing the action you want. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Poojith MV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Nov 2009 09:46:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaa-p/6419755#M2348095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-20T09:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: Making selective fields editable in adobe form [using web dynpro]</title>
      <link>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaa-p/6419756#M2348096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sonali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot have an editable form with interface type as "ABAP dictionary based". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if you need the form to be editable for a couple fields as well then also you will have to create an Interactive form which will allow you to edit the required fields. All required "DISPLAY ONLY" fields can be set to read-only while you design the form. And for the other set of fields which are dynamic as per your description you can use the coding in Javascript or FormCalc (as per your convenience) to set their behavior.&lt;/P&gt;&lt;P&gt;For the interactive forms Interface type would be "XML Schema Based".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you have any queries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Kunjal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Nov 2009 06:04:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaa-p/6419756#M2348096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-23T06:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: Making selective fields editable in adobe form [using web dynpro]</title>
      <link>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaa-p/6419757#M2348097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sonali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The form you are trying to develop is an interactive form. It does not mean that you have to save data to database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is your Form Interface XML based? &lt;/P&gt;&lt;P&gt;Go to the layout of the Form and from the menu option&lt;/P&gt;&lt;P&gt;Utilities -&amp;gt;insert the WebDynpro script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also create  interactive form in abap workbench using SFP transaction with interface type as ABAP dictionary based.&lt;/P&gt;&lt;P&gt;There is one parameter called &lt;STRONG&gt;/1BCDWB/DOCPARAMS&lt;/STRONG&gt; TYPE SFPDOCPARAMS. Set &lt;STRONG&gt;Fillable&lt;/STRONG&gt; field of this parameter as 'X' in driver program that generate the PDF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Nov 2009 10:24:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaa-p/6419757#M2348097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-24T10:24:04Z</dc:date>
    </item>
    <item>
      <title>Re: Making selective fields editable in adobe form [using web dynpro]</title>
      <link>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaa-p/6419758#M2348098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved on my own.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Nov 2009 09:31:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaa-p/6419758#M2348098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-27T09:31:28Z</dc:date>
    </item>
    <item>
      <title>Re: Making selective fields editable in adobe form [using web dynpro]</title>
      <link>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaa-p/6419759#M2348099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, then please post the solution as well so that it benefits all of us.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Chintan&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Nov 2009 05:24:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaa-p/6419759#M2348099</guid>
      <dc:creator>chintan_virani</dc:creator>
      <dc:date>2009-11-30T05:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Making selective fields editable in adobe form [using web dynpro]</title>
      <link>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaa-p/6419760#M2348100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like I had mentioned using the following code in my webdynpro method WDDOMODIFYVIEW, my data coming from adobe form was not getting displayed even though the fields get selectively editable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*data: LR_INTERACTIVE_FORM type ref to CL_WD_INTERACTIVE_FORM,&lt;/P&gt;&lt;P&gt;*LR_METHOD_HANDLER type ref to IF_WD_IACTIVE_FORM_METHOD_HNDL.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;*check first_time = abap_true.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;*LR_INTERACTIVE_FORM ?= VIEW-&amp;gt;GET_ELEMENT('adobe').&lt;/P&gt;&lt;P&gt;*LR_METHOD_HANDLER ?= LR_INTERACTIVE_FORM-&amp;gt;_METHOD_HANDLER.&lt;/P&gt;&lt;P&gt;*LR_METHOD_HANDLER-&amp;gt;SET_LEGACY_EDITING_ENABLED( abap_true ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I kept this code &amp;amp; I also kept the Interface type "ABAP Dictionary based".&lt;/P&gt;&lt;P&gt;Additionally in Webdynpro, I used adobe form generated FM to get the adobe content &amp;amp; passed it to the "content" parameter of my adobe component in webdynpro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Nov 2009 05:49:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/making-selective-fields-editable-in-adobe-form-using-web-dynpro/qaa-p/6419760#M2348100</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-30T05:49:04Z</dc:date>
    </item>
  </channel>
</rss>

