<?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>topic Re: Not able to create interactive pdf in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994118#M954199</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nayan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I allready call function FP_FUNCTION_MODULE_NAME, that is the suitable one for interactive PDF Forms. This is not a Smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Jun 2008 12:51:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-17T12:51:40Z</dc:date>
    <item>
      <title>Not able to create interactive pdf</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994114#M954195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not able to create an offline pdf using exclusively ABAP. I tried using the tutorial "Offline Interactive Forms Using ABAP" but i'm missing something. I allready created the form using transaction SFP, and my ABAP program is like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ztest_interactive_forms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: wa_lfa1 LIKE lfa1.&lt;/P&gt;&lt;P&gt;DATA: fm_name TYPE funcname.&lt;/P&gt;&lt;P&gt;DATA: fp_outputparams TYPE sfpoutputparams.&lt;/P&gt;&lt;P&gt;DATA: fp_docparams TYPE sfpdocparams.&lt;/P&gt;&lt;P&gt;DATA: fp_formoutput TYPE fpformoutput.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_lifnr LIKE lfa1-lifnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE lifnr name1 name2 ort01 FROM lfa1 INTO CORRESPONDING FIELDS OF wa_lfa1 WHERE lifnr = p_lifnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;first get name of the generated function module&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;i_name = 'ZTEST_NCS'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;e_funcname = fm_name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Set output parameters and open spool job&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fp_outputparams-nodialog = 'X'. " suppress printer dialog popup&lt;/P&gt;&lt;P&gt;fp_outputparams-getpdf = 'X'. " launch print preview&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'FP_JOB_OPEN'&lt;/P&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;P&gt;ie_outputparams = fp_outputparams&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;cancel = 1&lt;/P&gt;&lt;P&gt;usage_error = 2&lt;/P&gt;&lt;P&gt;system_error = 3&lt;/P&gt;&lt;P&gt;internal_error = 4&lt;/P&gt;&lt;P&gt;OTHERS = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Set form language and country (-&amp;gt;form locale)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fp_docparams-langu = 'E'.&lt;/P&gt;&lt;P&gt;fp_docparams-country = 'US'.&lt;/P&gt;&lt;P&gt;fp_docparams-fillable = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Now call the generated function module&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION fm_name&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;/1bcdwb/docparams = fp_docparams&lt;/P&gt;&lt;P&gt;vendor_data = wa_lfa1&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;/1bcdwb/formoutput = fp_formoutput&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;usage_error = 1&lt;/P&gt;&lt;P&gt;system_error = 2&lt;/P&gt;&lt;P&gt;internal_error = 3&lt;/P&gt;&lt;P&gt;OTHERS = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Close spool job&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'FP_JOB_CLOSE'&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;usage_error = 1&lt;/P&gt;&lt;P&gt;system_error = 2&lt;/P&gt;&lt;P&gt;internal_error = 3&lt;/P&gt;&lt;P&gt;OTHERS = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When function module "fm_name" is called, variable fp_formoutput is returned blank (0 pages).&lt;/P&gt;&lt;P&gt;Can anyone help or suggest something ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nuno Santos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 12:19:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994114#M954195</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T12:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to create interactive pdf</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994115#M954196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     Call SSF_FUNCTION_MODULE_NAME first by passing the Smartform name there. This will return a function module name which gets created for ur smartform. Then use this FM name and call the it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Nayan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 12:27:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994115#M954196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T12:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to create interactive pdf</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994116#M954197</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;If your necessity is to use the form i dont see the need to use importing comment importing part.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nisrin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 12:35:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994116#M954197</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T12:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to create interactive pdf</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994117#M954198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nisrin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need it further in the code to e-mail the pdf object as an attachment. Nevertheless, even if i simply commented the IMPORT statement wouldn't solve the problem. It would still do nothing, because the function is not returning any error, but it is also not returning any pdf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 12:50:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994117#M954198</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T12:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to create interactive pdf</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994118#M954199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nayan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I allready call function FP_FUNCTION_MODULE_NAME, that is the suitable one for interactive PDF Forms. This is not a Smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 12:51:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994118#M954199</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T12:51:40Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to create interactive pdf</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994119#M954200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;First try executing the function module in SFP itself.&lt;/P&gt;&lt;P&gt;Then you can find if it is the problem with FM or program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before that you should have adobe reader installed in oyur system to see the output.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bindu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 13:00:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994119#M954200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T13:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to create interactive pdf</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994120#M954201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bindu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did what you suggested, and everything worked fine, that is, i tested the pdf in SFP transaction directly. The function module was called and the popup with device choice and print preview came out perfectly. So it must be something i'm doing wrong in the program.&lt;/P&gt;&lt;P&gt;When i debug deeper, i get an ADS error on closure of the form.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 13:58:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994120#M954201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T13:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to create interactive pdf</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994121#M954202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nuno,&lt;/P&gt;&lt;P&gt;  It is due to some setup problem,&lt;/P&gt;&lt;P&gt;Not because of your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bindu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 14:01:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994121#M954202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T14:01:47Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to create interactive pdf</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994122#M954203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nuno,&lt;/P&gt;&lt;P&gt;ADS error means ADOBE server problem.&lt;/P&gt;&lt;P&gt;IF ADOBE server is busy also you get some ADS error.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bindu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 14:03:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994122#M954203</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T14:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to create interactive pdf</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994123#M954204</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;The default export parameter is /1bcdwb/formoutput of type&lt;/P&gt;&lt;P&gt;fpformoutput. This parameter has to be evaluated in the calling program if the&lt;/P&gt;&lt;P&gt;resulting document needs to be handled by the program itself. Export parameters&lt;/P&gt;&lt;P&gt;can be added only for those interfaces that are compatible with Smart Forms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is also only one standard exporting parameter of the form's generated&lt;/P&gt;&lt;P&gt;function module: /1bcdwb/formoutput of type fpformoutput. It contains three&lt;/P&gt;&lt;P&gt;fields:&lt;/P&gt;&lt;P&gt;. pdf: Contains the PDF data in hexadecimal form if parameter getpdf of&lt;/P&gt;&lt;P&gt;function module FP_JOB_OPEN is set to 'X'. This is required if your&lt;/P&gt;&lt;P&gt;program has a download functionality or if you want to pass on your PDF to&lt;/P&gt;&lt;P&gt;Business Communication Service to fax or e-mail it.&lt;/P&gt;&lt;P&gt;Detail information on Business Communication Service can be found in the&lt;/P&gt;&lt;P&gt;SAP Library, Topic .Generic Business Tools for Application Developers&lt;/P&gt;&lt;P&gt;(BC-SRV-GBT).. See also standard demo reports BCS_EXAMPLE_...&lt;/P&gt;&lt;P&gt;. pdl: contains the PDL data in hexadecimal form if parameter getpdl of&lt;/P&gt;&lt;P&gt;function module FP_JOB_OPEN is set to 'X'.&lt;/P&gt;&lt;P&gt;. pages: returns the number of pages that have been printed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is also only one standard exporting parameter of the form's generated&lt;/P&gt;&lt;P&gt;function module: /1bcdwb/formoutput of type fpformoutput. It contains three&lt;/P&gt;&lt;P&gt;fields:&lt;/P&gt;&lt;P&gt;. pdf: Contains the PDF data in hexadecimal form if parameter getpdf of&lt;/P&gt;&lt;P&gt;function module FP_JOB_OPEN is set to 'X'. This is required if your&lt;/P&gt;&lt;P&gt;program has a download functionality or if you want to pass on your PDF to&lt;/P&gt;&lt;P&gt;Business Communication Service to fax or e-mail it.&lt;/P&gt;&lt;P&gt;Detail information on Business Communication Service can be found in the&lt;/P&gt;&lt;P&gt;SAP Library, Topic .Generic Business Tools for Application Developers&lt;/P&gt;&lt;P&gt;(BC-SRV-GBT).. See also standard demo reports BCS_EXAMPLE_...&lt;/P&gt;&lt;P&gt;. pdl: contains the PDL data in hexadecimal form if parameter getpdl of&lt;/P&gt;&lt;P&gt;function module FP_JOB_OPEN is set to 'X'.&lt;/P&gt;&lt;P&gt;. pages: returns the number of pages that have been printed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;. getpdf: If set to 'X', the /1bcdwb/formoutput-pdf field of the form's generated&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;function module will contain the PDF data in hexadecimal form. This is&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;helpful for further processing the PDF file. A preview will not be possible if&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;getpdf = 'X'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will be helpfull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Adil&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Syed  Abdul Adil on Jun 17, 2008 4:23 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Syed  Abdul Adil on Jun 17, 2008 4:24 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 14:13:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994123#M954204</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T14:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to create interactive pdf</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994124#M954205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nuno,&lt;/P&gt;&lt;P&gt;    The parameter getpdf should do the job of getting the pdf file.&lt;/P&gt;&lt;P&gt;But as you need to send the pdf via mail check with sfpjoboutput under fp_jobclose , this would retrieve the spool id.&lt;/P&gt;&lt;P&gt;I'll try other options too..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nisrin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 14:21:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-able-to-create-interactive-pdf/m-p/3994124#M954205</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T14:21:28Z</dc:date>
    </item>
  </channel>
</rss>

