<?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 Smartforms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1787703#M339136</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can I know the FM related to the Smartform?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Jan 2007 15:09:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-03T15:09:07Z</dc:date>
    <item>
      <title>Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1787703#M339136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can I know the FM related to the Smartform?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jan 2007 15:09:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1787703#M339136</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-03T15:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1787704#M339137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go to smartforms transaction.&lt;/P&gt;&lt;P&gt;Give the name of the form and press display.&lt;/P&gt;&lt;P&gt;If the smartform is already active, Chose from menu:&lt;/P&gt;&lt;P&gt;Environment-&amp;gt;Function Module name.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jan 2007 15:14:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1787704#M339137</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-03T15:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1787705#M339138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bharat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SSF_FUNCTION_MODULE_NAME&amp;lt;/b&amp;gt; is the function module to get the function module for a smart form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check these function modules realted to Smart forms&lt;/P&gt;&lt;P&gt;SSF_CATALOG&lt;/P&gt;&lt;P&gt;SSF_CLOSE&lt;/P&gt;&lt;P&gt;SSF_CREATE_COMPOSER_INPUT&lt;/P&gt;&lt;P&gt;SSF_FIELD_LIST&lt;/P&gt;&lt;P&gt;SSF_FUNCTION_MODULE_NAMESSF_CATALOG&lt;/P&gt;&lt;P&gt;SSF_CLOSE&lt;/P&gt;&lt;P&gt;SSF_CREATE_COMPOSER_INPUT&lt;/P&gt;&lt;P&gt;SSF_FIELD_LIST&lt;/P&gt;&lt;P&gt;SSF_GET_DEVICE_TYPE&lt;/P&gt;&lt;P&gt;SSF_CHECK_EXTERNAL_NAME&lt;/P&gt;&lt;P&gt;SSF_CHECK_INTERNAL_NAME&lt;/P&gt;&lt;P&gt;SSF_CHECK_VARIANT_NAME&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jan 2007 15:16:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1787705#M339138</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-03T15:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1787706#M339139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bharat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use FM SSF_FUNCTION_MODULE_NAME to find Smartform's FM.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'SSF_FUNCTION_MODULE_NAME'
exporting
formname = formname
importing
fm_name = fm_name
exceptions
no_form = 1
no_function_module = 2
others = 3.
if sy-subrc &amp;lt;&amp;gt; 0.
exit.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you can check table TNAPR to find more information such as print program, form name, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chcek this link as well.&lt;/P&gt;&lt;P&gt;&lt;A href="https://websmp205.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&amp;amp;_OBJECT=011000358700008423592001" target="test_blank"&gt;https://websmp205.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&amp;amp;_OBJECT=011000358700008423592001&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jan 2007 15:18:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1787706#M339139</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-01-03T15:18:53Z</dc:date>
    </item>
  </channel>
</rss>

