<?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: SAP SmartForms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-smartforms/m-p/2620048#M601609</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;try this link it will help to solve your problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.saptechnical.com/Tutorials/Smartforms/SFMain.htm" target="test_blank"&gt;http://www.saptechnical.com/Tutorials/Smartforms/SFMain.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward points if helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Aug 2007 07:36:58 GMT</pubDate>
    <dc:creator>Vijay</dc:creator>
    <dc:date>2007-08-07T07:36:58Z</dc:date>
    <item>
      <title>SAP SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-smartforms/m-p/2620046#M601607</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;Can anyone guide me to get the output of the smartform to pdf.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2007 07:33:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-smartforms/m-p/2620046#M601607</guid>
      <dc:creator>karthik_rajaspic</dc:creator>
      <dc:date>2007-08-07T07:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-smartforms/m-p/2620047#M601608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;fm_name TYPE RS38L_FNAM, "Smart Forms: FM Name&lt;/P&gt;&lt;P&gt;sf_name TYPE TDSFNAME&lt;/P&gt;&lt;P&gt;value 'YOUR_FORM_NAME', "Smart Forms: Form Name&lt;/P&gt;&lt;P&gt;P_OUTPUT_OPTIONS TYPE SSFCOMPOP,&lt;/P&gt;&lt;P&gt;P_JOB_OUTPUT_INFO TYPE SSFCRESCL,&lt;/P&gt;&lt;P&gt;P_CONTROL_PARAMETERS TYPE SSFCTRLOP,&lt;/P&gt;&lt;P&gt;P_LANGUAGE TYPE SFLANGU value 'E',&lt;/P&gt;&lt;P&gt;P_E_DEVTYPE TYPE RSPOPTYPE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;P_BIN_FILESIZE TYPE I,&lt;/P&gt;&lt;P&gt;P_BIN_FILE TYPE XSTRING,&lt;/P&gt;&lt;P&gt;P_OTF type table of ITCOO,&lt;/P&gt;&lt;P&gt;P_DOCS type table of DOCS,&lt;/P&gt;&lt;P&gt;P_LINES type table of TLINE,&lt;/P&gt;&lt;P&gt;name type string,&lt;/P&gt;&lt;P&gt;path type string,&lt;/P&gt;&lt;P&gt;fullpath type string,&lt;/P&gt;&lt;P&gt;filter type string,&lt;/P&gt;&lt;P&gt;guiobj type ref to cl_gui_frontend_services,&lt;/P&gt;&lt;P&gt;uact type i,&lt;/P&gt;&lt;P&gt;filename(128).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="--------------------" /&gt;&lt;P&gt; GET SMARTFORM FUNCTION MODULE NAME ---&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;FORMNAME = sf_name&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;FM_NAME = fm_name&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;NO_FORM = 1&lt;/P&gt;&lt;P&gt;NO_FUNCTION_MODULE = 2&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;OTHERS = 3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SSF_GET_DEVICE_TYPE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;I_LANGUAGE = P_LANGUAGE&lt;/P&gt;&lt;P&gt;I_APPLICATION = 'SAPDEFAULT'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;E_DEVTYPE = P_E_DEVTYPE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P_OUTPUT_OPTIONS-XSFCMODE = 'X'.&lt;/P&gt;&lt;P&gt;P_OUTPUT_OPTIONS-XSF = SPACE.&lt;/P&gt;&lt;P&gt;P_OUTPUT_OPTIONS-XDFCMODE = 'X'.&lt;/P&gt;&lt;P&gt;P_OUTPUT_OPTIONS-XDF = SPACE.&lt;/P&gt;&lt;P&gt;P_OUTPUT_OPTIONS-TDPRINTER = P_E_DEVTYPE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P_CONTROL_PARAMETERS-NO_DIALOG = 'X'.&lt;/P&gt;&lt;P&gt;P_CONTROL_PARAMETERS-GETOTF = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;****...................................PRINTING.........................&lt;/P&gt;&lt;P&gt;CALL FUNCTION fm_name&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;CONTROL_PARAMETERS = P_CONTROL_PARAMETERS&lt;/P&gt;&lt;P&gt;OUTPUT_OPTIONS = P_OUTPUT_OPTIONS&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;(....) &amp;lt;--- your form import parameters&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;JOB_OUTPUT_INFO = P_JOB_OUTPUT_INFO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P_OTF[] = P_JOB_OUTPUT_INFO-OTFDATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****...................................CONVERT TO PDF...............&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERT_OTF_2_PDF'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;BIN_FILESIZE = P_BIN_FILESIZE&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;OTF = P_OTF&lt;/P&gt;&lt;P&gt;DOCTAB_ARCHIVE = P_DOCS&lt;/P&gt;&lt;P&gt;LINES = P_LINES&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;ERR_CONV_NOT_POSSIBLE = 1&lt;/P&gt;&lt;P&gt;ERR_OTF_MC_NOENDMARKER = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate 'xxxx' '.pdf' into name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****..................................REQUEST FILE NAME.................&lt;/P&gt;&lt;P&gt;create object guiobj.&lt;/P&gt;&lt;P&gt;call method guiobj-&amp;gt;file_save_dialog&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;default_extension = 'pdf'&lt;/P&gt;&lt;P&gt;default_file_name = name&lt;/P&gt;&lt;P&gt;file_filter = filter&lt;/P&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;P&gt;filename = name&lt;/P&gt;&lt;P&gt;path = path&lt;/P&gt;&lt;P&gt;fullpath = fullpath&lt;/P&gt;&lt;P&gt;user_action = uact.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if uact = guiobj-&amp;gt;action_cancel.&lt;/P&gt;&lt;P&gt;exit.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move fullpath to filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****..................................DOWNLOAD AS FILE................&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'WS_DOWNLOAD'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;BIN_FILESIZE = P_BIN_FILESIZE&lt;/P&gt;&lt;P&gt;FILENAME = filename&lt;/P&gt;&lt;P&gt;FILETYPE = 'BIN'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;DATA_TAB = P_LINES&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;FILE_OPEN_ERROR = 1&lt;/P&gt;&lt;P&gt;FILE_WRITE_ERROR = 2&lt;/P&gt;&lt;P&gt;INVALID_FILESIZE = 3&lt;/P&gt;&lt;P&gt;INVALID_TYPE = 4&lt;/P&gt;&lt;P&gt;NO_BATCH = 5&lt;/P&gt;&lt;P&gt;UNKNOWN_ERROR = 6&lt;/P&gt;&lt;P&gt;INVALID_TABLE_WIDTH = 7&lt;/P&gt;&lt;P&gt;GUI_REFUSE_FILETRANSFER = 8&lt;/P&gt;&lt;P&gt;CUSTOMER_ERROR = 9&lt;/P&gt;&lt;P&gt;NO_AUTHORITY = 10&lt;/P&gt;&lt;P&gt;OTHERS = 11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2007 07:35:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-smartforms/m-p/2620047#M601608</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-07T07:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-smartforms/m-p/2620048#M601609</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;try this link it will help to solve your problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.saptechnical.com/Tutorials/Smartforms/SFMain.htm" target="test_blank"&gt;http://www.saptechnical.com/Tutorials/Smartforms/SFMain.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward points if helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2007 07:36:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-smartforms/m-p/2620048#M601609</guid>
      <dc:creator>Vijay</dc:creator>
      <dc:date>2007-08-07T07:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-smartforms/m-p/2620049#M601610</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;There is a way to download smartform in PDF format. &lt;/P&gt;&lt;P&gt;Please do the following: &lt;/P&gt;&lt;P&gt;1. Print the smartform to the spool. &lt;/P&gt;&lt;P&gt;2. Note the spool number. &lt;/P&gt;&lt;P&gt;3. Download a PDF file (Acrobat Reader) version of the spool by running Program RSTXPDFT4 and entering the &lt;/P&gt;&lt;P&gt;noted spool number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sipra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2007 07:37:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-smartforms/m-p/2620049#M601610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-07T07:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-smartforms/m-p/2620050#M601611</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;PRE&gt;&lt;CODE&gt;**Set printer parameters

control_param-no_dialog = 'X'.
control_param-preview = ''.
control_param-getotf = 'X'.
output_opt-tddest = 'LOCL'.
output_opt-tdimmed = ''.
output_opt-tdnewid = ''.
output_opt-tdnoprint = ''.
output_opt-tdnoprev = 'X'.


*** Get smartform name

call function 'SSF_FUNCTION_MODULE_NAME'
EXPORTING
formname = formname
variant = ' '
direct_call = ' '
IMPORTING
fm_name = fm_name
EXCEPTIONS
no_form = 1
no_function_module = 2
others = 3.
if sy-subrc &amp;lt;&amp;gt; 0.
message id sy-msgid type sy-msgty number sy-msgno
with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
endif.


Call smartform

call function fm_name
EXPORTING
control_parameters = control_param
output_options = output_opt
user_settings = ' '
wa_head = wa_head
IMPORTING
job_output_info = job_info
TABLES
int_detail = int_detail
EXCEPTIONS
formatting_error = 1
internal_error = 2
send_error = 3
user_canceled = 4
others = 5.

Note pass the job info file you got from above function module
data: int_docs type standard table of docs,
int_line type standard table of tline.


call function 'CONVERT_OTF_2_PDF'
IMPORTING
bin_filesize = filesize
TABLES
otf = job_info-otfdata
doctab_archive = int_docs
lines = int_line
EXCEPTIONS
err_conv_not_possible = 1
err_otf_mc_noendmarker = 2
others = 3.

USE below function module

all method cl_gui_frontend_services=&amp;gt;gui_download
exporting
bin_filesize = filesize
filename = filename
filetype = 'BIN'
changing
data_tab = int_line&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2007 07:39:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-smartforms/m-p/2620050#M601611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-07T07:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-smartforms/m-p/2620051#M601612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pawan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the information.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2007 08:10:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-smartforms/m-p/2620051#M601612</guid>
      <dc:creator>karthik_rajaspic</dc:creator>
      <dc:date>2007-08-07T08:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-smartforms/m-p/2620052#M601613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the link. That helped me to get more information.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2007 08:11:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-smartforms/m-p/2620052#M601613</guid>
      <dc:creator>karthik_rajaspic</dc:creator>
      <dc:date>2007-08-07T08:11:18Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-smartforms/m-p/2620053#M601614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shipra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the information.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2007 08:12:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-smartforms/m-p/2620053#M601614</guid>
      <dc:creator>karthik_rajaspic</dc:creator>
      <dc:date>2007-08-07T08:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-smartforms/m-p/2620054#M601615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sudheer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for the answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2007 08:14:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-smartforms/m-p/2620054#M601615</guid>
      <dc:creator>karthik_rajaspic</dc:creator>
      <dc:date>2007-08-07T08:14:53Z</dc:date>
    </item>
  </channel>
</rss>

