<?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 and its internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550429#M580652</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The tables parameter that you pass in the driver program will be passed to the TAbles defined in the Form interface section of the smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This table can be used in&lt;/P&gt;&lt;P&gt;either&lt;/P&gt;&lt;P&gt;1) TABLE element or&lt;/P&gt;&lt;P&gt;2) LOOP element&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example you can define a loop element inside a main window&lt;/P&gt;&lt;P&gt;and inside the loop element , a text element to print each line of the internal table.&lt;/P&gt;&lt;P&gt;This loop element will print multiple lines of data that is passed using the tables parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As an example you can have a look at the sample driver program:SF_EXAMPLE_03 and form SF_EXAMPLE_03&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Jul 2007 10:37:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-18T10:37:10Z</dc:date>
    <item>
      <title>smartforms and its internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550424#M580647</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;From the main program, I call the FM SSF_FUNCTION_MODULE_NAME&lt;/P&gt;&lt;P&gt;and later "call lf_fm_name" as below shown.&lt;/P&gt;&lt;P&gt;The generated FM name gets an "internal table" in the tables parameter.&lt;/P&gt;&lt;P&gt;And now how can I to treat now this internal table within smart forms?&lt;/P&gt;&lt;P&gt;Please can you sequential explain the treatment. How can I acces&lt;/P&gt;&lt;P&gt;these datas of this internal table in the smartforms &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reagards&lt;/P&gt;&lt;P&gt;ilhan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
 EXPORTING
    formname                 = lv_pick_formname
*       VARIANT                  = ' '
*       DIRECT_CALL              = ' '
  IMPORTING
    fm_name                  = lf_fm_name
   EXCEPTIONS
     no_form                  = 1
     no_function_module       = 2
     OTHERS                   = 3.

  IF sy-subrc &amp;lt;&amp;gt; 0.
    IF sy-subrc = 1.
      MESSAGE e061.
    ELSEIF sy-subrc = 2.
      MESSAGE e062.
    ELSEIF sy-subrc = 3.
      MESSAGE e063.
    ENDIF.
  ENDIF.

  CALL FUNCTION lf_fm_name
  ....
  ...
  ..
      TABLES    lt_ausgabe_data       = lt_ausgabe_data&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:32:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550424#M580647</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms and its internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550425#M580648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Define one internal table in FORM interface of ur smartforms as like lt_ausgabe_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So that all the data from program will come to this internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This u can use in ur smartforms&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:35:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550425#M580648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms and its internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550426#M580649</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;lt_ausgabe_data should be declared in smartform in form interface section under tables.&lt;/P&gt;&lt;P&gt;lt_ausgabe_data like &amp;lt;structure_name&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Struture_name should be defined in dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link.It can help you.&lt;/P&gt;&lt;P&gt;&lt;A href="https://wiki.sdn.sap.com/wiki/display/Snippets/Smartform" target="test_blank"&gt;https://wiki.sdn.sap.com/wiki/display/Snippets/Smartform&lt;/A&gt;&lt;EM&gt;-&lt;/EM&gt;How&lt;EM&gt;to&lt;/EM&gt;avoid&lt;EM&gt;the&lt;/EM&gt;dialog+box&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:35:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550426#M580649</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2007-07-18T10:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms and its internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550427#M580650</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;In SMARTFORMS - Global settings - Form interface. Here you can find/define all relevant parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:35:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550427#M580650</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms and its internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550428#M580651</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 have pass the internal table through call lf_fm_name in print program.&lt;/P&gt;&lt;P&gt;In smartforms you just declare the table name in tables tab of definitions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will automatically give you the print program internal table values in your smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:36:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550428#M580651</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms and its internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550429#M580652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The tables parameter that you pass in the driver program will be passed to the TAbles defined in the Form interface section of the smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This table can be used in&lt;/P&gt;&lt;P&gt;either&lt;/P&gt;&lt;P&gt;1) TABLE element or&lt;/P&gt;&lt;P&gt;2) LOOP element&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example you can define a loop element inside a main window&lt;/P&gt;&lt;P&gt;and inside the loop element , a text element to print each line of the internal table.&lt;/P&gt;&lt;P&gt;This loop element will print multiple lines of data that is passed using the tables parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As an example you can have a look at the sample driver program:SF_EXAMPLE_03 and form SF_EXAMPLE_03&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:37:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550429#M580652</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms and its internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550430#M580653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what ever you pass from program to smartforms you need to declare in &lt;/P&gt;&lt;P&gt;GLOBAL INTERFACE -&amp;gt; Import parameter.(in the driver program export parameter). make sure u use the same name in the SMARTFORM GLOBAL INTERFACE - &amp;gt; import parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for more about smartforms go thru these link &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for Smartforms material&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-basis-abap.com/sapsf001.htm" target="test_blank"&gt;http://www.sap-basis-abap.com/sapsf001.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-press.com/downloads/h955_preview.pdf" target="test_blank"&gt;http://www.sap-press.com/downloads/h955_preview.pdf&lt;/A&gt;&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;A href="http://www.sap-img.com/smartforms/sap-smart-forms.htm" target="test_blank"&gt;http://www.sap-img.com/smartforms/sap-smart-forms.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/smartforms/smartform-tutorial.htm" target="test_blank"&gt;http://www.sap-img.com/smartforms/smartform-tutorial.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/smartforms.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/smartforms.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to trace smartform&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.help.sap.com/bp_presmartformsv1500/DOCU/OVIEW_EN.PDF" target="test_blank"&gt;http://www.help.sap.com/bp_presmartformsv1500/DOCU/OVIEW_EN.PDF&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/smartforms/smart-006.htm" target="test_blank"&gt;http://www.sap-img.com/smartforms/smart-006.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm" target="test_blank"&gt;http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm&lt;/A&gt;&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="1234083"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check most imp link&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html" target="test_blank"&gt;http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;step by step good ex link is....&lt;/P&gt;&lt;P&gt;&lt;A href="http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html" target="test_blank"&gt;http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the tables TNAPR and TTXFP for Standard Smartforms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the note 595812: it explain how to download the preconfigured smartforms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Detailed information can be accessed at the site:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://service.sap.com/preconfiguredforms" target="test_blank"&gt;http://service.sap.com/preconfiguredforms&lt;/A&gt; OR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://service.sap.com/smb/development/preconfiguredforms" target="test_blank"&gt;http://service.sap.com/smb/development/preconfiguredforms&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To download preconfigured smartform package, please:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Go to &lt;A href="http://service.sap.com/installations" target="test_blank"&gt;http://service.sap.com/installations&lt;/A&gt;, select tab "download".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. On the right hand side screen, locate navigation tree node&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP Software Distribution Center-&amp;gt;Download-&amp;gt;Installations and Upgrades-&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Entry by Application Group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. In the main window (right hand side), follow the path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP Best Practices-&amp;gt;Best Practices for mySAP All-in-One-&amp;gt; PRECONFIGURED&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SMART FORMS, you can find available preconfigured smartform versions.&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;&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if it is helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:38:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550430#M580653</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms and its internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550431#M580654</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;create one structure in se11 with same fields of your internal table ,in smart forms go to &lt;/P&gt;&lt;P&gt;form interface -&amp;gt;tables&lt;/P&gt;&lt;P&gt;mention internal table type table of structure&lt;/P&gt;&lt;P&gt;             work area type structure &lt;/P&gt;&lt;P&gt;then loop this internal table             &lt;/P&gt;&lt;P&gt;you can go through these links &lt;/P&gt;&lt;P&gt;smartforms&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVSCRSF/BCSRVSCRSF.pdf" target="test_blank"&gt;http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVSCRSF/BCSRVSCRSF.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-basis-abap.com/sapsf001.htm" target="test_blank"&gt;http://www.sap-basis-abap.com/sapsf001.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-press.com/downloads/h955_preview.pdf" target="test_blank"&gt;http://www.sap-press.com/downloads/h955_preview.pdf&lt;/A&gt;&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;A href="http://www.sap-img.com/smartforms/sap-smart-forms.htm" target="test_blank"&gt;http://www.sap-img.com/smartforms/sap-smart-forms.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/smartforms/smartform-tutorial.htm" target="test_blank"&gt;http://www.sap-img.com/smartforms/smartform-tutorial.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/smartforms.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/smartforms.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/smartforms.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/smartforms.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/smartforms/sap-smart-forms.htm" target="test_blank"&gt;http://www.sap-img.com/smartforms/sap-smart-forms.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/a5/de6838abce021ae10000009b38f842/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/a5/de6838abce021ae10000009b38f842/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/printdocu/core/Print46c/en/Data/htm/english.htm" target="test_blank"&gt;http://help.sap.com/printdocu/core/Print46c/en/Data/htm/english.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/smartforms/smart-001.htm" target="test_blank"&gt;http://www.sap-img.com/smartforms/smart-001.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/smartforms/smartform-tutorial.htm" target="test_blank"&gt;http://www.sap-img.com/smartforms/smartform-tutorial.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/smartforms/smart-002.htm" target="test_blank"&gt;http://www.sap-img.com/smartforms/smart-002.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/smartforms.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/smartforms.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/smartforms/sap-smart-forms.htm" target="test_blank"&gt;http://www.sap-img.com/smartforms/sap-smart-forms.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-basis-abap.com/sapsf001.htm" target="test_blank"&gt;http://www.sap-basis-abap.com/sapsf001.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-press.com/downloads/h955_preview.pdf" target="test_blank"&gt;http://www.sap-press.com/downloads/h955_preview.pdf&lt;/A&gt;&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;A href="http://www.sap-img.com/smartforms/sap-smart-forms.htm" target="test_blank"&gt;http://www.sap-img.com/smartforms/sap-smart-forms.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/smartforms_detail.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/smartforms_detail.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:44:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550431#M580654</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms and its internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550432#M580655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Thank you very for so many replies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do I have to define additional internal table within my smartforms after I have had passed  internal table "lt_ausgabe_data" to the generated &lt;/P&gt;&lt;P&gt;FM named  CALL FUNCTION lf_fm_name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ilhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:47:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550432#M580655</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms and its internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550433#M580656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;U have the values in ur internal table lt_ausgabe_data in ur Z program&lt;/P&gt;&lt;P&gt;Then Go to smartforms...&lt;/P&gt;&lt;P&gt;Form interface define lt_ausgabe_data same as like ur program internal table.&lt;/P&gt;&lt;P&gt;Then data will be passed o this internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then Goto Global definitions ...Create one workarea as like lt_ausgabe_data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like in global definitons gibve..&lt;/P&gt;&lt;P&gt;itab like VBAK&lt;/P&gt;&lt;P&gt;in global defins create workarea like WAtype VBAK..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;an then create one table node or LOOP node or TEMPLATES node ...&lt;/P&gt;&lt;P&gt;there in &amp;lt;b&amp;gt;data tab give itab into wa.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Under that create textelements node and use as &lt;SUP&gt;&amp;amp;wa-vbln&amp;amp; &amp;amp;wa-AUAR&lt;/SUP&gt;&amp;amp; etc....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward if helpfull.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 11:08:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550433#M580656</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T11:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms and its internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550434#M580657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sumi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you wrote &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then Go to smartforms...&lt;/P&gt;&lt;P&gt;Form interface define lt_ausgabe_data same as like ur program internal table.&lt;/P&gt;&lt;P&gt;Then data will be passed o this internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This exatcly the most important part.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; define lt_ausgabe_data same as like ur program internal table&lt;/P&gt;&lt;P&gt;which tab strip here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will be passed o this internal table.&lt;/P&gt;&lt;P&gt;which internal table ?? I haven' t an internal table yet .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reagrds&lt;/P&gt;&lt;P&gt;Ilhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 11:18:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550434#M580657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T11:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms and its internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550435#M580658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then Go to smartforms...&lt;/P&gt;&lt;P&gt;Form interface define lt_ausgabe_data same as like ur program internal table.&lt;/P&gt;&lt;P&gt;Then data will be passed o this internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This exatcly the most important part.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;define lt_ausgabe_data same as like ur program internal table&lt;/P&gt;&lt;P&gt;which tab strip here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;InForm interface&lt;/P&gt;&lt;P&gt;in Tables Tab Give the internal table &lt;/P&gt;&lt;P&gt;itab like vbak&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will be passed o this internal table.&lt;/P&gt;&lt;P&gt;which internal table ?? I haven' t an internal table yet .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Now u have one internal table in forminterface.and u r passing the values from ur program.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;the data passed from ur program will be stored inthe internal table which u have declared  in form interface.&lt;/P&gt;&lt;P&gt;To process this values in smartforms.u have top create one work area.&lt;/P&gt;&lt;P&gt;Global definitions Global data Tab create work area like&lt;/P&gt;&lt;P&gt;wa type vbak.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Create LOOP node or tables node or template node.&lt;/P&gt;&lt;P&gt;there in DATA tab chck the internal table checkbox and itab into wa.&lt;/P&gt;&lt;P&gt;under this create one text elements and use &amp;amp;wa-vbeln&amp;amp;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ur program&lt;/P&gt;&lt;P&gt;CALL FUNCTION '/1BCDWB/SF00000009'&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;LI level="1" type="ul"&gt;&lt;P&gt;  ARCHIVE_INDEX_TAB          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ARCHIVE_PARAMETERS         =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CONTROL_PARAMETERS         =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MAIL_APPL_OBJ              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MAIL_RECIPIENT             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MAIL_SENDER                =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OUTPUT_OPTIONS             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  USER_SETTINGS              = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    v1                         =  'From Program'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  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;  tables&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;    itab                       =  itab&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FORMATTING_ERROR           = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  INTERNAL_ERROR             = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SEND_ERROR                 = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  USER_CANCELED              = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                     = 5&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;REWARD if HELPFULL.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 11:26:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-and-its-internal-table/m-p/2550435#M580658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T11:26:22Z</dc:date>
    </item>
  </channel>
</rss>

