<?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: smart forms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3123402#M741779</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tcode: SMARTFORMS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This link might helps you:&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;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Nov 2007 04:55:05 GMT</pubDate>
    <dc:creator>naimesh_patel</dc:creator>
    <dc:date>2007-11-22T04:55:05Z</dc:date>
    <item>
      <title>smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3123401#M741778</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;wt the difference b/n scripts and smart forms? tcode for smart forms?&lt;/P&gt;&lt;P&gt;plz tell me .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;swathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2007 04:51:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3123401#M741778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-22T04:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3123402#M741779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tcode: SMARTFORMS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This link might helps you:&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;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2007 04:55:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3123402#M741779</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-11-22T04:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3123403#M741780</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;TCODE FOR SMARTFORM is  SMARTFORM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sapscripts are client dependend and smartforms are client independet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAPscript are CLient Dependent, SmartForms are Client Independent. The reason why 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;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;determine smartform function module for invoice&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'&lt;/P&gt;&lt;P&gt;EXPORTING formname = lf_formname&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 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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;call smartform invoice&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;mail_appl_obj =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;importing 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;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;Difference with SMARTFORMS vs. SapScript (SE71) &lt;/P&gt;&lt;P&gt;The Following are the differences :- &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a) Multiple page formats are possible in smartforms which is not the case in SAPScripts &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b) It is possible to have a smartform without a main window . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;c) Labels cannot be created in smartforms. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;d) Routines can be written in smartforms tool. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e) Smartforms generates a function module when activated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Contributed by : SAP ABAP/4 Programming, Basis Administration, Configuration Hints and Tips &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;f) Unlike sapscripts (RSTXSCRP), you cannot upload/download Smartform to your local harddisk. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It was said that it was provided in CRM 3.0 version, but not available in R/3. You can download smartforms into Local PC in a XML format. In the same way you can upload this XML format into Smartform. From the smartform editor itself you can call download option, if you are working in CRM 3.0 environment. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In R3 also, you can download into XML format. However, it's not sure about uploading. Refer to the program 'SF_XSF_DEMO'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In 4.7 Enterprise, other have seen this utlity which is completey missing in 4.6c. There is functionality to downlaod a complete form or only a particular node. (Utilities -&amp;gt; Download form). It will create a XML file and save it in the hard disk. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For others, if you want to download/upload the Smartforms source, you will need the help from the Basis people. What you can do is to create a Transport and then FTP down to your local harddisk. When you need the Smartform source in another system, you have FTP up the Smartforms file back to the SAP server. Finally, the Basis team, will tp it into your system. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;g) The protect and endprotect command in sapscript doesn't work with smartforms. For example on a invoice: First data of position no 80. is printed on page one, other data of position no 80 is printed on page 2. And there's nothing you can do about it. Actually, there is something you can do about it. By using a folder node and checking the 'protect' checkbox, everything in that folder will be page protected. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i) The main difference is that SAP script is client-dependant, while smartform is independent. Also there are some advanced and intreractive features available in smartforms. &lt;/P&gt;&lt;P&gt;You can use an External subroutine-call in sapscript editor like: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/: perform &amp;lt;form_name&amp;gt; in program &amp;lt;program_name&amp;gt; &lt;/P&gt;&lt;P&gt;/: using &amp;lt;var1&amp;gt; &lt;/P&gt;&lt;P&gt;/: using &amp;lt;var2&amp;gt; &lt;/P&gt;&lt;P&gt;. &lt;/P&gt;&lt;P&gt;. &lt;/P&gt;&lt;P&gt;/: changing &amp;lt;return1&amp;gt; &lt;/P&gt;&lt;P&gt;/: changing &amp;lt;return2&amp;gt; &lt;/P&gt;&lt;P&gt;/:endperform&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2007 05:03:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3123403#M741780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-22T05:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3123404#M741781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tcode for  smartform   is SMARTFORMS .&lt;/P&gt;&lt;P&gt;The Following are the differences :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a) Multiple page formats are possible in smartforms which is not the case in SAPScripts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b) It is possible to have a smartform without a main window .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;c) Labels cannot be created in smartforms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;d) Routines can be written in smartforms tool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e) Smartforms generates a function module when activated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2007 05:28:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3123404#M741781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-22T05:28:51Z</dc:date>
    </item>
    <item>
      <title>Re: smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3123405#M741782</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;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="3535176"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2007 08:22:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3123405#M741782</guid>
      <dc:creator>former_member188829</dc:creator>
      <dc:date>2007-11-22T08:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3123406#M741783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;let me try to make it simple for u...&lt;/P&gt;&lt;P&gt;-&amp;gt;SmartForms are easier to develop, maintain and transport than SAP Script.&lt;/P&gt;&lt;P&gt;-&amp;gt;SmartForms generates a function module when activated,so we need not use open,write close forms.&lt;/P&gt;&lt;P&gt;-&amp;gt;unlike scripts only one main window in smart form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;these are few but important differences..&lt;/P&gt;&lt;P&gt;tcodes: script se71,&lt;/P&gt;&lt;P&gt;smart forms:SMARTFORMS,&lt;/P&gt;&lt;P&gt;smartstyles:SMARTSTYLES.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2007 13:08:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3123406#M741783</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-23T13:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3123407#M741784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi swathi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the main difference between smartforms and scrpits are:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)Multiple page formats are possible in SmartForms which is not the case in SAPScripts &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)It is possible to have a SmartForm without a main window. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3)Labels cannot be created in SmartForms. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4)Routines can be written in SmartForms tool. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5)SmartForms generates a function module when activated.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please reward points if usefull&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2007 13:52:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/3123407#M741784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-26T13:52:05Z</dc:date>
    </item>
  </channel>
</rss>

