<?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: smartform problems in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675220#M618001</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1.if te line type for table header is same as that of table items 20 will be printed under qty provided da cell in which u r writing qty is in same position as da cell in which u r displaying quantity value..i.e 20.&lt;/P&gt;&lt;P&gt;2.u can pass the internal table to smartform by declaring it in tables tab of  form interface of smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter name       type     associated type&lt;/P&gt;&lt;P&gt;itab                         like       zabc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.declare in global definitions under the types tab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.u can find alot of material on this forum as well as on form printing forum&lt;/P&gt;&lt;P&gt;plz reward points if it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Aug 2007 10:38:29 GMT</pubDate>
    <dc:creator>former_member188827</dc:creator>
    <dc:date>2007-08-28T10:38:29Z</dc:date>
    <item>
      <title>smartform problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675217#M617998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi i have some problems related to smartforms:&lt;/P&gt;&lt;P&gt;problem 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i m showing a field in the table of smart from which is referred to mseg-meing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITEM      DESC     QTY                UOM&lt;/P&gt;&lt;P&gt;100010   ABCDE                 20     TON&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want 20 to b print under the qty &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;problem 2.&lt;/P&gt;&lt;P&gt;how can we pass internal tables to the smartforms&lt;/P&gt;&lt;P&gt;is there need of creating structures if we pass internal tables to the smart form&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;problem 3.&lt;/P&gt;&lt;P&gt;how can i create a structure from the fields related to the different tables&lt;/P&gt;&lt;P&gt;as i got no option for creating structures in se11&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;problem 4.&lt;/P&gt;&lt;P&gt;can somebody tell me some material related to smartform to read....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANX&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 10:31:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675217#M617998</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T10:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: smartform problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675218#M617999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;1. is an allignment problem.if u are using tempelate just adjust it be moving lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.TABLES: MKPF. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: FM_NAME TYPE RS38L_FNAM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF INT_MKPF OCCURS 0. &lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE MKPF. &lt;/P&gt;&lt;P&gt;DATA: END OF INT_MKPF. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM MKPF WHERE MBLNR IN S_MBLNR. &lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING MKPF TO INT_MKPF. &lt;/P&gt;&lt;P&gt;APPEND INT_MKPF. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDSELECT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;At the end of your program. &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Passing data to SMARTFORMS &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&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 = 'ZSMARTFORM' &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;VARIANT = ' ' &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DIRECT_CALL = ' ' &lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;P&gt;OTHERS = 3. &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;WRITE: / 'ERROR 1'. &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 FM_NAME &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXPORTING &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ARCHIVE_INDEX = &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ARCHIVE_INDEX_TAB = &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ARCHIVE_PARAMETERS = &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CONTROL_PARAMETERS = &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MAIL_APPL_OBJ = &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MAIL_RECIPIENT = &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MAIL_SENDER = &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;OUTPUT_OPTIONS = &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;USER_SETTINGS = 'X' &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DOCUMENT_OUTPUT_INFO = &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;JOB_OUTPUT_INFO = &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;JOB_OUTPUT_OPTIONS = &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;TABLES &lt;/P&gt;&lt;P&gt;GS_MKPF = INT_MKPF &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_CANCELED = 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 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;also check this link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.esnips.com/doc/77a981b9-8fe3-4fbb-8101-67745c1fe60c/SMART-FORMS_shail" target="test_blank"&gt;http://www.esnips.com/doc/77a981b9-8fe3-4fbb-8101-67745c1fe60c/SMART-FORMS_shail&lt;/A&gt;&lt;/P&gt;&lt;P&gt;reward points if it helps&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 10:37:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675218#M617999</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T10:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: smartform problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675219#M618000</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;Check the following materials,&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-basis-abap.com/sapsf001.htm" target="test_blank"&gt;http://www.sap-basis-abap.com/sapsf001.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-press.com/downloads/h955_preview.pdf" target="test_blank"&gt;http://www.sap-press.com/downloads/h955_preview.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.ossincorp.com/Black_Box/Black_Box_2.htm" target="test_blank"&gt;http://www.ossincorp.com/Black_Box/Black_Box_2.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/smartforms/sap-smart-forms.htm" target="test_blank"&gt;http://www.sap-img.com/smartforms/sap-smart-forms.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/smartforms/smartform-tutorial.htm" target="test_blank"&gt;http://www.sap-img.com/smartforms/smartform-tutorial.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/smartforms.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/smartforms.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/smartforms/smart-006.htm" target="test_blank"&gt;http://www.sap-img.com/smartforms/smart-006.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm" target="test_blank"&gt;http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1234083"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html" target="test_blank"&gt;http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;step by step guide&lt;/P&gt;&lt;P&gt;&lt;A href="http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html" target="test_blank"&gt;http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Use table to display data in tabular format.&lt;/P&gt;&lt;P&gt;2.  In smartform function module you have to pass the internal table.&lt;/P&gt;&lt;P&gt;3. Go to se11- Select data type - select structure and give the fields and activate it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if helpful.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 10:37:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675219#M618000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T10:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: smartform problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675220#M618001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1.if te line type for table header is same as that of table items 20 will be printed under qty provided da cell in which u r writing qty is in same position as da cell in which u r displaying quantity value..i.e 20.&lt;/P&gt;&lt;P&gt;2.u can pass the internal table to smartform by declaring it in tables tab of  form interface of smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter name       type     associated type&lt;/P&gt;&lt;P&gt;itab                         like       zabc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.declare in global definitions under the types tab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.u can find alot of material on this forum as well as on form printing forum&lt;/P&gt;&lt;P&gt;plz reward points if it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 10:38:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675220#M618001</guid>
      <dc:creator>former_member188827</dc:creator>
      <dc:date>2007-08-28T10:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: smartform problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675221#M618002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;u&amp;gt;Problem 1&amp;lt;/u&amp;gt;: Create table and define a row type with columns required e.g. ITEM, DESC, QTY, UOM. Create Line and assign line type in Header for Heading and Line in Main area and assign line type for rows of internal table. Put your field name in corresponding column  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;Problem 2.&amp;lt;/u&amp;gt;  You can pass internal table to Smartform in Form Interface-&amp;gt;Tables option. You require to create Table type of the structure of internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;Problem 3.&amp;lt;/u&amp;gt; You can define custom structure in Global Definitions-&amp;gt; Types tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 10:46:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675221#M618002</guid>
      <dc:creator>alpesh_saparia3</dc:creator>
      <dc:date>2007-08-28T10:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: smartform problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675222#M618003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;problem 1&lt;/P&gt;&lt;P&gt;i hav used a table for displaying data&lt;/P&gt;&lt;P&gt;but the qty field is not shwing right output as it is left aligned&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is showing like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QTY&lt;/P&gt;&lt;P&gt;         20&lt;/P&gt;&lt;P&gt;         20&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 10:54:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675222#M618003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T10:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: smartform problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675223#M618004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SORY IT IS LIKE THIS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QTY&lt;/P&gt;&lt;P&gt;XXXXXXXXXXXXX20&lt;/P&gt;&lt;P&gt;WHERE X IS BLANK SPACE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 10:55:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675223#M618004</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T10:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: smartform problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675224#M618005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in dat case, create smartstyles using transaction smartstyles.&lt;/P&gt;&lt;P&gt;right click on paragraph format..&amp;gt;create node.&lt;/P&gt;&lt;P&gt;in dat use right-alligned and activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign this style to ur text element under output options tab in the form...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz reward points if it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        abapuser&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 11:07:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675224#M618005</guid>
      <dc:creator>former_member188827</dc:creator>
      <dc:date>2007-08-28T11:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: smartform problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675225#M618006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any existing smart style which I can use for the same??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 11:11:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675225#M618006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T11:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: smartform problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675226#M618007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go to transaction smartstyles and take f4 against style..dere are alot of styles avaiable but i guess its better to create ur own styles rather than searching the style which 'll fit ur requirement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 11:15:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problems/m-p/2675226#M618007</guid>
      <dc:creator>former_member188827</dc:creator>
      <dc:date>2007-08-28T11:15:46Z</dc:date>
    </item>
  </channel>
</rss>

