<?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: Doubts on SAP Scripts and SmartForms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubts-on-sap-scripts-and-smartforms/m-p/1469975#M221010</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gopi,&lt;/P&gt;&lt;P&gt;Both SAPscripts and Smartforms are used for designing forms(Business Documents), In SAP we have tools to achieve this, we have Form Painter(in case of sapscript)and Smartforms, These tools are mainly used for design purpose, we can also add Logics in case of these tools, but both are not executable, to run the forms we need a Print Program(or Driver programs), Generally these print programs will contain the data to be passed to forms and some function modules for interfacing forms, some of the function modules in SAPscripts are:- OPEN_FORM, WRITE_FORM,CLOSE_FORM, etc., and in case of smartforms Function module is automatically generated when you activate the form(in smartforms) thats one of the advantage of smartform over sapscripts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards:-&lt;/P&gt;&lt;P&gt;Santosh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;P.S. Mark usefull answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Aug 2006 04:26:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-08T04:26:34Z</dc:date>
    <item>
      <title>Doubts on SAP Scripts and SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubts-on-sap-scripts-and-smartforms/m-p/1469971#M221006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;         What componets does smart forms and SAP Scripts contains(Like Layout ,FM's and PrintPrograms)?and how r they linked when we execute a SmartForm r SAP Scripts?which component follows other components when we execute a SmartForm r SAP Scripts?&lt;/P&gt;&lt;P&gt;and whats the individual fucntionality of all these components do in SmartForms and SAP Scripts?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gopi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Aug 2006 22:22:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubts-on-sap-scripts-and-smartforms/m-p/1469971#M221006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-07T22:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: Doubts on SAP Scripts and SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubts-on-sap-scripts-and-smartforms/m-p/1469972#M221007</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;A Script or smartform is not usually exectued as standalone program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A script or Smartform is called using FM`s - OPEN_FORM or SSF_FUNCTION_MODULE_NAME resp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These FM`s are used in a report program and This report program is executed which inturn calls the FM`s and subsequently the Scripts/Smartforms. This report program is called as Print program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Print Program ( Contains FM`s to call Scripts/Smartforms and the logic to fetch/pass data to Scripts/Smartforms) =&amp;gt; Scripts/Smartforms =&amp;gt; Printout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 01:34:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubts-on-sap-scripts-and-smartforms/m-p/1469972#M221007</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T01:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: Doubts on SAP Scripts and SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubts-on-sap-scripts-and-smartforms/m-p/1469973#M221008</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;SAPSCRIPT&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------" /&gt;&lt;P&gt;Sapscript has two compontnts&lt;/P&gt;&lt;P&gt;driver program and form, These are assinged from spro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In driver program following functions are used.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'OPEN_FORM'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'WRITE_FORM'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CLOSE_FORM'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SMARTFORMS&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------" /&gt;&lt;P&gt;Tcode is smartforms&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It hs following complnents&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Driver program&lt;/P&gt;&lt;P&gt;smartform&lt;/P&gt;&lt;P&gt;style&lt;/P&gt;&lt;P&gt;Text Module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In driver program following function is called to open form and to pass input parameters which can be print in smart form .&lt;/P&gt;&lt;P&gt;&lt;/P&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 = 'FORM_name'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      fm_name  = fm_name.&lt;/P&gt;&lt;P&gt;&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   = v_con&lt;/P&gt;&lt;P&gt;      user_settings        = 'X'&lt;/P&gt;&lt;P&gt;      text                 = p_long&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      document_output_info = out_info&lt;/P&gt;&lt;P&gt;      job_output_info      = prn_ret&lt;/P&gt;&lt;P&gt;      job_output_options   = out_op&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      gs_out               = gs_out&lt;/P&gt;&lt;P&gt;      gs_out1              = gs_out_item&lt;/P&gt;&lt;P&gt;      git_adrc             = git_adrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pankaj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 03:40:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubts-on-sap-scripts-and-smartforms/m-p/1469973#M221008</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T03:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: Doubts on SAP Scripts and SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubts-on-sap-scripts-and-smartforms/m-p/1469974#M221009</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;little change in above reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For sapscript forms of standard programs need to assingen from spro based upon the requirements and user created forms can be called from z progeams.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pankaj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 04:07:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubts-on-sap-scripts-and-smartforms/m-p/1469974#M221009</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T04:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: Doubts on SAP Scripts and SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubts-on-sap-scripts-and-smartforms/m-p/1469975#M221010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gopi,&lt;/P&gt;&lt;P&gt;Both SAPscripts and Smartforms are used for designing forms(Business Documents), In SAP we have tools to achieve this, we have Form Painter(in case of sapscript)and Smartforms, These tools are mainly used for design purpose, we can also add Logics in case of these tools, but both are not executable, to run the forms we need a Print Program(or Driver programs), Generally these print programs will contain the data to be passed to forms and some function modules for interfacing forms, some of the function modules in SAPscripts are:- OPEN_FORM, WRITE_FORM,CLOSE_FORM, etc., and in case of smartforms Function module is automatically generated when you activate the form(in smartforms) thats one of the advantage of smartform over sapscripts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards:-&lt;/P&gt;&lt;P&gt;Santosh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;P.S. Mark usefull answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 04:26:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubts-on-sap-scripts-and-smartforms/m-p/1469975#M221010</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T04:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Doubts on SAP Scripts and SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubts-on-sap-scripts-and-smartforms/m-p/1469976#M221011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;1st-there is lots of difference between sap script and smartforms&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;2-as per linking is concerned in case of sap script you r passing the data though the function modules like open_form start_form and close_form but in case of the smartforms when you r executing the report it is generating a function module which is a dynamic one which helps to pass the data from the driver program to the smartform screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 04:29:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubts-on-sap-scripts-and-smartforms/m-p/1469976#M221011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T04:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: Doubts on SAP Scripts and SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubts-on-sap-scripts-and-smartforms/m-p/1469977#M221012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;          Thanks for ur reply .&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Gopi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 17:11:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubts-on-sap-scripts-and-smartforms/m-p/1469977#M221012</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T17:11:28Z</dc:date>
    </item>
  </channel>
</rss>

