<?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/1580561#M261954</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;&lt;/P&gt;&lt;P&gt;form interface-&amp;gt;&lt;/P&gt;&lt;P&gt;You define a form interface to send data from your application to a form. &lt;/P&gt;&lt;P&gt;The form interface is a part of the Interface form object and is defined in the Form Builder. The form interface of a form is structured in the same way as the interface of a function module in the system. However, form interfaces do not support Changing parameters. &lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/da/8fcc44d98b4e8bac6f102aa1fc69cc/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/da/8fcc44d98b4e8bac6f102aa1fc69cc/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;global definition in the smartform-&amp;gt;&lt;/P&gt;&lt;P&gt;. In Global definition we can define the all the global variables which can be used in Smartforms. Initialization &lt;/P&gt;&lt;P&gt;can be used for initializing the variables and even for retrieving the data.&lt;/P&gt;&lt;P&gt;&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, 26 Sep 2006 09:28:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-26T09:28:29Z</dc:date>
    <item>
      <title>smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1580558#M261951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friendz,&lt;/P&gt;&lt;P&gt;could u plz explain me the difference between  &amp;lt;b&amp;gt;form interface  and global definition in the smartform &amp;lt;/b&amp;gt; and how to use them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;siri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 09:13:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1580558#M261951</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1580559#M261952</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;Form Interface is like the interface through which any prg can interact with this smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e for passing values, internal tables, and getting the desired output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Global definitions are like Top declarations in reports etc.. where the defined vaiables, constants, ranges, internal tables etc...can be used anywhere in the smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CALL FUNCTION fname&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        control_parameters   = control_parameters&lt;/P&gt;&lt;P&gt;        output_options       = output_options&lt;/P&gt;&lt;P&gt;        user_settings        = ' '&lt;/P&gt;&lt;P&gt;        matnr                = x_ltap-matnr&lt;/P&gt;&lt;P&gt;        charg                = x_ltap-charg&lt;/P&gt;&lt;P&gt;        ivnum                = x_ltap-ivnum&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        document_output_info = document_output_info&lt;/P&gt;&lt;P&gt;        job_output_info      = job_output_info&lt;/P&gt;&lt;P&gt;        job_output_options   = job_output_options&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        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;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The exporting / importing parameters of the above call to SF form the &amp;lt;b&amp;gt;Form Interface&amp;lt;/b&amp;gt;.&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;Raj&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rajasekhar Dinavahi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 09:16:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1580559#M261952</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1580560#M261953</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;&amp;lt;b&amp;gt;Form interface&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt; The parameters which are specified in form interface are parameters that are passed to the function module that is generated when we activate smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A &amp;lt;b&amp;gt;form interface&amp;lt;/b&amp;gt; to transfer application data to the form definition. When you activate the Smart Form, the system generates a function module that encapsulates all attributes of the Smart Form. As soon as the application program calls the function module, the Smart Form uses the modules interface (which corresponds to the form interface) to transfer any table data previously selected and to print the form according to the form description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Global definitions&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt; The parameters that are declared in global definitions can be accessed in teh smartform but not in the driver program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Use&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Global definitions apply for the entire form. You can use any objects defined there in all nodes of the tree. &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Features&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;The following global definitions are possible:&lt;/P&gt;&lt;P&gt;&amp;#149;	Variables or constants whose types are stored in the ABAP Dictionary&lt;/P&gt;&lt;P&gt;&amp;#149;	Types as free ABAP coding, provided there is no type in the ABAP Dictionary&lt;/P&gt;&lt;P&gt;&amp;#149;	Field symbols [Extern]&lt;/P&gt;&lt;P&gt;You can initialize the global data before you start processing the start page. Usage examples are: conversion of selected application data, optimizing form logic by previously reorganizing internal tables, and so on.&lt;/P&gt;&lt;P&gt;On the Form routines tab you enter routines that you want to use in the form via the program lines node. Within these form routines you cannot access any global data unless you explicitly pass them to the form routine interface.&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;Sailaja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 09:27:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1580560#M261953</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1580561#M261954</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;&lt;/P&gt;&lt;P&gt;form interface-&amp;gt;&lt;/P&gt;&lt;P&gt;You define a form interface to send data from your application to a form. &lt;/P&gt;&lt;P&gt;The form interface is a part of the Interface form object and is defined in the Form Builder. The form interface of a form is structured in the same way as the interface of a function module in the system. However, form interfaces do not support Changing parameters. &lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/da/8fcc44d98b4e8bac6f102aa1fc69cc/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/da/8fcc44d98b4e8bac6f102aa1fc69cc/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;global definition in the smartform-&amp;gt;&lt;/P&gt;&lt;P&gt;. In Global definition we can define the all the global variables which can be used in Smartforms. Initialization &lt;/P&gt;&lt;P&gt;can be used for initializing the variables and even for retrieving the data.&lt;/P&gt;&lt;P&gt;&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, 26 Sep 2006 09:28:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1580561#M261954</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1580562#M261955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Sireesha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check out the thread.&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="2394465"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Also check &lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_470/helpdata/en/1c/f40c61ddf311d3b574006094192fe3/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_470/helpdata/en/1c/f40c61ddf311d3b574006094192fe3/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Richa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 10:38:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1580562#M261955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T10:38:15Z</dc:date>
    </item>
  </channel>
</rss>

