<?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/3429092#M823688</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SmartForms are Client Independent because when you activate them you are actually generating a Function Module. This means that the Print Programs actually call a FM instead of using the "OPEN_FORM", "WRITE_FORM" etc FM's that SAPscript use.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Feb 2008 04:48:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-13T04:48:58Z</dc:date>
    <item>
      <title>smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3429090#M823686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is it possible that without driver program can we create form in smrtforms.&lt;/P&gt;&lt;P&gt;why smartforms r client independent justify.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 04:44:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3429090#M823686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T04:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3429091#M823687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;smartforms generate a function module when executed , so they r client independent.&lt;/P&gt;&lt;P&gt;u can write the code in smartform itself.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 04:48:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3429091#M823687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T04:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3429092#M823688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SmartForms are Client Independent because when you activate them you are actually generating a Function Module. This means that the Print Programs actually call a FM instead of using the "OPEN_FORM", "WRITE_FORM" etc FM's that SAPscript use.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 04:48:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3429092#M823688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T04:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3429093#M823689</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;SmartForms are client independent is because when you activate a SMartForm, SAP actually generates a Function Module (which as you know is client independent). The Print Program (or as SAP likes to refer to them these days - Application Program) calls your generated FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the "smartforms" transaction, when you are viewing a smartform, you can go to the Environment-&amp;gt;Function Module Name menu path to see the FM name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at the "Application Program" for the Invoice SmartForm (RLB_INVOICE):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;determine smartform function module for invoice &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'&lt;/P&gt;&lt;P&gt;EXPORTING formname = lf_formname&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;variant = ' ' &lt;/P&gt;&lt;P&gt;direct_call = ' ' &lt;/P&gt;&lt;P&gt;IMPORTING fm_name = lf_fm_name&lt;/P&gt;&lt;P&gt;EXCEPTIONS 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;&lt;/P&gt;&lt;P&gt;call smartform invoice &lt;/P&gt;&lt;P&gt;CALL FUNCTION lf_fm_name&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;archive_index = toa_dara&lt;/P&gt;&lt;P&gt;archive_parameters = arc_params&lt;/P&gt;&lt;P&gt;control_parameters = ls_control_param&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mail_appl_obj = &lt;/P&gt;&lt;P&gt;mail_recipient = ls_recipient&lt;/P&gt;&lt;P&gt;mail_sender = ls_sender&lt;/P&gt;&lt;P&gt;output_options = ls_composer_param&lt;/P&gt;&lt;P&gt;user_settings = space&lt;/P&gt;&lt;P&gt;is_bil_invoice = ls_bil_invoice&lt;/P&gt;&lt;P&gt;is_nast = nast&lt;/P&gt;&lt;P&gt;is_repeat = repeat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;importing document_output_info = &lt;/P&gt;&lt;P&gt;job_output_info = &lt;/P&gt;&lt;P&gt;job_output_options = &lt;/P&gt;&lt;P&gt;EXCEPTIONS 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;[/code]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;vasavi.&lt;/P&gt;&lt;P&gt;kindly reward if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 04:54:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3429093#M823689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T04:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3429094#M823690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks and how to process standard text in smartforms.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 04:56:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3429094#M823690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T04:56:47Z</dc:date>
    </item>
  </channel>
</rss>

