<?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/1459414#M216983</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinay,&lt;/P&gt;&lt;P&gt;        You have to pass the internal tables in the form interface(IMPORT)in the smartforms.In 'TABLES' pass the table if any you are using.When you are posting the query there will be three points on the left of your query panel.Click on one of the point.In that way you can reward us.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass the quotation number to the FM(SMARTFORM) itself and declare it in the global definition in the smartforms and use it at the place you need it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Jun 2006 05:46:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-16T05:46:53Z</dc:date>
    <item>
      <title>smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1459413#M216982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi gurus,&lt;/P&gt;&lt;P&gt;       thnks for earlier inputs. plz let me know(path) how to reward u points as i'm new to ABAP.&lt;/P&gt;&lt;P&gt;       extremely sorry for not rewarding for ur earlier inputs.&lt;/P&gt;&lt;P&gt;       my question is how to pass data from driver/print program to smartform. where should i declare internal tables in smartform in form interface(import, export, tables n exceptions).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       i've declared 3 internal tables in print program how to pass them when i call the function module of smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      one more query i wanna display the quotation number in the form which will b inputted at selection screen of driver program. plz help me with code ASAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kind regards,&lt;/P&gt;&lt;P&gt;vinay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 05:40:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1459413#M216982</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T05:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1459414#M216983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinay,&lt;/P&gt;&lt;P&gt;        You have to pass the internal tables in the form interface(IMPORT)in the smartforms.In 'TABLES' pass the table if any you are using.When you are posting the query there will be three points on the left of your query panel.Click on one of the point.In that way you can reward us.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass the quotation number to the FM(SMARTFORM) itself and declare it in the global definition in the smartforms and use it at the place you need it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 05:46:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1459414#M216983</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T05:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1459415#M216984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vinay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. In the SMART Forms, in the INTERFACE variables section you can declare you import / export variables or tables. The tables should have a corresponding strcuture in the data dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Quotation No., you just pass that to SMART Form and display the same using a text element and it should be of the format you want.&lt;/P&gt;&lt;P&gt;&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>Fri, 16 Jun 2006 05:51:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1459415#M216984</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T05:51:50Z</dc:date>
    </item>
    <item>
      <title>Re: smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1459416#M216985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check the code for passing internal tables from print program to smartform.&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;       IMPORTING&lt;/P&gt;&lt;P&gt;            fm_name            = 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;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION fm_name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      itab_post                   = itab_post&lt;/P&gt;&lt;P&gt;      exp_obj44                  = exp_obj44&lt;/P&gt;&lt;P&gt;      exp_obj66                  = exp_obj66&lt;/P&gt;&lt;P&gt;      copy_fund                  = copy_fund&lt;/P&gt;&lt;P&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;&lt;/P&gt;&lt;P&gt;you have to check on radio buttons for rewarding points.&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;Wasim Ahmed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 05:52:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1459416#M216985</guid>
      <dc:creator>dani_mn</dc:creator>
      <dc:date>2006-06-16T05:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1459417#M216986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have sent you some documents.&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;Also Check the following Links&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/smartforms_described.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/smartforms_described.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;P&gt;&lt;A href="http://www.sapgenie.com/abap/smartforms_sapscript.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/smartforms_sapscript.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;Sreenivasulu P&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 05:53:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1459417#M216986</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T05:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1459418#M216987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinay,&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;1&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;So u have created 3 itabs in driver program,If u want to pass those 3 to Smartform ,those 3 table should be used there in smartform as well with same structure .&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;2&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;Go to SE11 T.code .&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;3&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;Create Structure ZSITAB under Data type (fields are which fields ur internal table has )&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;4&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;Create table type ZTITAB under Data type (Assigne line type as ZSITAB ).&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;5&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;That is global Internal table .Y u r creating here is u cant create Internal table with ur own fields in Smartform&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;6&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;Now create Interface Internal table in Global Settings .&lt;/P&gt;&lt;P&gt;like this .&lt;/P&gt;&lt;P&gt;Global Settings-&amp;gt;Form Interface-&amp;gt;Tables Tab.&lt;/P&gt;&lt;P&gt;i_ccode like ZTITAB.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;7&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;And also create Work area &lt;/P&gt;&lt;P&gt;Global Settings-&amp;gt;Global Definitions-&amp;gt;Global Data&lt;/P&gt;&lt;P&gt;w_ccode like ZSITAB.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;8&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;Create Table Node .&lt;/P&gt;&lt;P&gt;Right click on Mainwindow-&amp;gt;Create-&amp;gt;Table &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;9&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;Under main Area .Loop ur internal table and display .&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;10&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;Once you activate ur Smartform and Execute u will get Smartform Function module like this &amp;lt;b&amp;gt;/1BCDWB/SF00000058&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;11&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;Take that FM and call in ur Driver program .Then pass ur internal tables .Samething applies for Variables as well.&lt;/P&gt;&lt;P&gt;Ex:Quotation number.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;12&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;Once u change Smartform and activate every time new Function module is generated .To get the latest one &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We use the below FM&lt;/P&gt;&lt;P&gt;  CALL FUNCTION &amp;lt;b&amp;gt;'SSF_FUNCTION_MODULE_NAME'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      formname           = c_form&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      fm_name            = g_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;    CLEAR g_fm_name.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  &amp;lt;b&amp;gt;CALL FUNCTION g_fm_name&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      control_parameters      = gs_control_parameters&lt;/P&gt;&lt;P&gt;      output_options          = gs_output_options&lt;/P&gt;&lt;P&gt;      user_settings           = g_user_settings&lt;/P&gt;&lt;P&gt;      s_doc_processing        = s_doc_processing&lt;/P&gt;&lt;P&gt;      s_header_display        = s_header_display&lt;/P&gt;&lt;P&gt;      s_header_texts          = s_header_texts&lt;/P&gt;&lt;P&gt;      s_header_status         = s_header_status&lt;/P&gt;&lt;P&gt;      i_header_appraiser      = i_header_appraiser&lt;/P&gt;&lt;P&gt;      i_header_appraisee      = i_header_appraisee&lt;/P&gt;&lt;P&gt;      i_header_part_appraiser = i_header_part_appraiser&lt;/P&gt;&lt;P&gt;      i_header_other          = i_header_others&lt;/P&gt;&lt;P&gt;      i_header_dates          = s_header_dates&lt;/P&gt;&lt;P&gt;      i_header_add_data       = i_header_add_data&lt;/P&gt;&lt;P&gt;      i_body_columns          = i_body_columns&lt;/P&gt;&lt;P&gt;      i_body_elements         = i_body_elements&lt;/P&gt;&lt;P&gt;      i_body_cells            = i_body_cells&lt;/P&gt;&lt;P&gt;      i_body_cell_notes       = i_body_cell_notes&lt;/P&gt;&lt;P&gt;      i_body_element_descr    = i_body_element_descr&lt;/P&gt;&lt;P&gt;      i_body_cell_val_values  = i_body_cell_val_values&lt;/P&gt;&lt;P&gt;      i_body_cell_val_ranges  = i_body_cell_val_ranges&lt;/P&gt;&lt;P&gt;      i_body_cell_val_c_like  = i_body_cell_val_c_like&lt;/P&gt;&lt;P&gt;      i_body_cell_val_descr   = i_body_cell_val_descr&lt;/P&gt;&lt;P&gt;      g_pernr                 = i_final-pernr&lt;/P&gt;&lt;P&gt;      g_dprtt                 = i_final-dprtt&lt;/P&gt;&lt;P&gt;      g_trfgr                 = i_final-trfgr&lt;/P&gt;&lt;P&gt;      g_stext                 = i_final-job_name&lt;/P&gt;&lt;P&gt;      g_supervisor            = i_final-supervisor&lt;/P&gt;&lt;P&gt;      g_ename                 = i_final-ename&lt;/P&gt;&lt;P&gt;      g_appraisal_id          = w_document_id-appraisal_id&lt;/P&gt;&lt;P&gt;      g_element_id            = g_element_id&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      job_output_info         = gs_output_info&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;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF.        "SUBRC: smartforms function module call ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope that this may help u little bit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Thanks,&lt;/P&gt;&lt;P&gt;Venkat.O&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 06:51:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1459418#M216987</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2006-06-16T06:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1459419#M216988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi venkaiah O,&lt;/P&gt;&lt;P&gt;          thaks for ur valuable tips. i m sending u my clear problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       i created a 3 internal tables namely i_vbpa, i_adrc n i_kna1 with required fields in the driver program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  i getting the relevant data while debugging. but im unable to pass it to the smartform. the prog is executed without data in the print preview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; plz tell how to create the same internal tables in the smartform builder(form interface). plz tell me where to declare them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; can i use the master table instead of creating structure in se11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; plz send me ur email id. so that i can ssend the layout to u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need ur help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly send me the code ASAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kind regards,&lt;/P&gt;&lt;P&gt;vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 08:49:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1459419#M216988</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T08:49:08Z</dc:date>
    </item>
    <item>
      <title>Re: smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1459420#M216989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi vinay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are planning to send i_vbpa, i_adrc, i_kna1 these internal tables, you must have to define them in the layout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, go to Layout, Form Interface , Tables section.&lt;/P&gt;&lt;P&gt;Under tables, give it as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IS_VBPA  TYPE VBPA&lt;/P&gt;&lt;P&gt;IS_ADRC  TYPE ADRC&lt;/P&gt;&lt;P&gt;IS_KNA1  TYPE KNA1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create work areas in the Global Fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WA_VBPA TYPE vbpa&lt;/P&gt;&lt;P&gt;WA_ADRC TYPE ADRC&lt;/P&gt;&lt;P&gt;WA_KNA1 TYPE KNA1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can use those internal tables and work areas in the Windows as you like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you have any problesm you can email me on &lt;/P&gt;&lt;P&gt;subba.reddy@rs-components.com&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;ram&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward points if it is helpfull&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 08:55:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1459420#M216989</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T08:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1459421#M216990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;1&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;U can create ur ITABS referring master table&lt;/P&gt;&lt;P&gt;Global settings-&amp;gt;Form Interface-&amp;gt;Tables &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_vbpa Like vbpa&lt;/P&gt;&lt;P&gt;i_adrc like adrc&lt;/P&gt;&lt;P&gt;i_kna1 like kna1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;2&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;My mail Id :venkataiah.oray@philips.com&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;3&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;U can debug Smartform like this.&lt;/P&gt;&lt;P&gt;Execute SMARTform -&amp;gt;U will see Function module name-&amp;gt;Go to menu-&amp;gt;Main Program &amp;gt;Click on thitd include -&amp;gt;Search for Loop at urtable name.&lt;/P&gt;&lt;P&gt;Check here whether u r getting values in the smartform or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Thanks,&lt;/P&gt;&lt;P&gt;Venkat.O&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Venkat.O&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 09:09:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1459421#M216990</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2006-06-16T09:09:10Z</dc:date>
    </item>
  </channel>
</rss>

