<?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: smartforms. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/2716998#M630178</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;then how to declare the table in smartforms&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Aug 2007 07:32:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-10T07:32:09Z</dc:date>
    <item>
      <title>smartforms.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/2716993#M630173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..&lt;/P&gt;&lt;P&gt;i want to get the data from 2 database table in smartform. how to do this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 07:20:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/2716993#M630173</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T07:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/2716994#M630174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Either change your print program to extract the data and add these tables to the interface of the smartfrom.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a program node in your smartform and write some ABAP to read the desired tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 07:21:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/2716994#M630174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T07:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/2716995#M630175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Develop a print program in SE38 and then execute the report.... Here is a sample code to extract data from 2 database tables......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or create a node in SMARTFORM and then write the same code there to achieve your requirement.........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF fs_spfli,&lt;/P&gt;&lt;P&gt;        carrid TYPE spfli-carrid,&lt;/P&gt;&lt;P&gt;        connid TYPE spfli-connid,&lt;/P&gt;&lt;P&gt;        countryfr TYPE spfli-countryfr,&lt;/P&gt;&lt;P&gt;      END OF fs_spfli.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF fs_sflight,&lt;/P&gt;&lt;P&gt;        carrid TYPE sflight-carrid,&lt;/P&gt;&lt;P&gt;        connid TYPE sflight-connid,&lt;/P&gt;&lt;P&gt;        fldate TYPE sflight-fldate,&lt;/P&gt;&lt;P&gt;        price TYPE sflight-price,&lt;/P&gt;&lt;P&gt;      END OF fs_sflight.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF fs_outtab,&lt;/P&gt;&lt;P&gt;        carrid TYPE spfli-carrid,&lt;/P&gt;&lt;P&gt;        connid TYPE spfli-connid,&lt;/P&gt;&lt;P&gt;        countryfr TYPE spfli-countryfr,&lt;/P&gt;&lt;P&gt;        fldate TYPE sflight-fldate,&lt;/P&gt;&lt;P&gt;        price TYPE sflight-price,&lt;/P&gt;&lt;P&gt;      END OF fs_outtab.&lt;/P&gt;&lt;P&gt;DATA: t_spfli LIKE STANDARD TABLE OF fs_spfli,&lt;/P&gt;&lt;P&gt;t_sflight LIKE STANDARD TABLE OF fs_sflight,&lt;/P&gt;&lt;P&gt;t_outtab LIKE STANDARD TABLE OF fs_outtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;SELECT * FROM spfli INTO CORRESPONDING FIELDS OF TABLE t_spfli.&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;SELECT * FROM sflight INTO CORRESPONDING FIELDS OF TABLE t_sflight.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT t_sflight INTO fs_sflight.&lt;/P&gt;&lt;P&gt;  READ TABLE t_spfli INTO fs_spfli with key carrid = fs_sflight-carrid&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;  IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;    MOVE fs_spfli-carrid TO fs_outtab-carrid.&lt;/P&gt;&lt;P&gt;    MOVE fs_spfli-connid TO fs_outtab-connid.&lt;/P&gt;&lt;P&gt;    MOVE fs_spfli-countryfr TO fs_outtab-countryfr.&lt;/P&gt;&lt;P&gt;    MOVE fs_sflight-fldate TO fs_outtab-fldate.&lt;/P&gt;&lt;P&gt;    MOVE fs_sflight-price TO fs_outtab-price.&lt;/P&gt;&lt;P&gt;    APPEND fs_outtab TO t_outtab.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  CLEAR fs_spfli.&lt;/P&gt;&lt;P&gt;  CLEAR fs_sflight.&lt;/P&gt;&lt;P&gt;ENDLOOP.&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>Fri, 10 Aug 2007 07:25:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/2716995#M630175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T07:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/2716996#M630176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  YZDS_SMARTFORM_1                        .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Tables: bkpf, bseg.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;*Internal Tables to be used.&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;data: begin of int_table1 occurs 0.&lt;/P&gt;&lt;P&gt;      include structure bkpf.&lt;/P&gt;&lt;P&gt;data: end of int_table1.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data: begin of int_table2 occurs 0.&lt;/P&gt;&lt;P&gt;      include structure bseg.&lt;/P&gt;&lt;P&gt;data: end of int_table2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;*Selection Options to be used.&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;select-op! tions s_belnr for bkpf-belnr memory id 001.&lt;/P&gt;&lt;P&gt;select-options s_bukrs for bkpf-bukrs memory id 002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from bkpf where belnr in s_belnr&lt;/P&gt;&lt;P&gt;                    and  bukrs in s_bukrs.&lt;/P&gt;&lt;P&gt;      move-corresponding bkpf to int_table1.&lt;/P&gt;&lt;P&gt;      append int_table1.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;*Calling the funtion module which was generated by the Smartform.&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;Call function 'SSF_FUNCTION_MODULE_NAME'&lt;/P&gt;&lt;P&gt; Exporting&lt;/P&gt;&lt;P&gt;     formname = 'yzds_zsmart'&lt;/P&gt;&lt;P&gt; Importing&lt;/P&gt;&lt;P&gt;     fm_name  = '/1BCDWB/SF00000002'&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;P&gt;     others             = 3.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; if sy-sbrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;   write :? 'ERROR ERROR'.&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; &lt;/P&gt;&lt;P&gt;Call funtcion fm_name&lt;/P&gt;&lt;P&gt; tables&lt;/P&gt;&lt;P&gt;       l_bkpf    = int_table1&lt;/P&gt;&lt;P&gt; Exceptions&lt;/P&gt;&lt;P&gt;       formatting_error  = 1&lt;/P&gt;&lt;P&gt;       internal_error    = 2&lt;/P&gt;&lt;P&gt;       send_error        = 3&lt;/P&gt;&lt;P&gt;       user_cancelled    = 4&lt;/P&gt;&lt;P&gt;       others            = 5.&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&lt;/P&gt;&lt;P&gt; 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;HR originaltext="-------------------------------------------------" /&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;P&gt;anju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 07:25:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/2716996#M630176</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T07:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/2716997#M630177</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;Extract the data using join in driver program.&lt;/P&gt;&lt;P&gt;Move that data to internal table &amp;amp; equate that internal table to the structure you are using in smartform.&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT int_final.&lt;/P&gt;&lt;P&gt;      MOVE-CORRESPONDING int_final TO int_final1.&lt;/P&gt;&lt;P&gt;      APPEND int_final1.&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 = control&lt;/P&gt;&lt;P&gt;                    TABLES&lt;/P&gt;&lt;P&gt;            zven_whtax_cert    = int_final1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        CLEAR int_final1.&lt;/P&gt;&lt;P&gt;        REFRESH: int_final1.&lt;/P&gt;&lt;P&gt;      ENDAT.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&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>Fri, 10 Aug 2007 07:28:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/2716997#M630177</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T07:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/2716998#M630178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;then how to declare the table in smartforms&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 07:32:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/2716998#M630178</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T07:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/2716999#M630179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are wanting to pass data from your print program to your form add the table to the interface of the form in Global Settings -&amp;gt; Form interface, tab Tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The structure of your table will need to be declared in the data dictionary (SE11) in order to be able to use it in both your print program and Smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 08:30:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/2716999#M630179</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T08:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/2717000#M630180</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;For that u have to create structure which contain fields of two table and then pas this table as table in input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards if it will helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 08:35:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/2717000#M630180</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T08:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/2717001#M630181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create program lines in smartforms and retrive data from two tables into one internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample for crating table in smartform&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sMART fORM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;uSING TABLE IN Smart Form&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Tcode --&amp;gt; SmartForms&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Form name --&amp;gt; Z_SF_TEST Create&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Under Global settings&lt;/P&gt;&lt;P&gt;a) Form Interface   &lt;/P&gt;&lt;P&gt;    Table Tab&lt;/P&gt;&lt;P&gt;   ITAB LIKE EKPO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b) GLOBAL Definitions&lt;/P&gt;&lt;P&gt;WA_NETPR LIKE EKPO-NETPR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In smart forms if we want to display quantity and currency fields. We can't directly display currency field and quantity fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For that we have to create an extra variable in global definitions&lt;/P&gt;&lt;P&gt;Ex: netpr FIELD of EKPO&lt;/P&gt;&lt;P&gt;CREATE program lines and specify WA_NETWR = itab-netpr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4) RT CLick on main Window &lt;/P&gt;&lt;P&gt;   CREATE --&amp;gt; TABLE &lt;/P&gt;&lt;P&gt;  Click Table painter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEFAULT %LTYPE will be Created&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a) If you want more like Header footer etc add by rt click on %LTYPE1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table (Tab)&lt;/P&gt;&lt;P&gt;%LTYPE  Radio(SELECT) 5 CM 5 CM 6 CM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLICK on DATA (Tab)&lt;/P&gt;&lt;P&gt;INTERNAL TABLE ITAB LIKE ITAB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5)RT click on table control and create --&amp;gt; program lines&lt;/P&gt;&lt;P&gt;General attribute (Tab)&lt;/P&gt;&lt;P&gt;INPUT PARAMETER			OUTPUT PARAMETER&lt;/P&gt;&lt;P&gt;itab                               WA_NETPR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code Area&lt;/P&gt;&lt;P&gt;WA_NETWR = ITAB-NETPR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6) RT CLcick on table ctl and create 3 text to display the fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a) % text1 +button(insert field)&lt;/P&gt;&lt;P&gt;   FIELD name &amp;amp;itab-ebeln&amp;amp;&lt;/P&gt;&lt;P&gt;Output options (tab)&lt;/P&gt;&lt;P&gt;Check New line   LINETYPE   %Ltype1&lt;/P&gt;&lt;P&gt;check new cell&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b) % text2&lt;/P&gt;&lt;P&gt;   &amp;amp; itab-ebelp&amp;amp;&lt;/P&gt;&lt;P&gt;output options&lt;/P&gt;&lt;P&gt;check new cell&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;c) % text2&lt;/P&gt;&lt;P&gt;   &amp;amp; wa_netpr&amp;amp;&lt;/P&gt;&lt;P&gt;output options&lt;/P&gt;&lt;P&gt;check new cell&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report ac&lt;/P&gt;&lt;P&gt;Tables ekpo.&lt;/P&gt;&lt;P&gt;Data: itab1 like ekpo occurs 0 with header line.&lt;/P&gt;&lt;P&gt;select * into table itab1 from ekpo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sairam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 08:42:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/2717001#M630181</guid>
      <dc:creator>former_member196280</dc:creator>
      <dc:date>2007-08-10T08:42:12Z</dc:date>
    </item>
  </channel>
</rss>

