<?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 Smart forms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3014446#M712403</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can we use standard smart forms, and once the changes are done, how can we execute it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;AJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Oct 2007 14:49:43 GMT</pubDate>
    <dc:creator>anupam_srivastava2</dc:creator>
    <dc:date>2007-10-25T14:49:43Z</dc:date>
    <item>
      <title>Smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3014446#M712403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can we use standard smart forms, and once the changes are done, how can we execute it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;AJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 14:49:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3014446#M712403</guid>
      <dc:creator>anupam_srivastava2</dc:creator>
      <dc:date>2007-10-25T14:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: Smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3014447#M712404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to the transaction SMARTFORMS.&lt;/P&gt;&lt;P&gt;Give the standard source form name&lt;/P&gt;&lt;P&gt;Click the copy button on the application toolbar&lt;/P&gt;&lt;P&gt;This will give a popup, which asks for target form. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;change it and execute normally.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after activating your smart form in menu environment select function module name you will get a name like &lt;/P&gt;&lt;P&gt;/1BCDWB/SF00000087 which is the name of function module generated for your form &lt;/P&gt;&lt;P&gt;copy paste this name in tcode se37 you can check for lay out you have created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;normally this is called in your driver program , a report where you write all the business logic &amp;amp; pass data in a table or parameter which you display using smart form.&lt;/P&gt;&lt;P&gt;so genrally create a driver program for your requirements call the smart form using call function '/1BCDWB/SF00000087' or use &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 = 'ZSMART_FORM1'&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;pass name of your smart form to this function &amp;amp; a parameter fm_name.&lt;/P&gt;&lt;P&gt;then use CALL FUNCTION FM_NAME&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ARCHIVE_INDEX =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 14:51:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3014447#M712404</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T14:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: Smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3014448#M712405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi AJ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Genearally standard smartforms assigned in some transactions like NACE and you can assign smartforms and its Driver program there. SO when you copy the Smartform and made changes to it then again assign in the same transaction modifying the smartform. Then it will work as it as.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Lincon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 14:54:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3014448#M712405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T14:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: Smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3014449#M712406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vasu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have copied the form , activated it and excuted it, but if I want to fetch the data and execute it, what I need to do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 14:57:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3014449#M712406</guid>
      <dc:creator>anupam_srivastava2</dc:creator>
      <dc:date>2007-10-25T14:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: Smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3014450#M712407</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;You can go to transaction SE37 to execute the Smartform function module by fecthing the data (import parameter).&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 15:12:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3014450#M712407</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-10-25T15:12:25Z</dc:date>
    </item>
  </channel>
</rss>

