<?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: SMARTFORM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1701779#M307615</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sunil&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use program line option to get the different table data by using innerjoin statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Usman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Nov 2006 05:57:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-15T05:57:09Z</dc:date>
    <item>
      <title>SMARTFORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1701776#M307612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HOW TO RETRIEVE THE DATA FROM MULTIPLE TABLES IN SMART FORMS?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 05:49:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1701776#M307612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T05:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1701777#M307613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; You want to retrieve data inside smartforms? It is not advisable to do so. Because everytime you do some changes and activate the smartform, it will delete the underlying function module and recreate. So your code will also get regenerated eventhough you havent done any or very small change. But it is possible to add your code. For doing this you select the node in which u want to write code and then right click then go to the following path. CREAE-&amp;gt;FLOW LOGIC-&amp;gt;PROGRAM LINES. This u can do only in change mode.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 05:55:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1701777#M307613</guid>
      <dc:creator>former_member283648</dc:creator>
      <dc:date>2006-11-15T05:55:53Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1701778#M307614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Getting the function module name by form name&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&lt;/P&gt;&lt;P&gt;      formname           = 'YHR_TE_CADET'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      fm_name            = work_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;  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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Calling the generated function module&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION work_fm_name&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      control_parameters = work_cont&lt;/P&gt;&lt;P&gt;      user_settings      = 'X'&lt;/P&gt;&lt;P&gt;      general_data       = wa_general&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      lt_per_basic       = lt_per_basic&lt;/P&gt;&lt;P&gt;      lt_per_qual        = lt_per_qual&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'YHR_TE_CADET' - The name of your smartform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 05:56:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1701778#M307614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T05:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1701779#M307615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sunil&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use program line option to get the different table data by using innerjoin statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Usman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 05:57:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1701779#M307615</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T05:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1701780#M307616</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;in the smartfrom when you r accessing data from the multiple internal table you have to declare all the internal table name and the fields in the form interface tab and you can use the select statement to access the data in the Type tab.&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>Wed, 15 Nov 2006 05:58:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1701780#M307616</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T05:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1701781#M307617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI..TANKS FOR UR RESPONSE..&lt;/P&gt;&lt;P&gt;   wehre should we giv select statement either in smartformcode or in abap editor?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 06:06:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1701781#M307617</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T06:06:01Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1701782#M307618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;in smartforms right click in particuler window then &lt;DEL&gt;&amp;gt;create&lt;/DEL&gt;&amp;gt;program line.&lt;/P&gt;&lt;P&gt;in this program line like that abap editor for smartforms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;usman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 06:11:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1701782#M307618</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T06:11:27Z</dc:date>
    </item>
  </channel>
</rss>

