<?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: material in smartforms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-in-smartforms/m-p/3451310#M829131</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;SMARTFORMS:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ADVANTAGES OF SMARTFORMS:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------" /&gt;&lt;P&gt;1. Smartforms does not require paragraph formats as a mandatory one.&lt;/P&gt;&lt;P&gt;2. Smartforms does not duplicate the data.&lt;/P&gt;&lt;P&gt;3. Smartforms are Client-independent and language-independent.&lt;/P&gt;&lt;P&gt;4. We can apply styles for the texts using Smartforms.&lt;/P&gt;&lt;P&gt;5. Print programs does not contain any function modules to call the form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SMARTFORMS is the Tcode to create smartforms in ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Smartforms has three components:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------" /&gt;&lt;P&gt;Global Settings:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------" /&gt;&lt;P&gt;1. Form Attributes - Holds the description about the smartform.&lt;/P&gt;&lt;P&gt;2. Form Interface - Holds the import and export parameters for the smartforms.&lt;/P&gt;&lt;P&gt;3. Global Definitions - Used to declare variables for the smartform that can be accessed by any component within the smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pages and Windows:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------" /&gt;&lt;P&gt;This area is used to create new pages, windows (header, footer, constant window, main window, variable window, graphic window).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Navigations to create Smartforms:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SMARTFORMS -&amp;gt; Specify form name starting with Z or Y -&amp;gt; Click on Create -&amp;gt; Opens an interface -&amp;gt; Enter short description -&amp;gt; Double click on Form Interface -&amp;gt; Specify following parameter in IMPORT tab button:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STR TYPE C&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; Expand Pages and Windows -&amp;gt; By default, a Main Window is present -&amp;gt; Right click on Main Window -&amp;gt; Create -&amp;gt; Text -&amp;gt; Opens Form Editor -&amp;gt; To go to line editor, Click on 'Txt Editor' pushbutton on the upper left corner of the form editor -&amp;gt; Specify the variable (&amp;amp;STR&amp;amp;) in the first line of line editor -&amp;gt; Come back -&amp;gt; Save -&amp;gt; Activate -&amp;gt; Execute -&amp;gt; Opens Form Builder with autogenerated function module for the smartform ('/1BCDWB/SF00000042') -&amp;gt; Copy the function module generated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To invoke the smartform from SE38 editor, Call the Function module and paste the FM copied from smart form function builder screen as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA NAME(10) VALUE 'INDIA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION '/1BCDWB/SF00000042'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    STR                        =    NAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; Save -&amp;gt; Activate -&amp;gt; Execute in the same way as Sapscript.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Navigations to pass internal table as an argument to Smartforms:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a smartform -&amp;gt; In the Form interface -&amp;gt; Click on Tables tab button -&amp;gt; Specify the following internal table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB LIKE MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; Double click on Global Definitions -&amp;gt; Specify the global variable as follows:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB1 LIKE MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; Expand Pages and Windows -&amp;gt; Right click on Main Window -&amp;gt; Create -&amp;gt; Table -&amp;gt; Click on Data tab button -&amp;gt; In the LOOP section, for the operand fields, specify the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB INTO ITAB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; Right click on Main Area -&amp;gt; Create -&amp;gt; Table Line -&amp;gt; In the Line Type input field, a line type called %LTYPE1 is automatically generated -&amp;gt; Select it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To create internal table fields, right click on Text cell -&amp;gt; Create -&amp;gt; Text -&amp;gt; Select General Attributes tab button -&amp;gt; Opens Form Editor -&amp;gt; Goto Line editor by clicking on 'Txt Editor' pushbutton -&amp;gt; Specify the following in the first line:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;ITAB1-MATNR&amp;amp;,,&amp;amp;ITAB1-MTART&amp;amp;,,&amp;amp;ITAB1-MBRSH&amp;amp;,,&amp;amp;ITAB1-MEINS&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; Come back -&amp;gt; Save -&amp;gt; Activate -&amp;gt; Execute -&amp;gt; Copy the autogenerated FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In SE38 program, specify the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA ITAB1 LIKE MARA OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM MARA INTO TABLE ITAB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION '/1BCDWB/SF00000043'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;  ITAB 	= 	ITAB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save -&amp;gt; Activate -&amp;gt; Execute in the same way as above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it will be useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Feb 2008 08:55:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-25T08:55:17Z</dc:date>
    <item>
      <title>material in smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-in-smartforms/m-p/3451303#M829124</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;&lt;/P&gt;&lt;P&gt;any one can send material in smartforms ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 08:03:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-in-smartforms/m-p/3451303#M829124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T08:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: material in smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-in-smartforms/m-p/3451304#M829125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt; give your requirement clearly yaar....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 08:04:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-in-smartforms/m-p/3451304#M829125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T08:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: material in smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-in-smartforms/m-p/3451305#M829126</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;Check the following link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapbrainsonline.com/TUTORIALS/TECHNICAL/SMARTFORMS_tutorial.html" target="test_blank"&gt;http://www.sapbrainsonline.com/TUTORIALS/TECHNICAL/SMARTFORMS_tutorial.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 08:07:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-in-smartforms/m-p/3451305#M829126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T08:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: material in smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-in-smartforms/m-p/3451306#M829127</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;Iam sending the links regarding smartforms pla check this it may solve ur issue .&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/saphelp_nw04s/helpdata/en/a5/de6838abce021ae10000009b38f842/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04s/helpdata/en/a5/de6838abce021ae10000009b38f842/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&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;&lt;A href="http://www.sapbrain.com/TUTORIALS/TECHNICAL/SMARTFORMS_tutorial.html" target="test_blank"&gt;http://www.sapbrain.com/TUTORIALS/TECHNICAL/SMARTFORMS_tutorial.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this linkls------&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/collaboration" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/collaboration&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2004/helpdata/en/a9/de6838abce021ae10000009b38f842/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2004/helpdata/en/a9/de6838abce021ae10000009b38f842/frameset.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/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;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;vasavi.&lt;/P&gt;&lt;P&gt;kindly reward if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 08:09:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-in-smartforms/m-p/3451306#M829127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T08:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: material in smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-in-smartforms/m-p/3451307#M829128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;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;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;/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;Check this link&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/smartforms/" target="test_blank"&gt;http://www.sap-img.com/smartforms/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Iam sending the links regarding smartforms pla check this it may solve ur issue .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04s/helpdata/en/a5/de6838abce021ae10000009b38f842/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04s/helpdata/en/a5/de6838abce021ae10000009b38f842/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&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;&lt;A href="http://www.sapbrain.com/TUTORIALS/TECHNICAL/SMARTFORMS_tutorial.html" target="test_blank"&gt;http://www.sapbrain.com/TUTORIALS/TECHNICAL/SMARTFORMS_tutorial.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this linkls------&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/collaboration" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/collaboration&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2004/helpdata/en/a9/de6838abce021ae10000009b38f842/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2004/helpdata/en/a9/de6838abce021ae10000009b38f842/frameset.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/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;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapbrainsonline.com/TUTORIALS/TECHNICAL/SMARTFORMS_tutorial.html" target="test_blank"&gt;http://www.sapbrainsonline.com/TUTORIALS/TECHNICAL/SMARTFORMS_tutorial.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 08:20:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-in-smartforms/m-p/3451307#M829128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T08:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: material in smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-in-smartforms/m-p/3451308#M829129</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;refer the links&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="501550"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="481596"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="403410"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3c5d9ae3-0501-0010-0090-bdfb2d458985" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3c5d9ae3-0501-0010-0090-bdfb2d458985&lt;/A&gt;&lt;/P&gt;&lt;P&gt;/people/vinod.chandran/blog/2005/08/23/using-final-window-in-smartforms&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 08:29:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-in-smartforms/m-p/3451308#M829129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T08:29:11Z</dc:date>
    </item>
    <item>
      <title>Re: material in smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-in-smartforms/m-p/3451309#M829130</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 href="http://sap-img.com/smartforms/sap-smart-forms.htm" target="test_blank"&gt;http://sap-img.com/smartforms/sap-smart-forms.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;check this.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 08:51:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-in-smartforms/m-p/3451309#M829130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T08:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: material in smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-in-smartforms/m-p/3451310#M829131</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;SMARTFORMS:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ADVANTAGES OF SMARTFORMS:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------" /&gt;&lt;P&gt;1. Smartforms does not require paragraph formats as a mandatory one.&lt;/P&gt;&lt;P&gt;2. Smartforms does not duplicate the data.&lt;/P&gt;&lt;P&gt;3. Smartforms are Client-independent and language-independent.&lt;/P&gt;&lt;P&gt;4. We can apply styles for the texts using Smartforms.&lt;/P&gt;&lt;P&gt;5. Print programs does not contain any function modules to call the form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SMARTFORMS is the Tcode to create smartforms in ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Smartforms has three components:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------" /&gt;&lt;P&gt;Global Settings:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------" /&gt;&lt;P&gt;1. Form Attributes - Holds the description about the smartform.&lt;/P&gt;&lt;P&gt;2. Form Interface - Holds the import and export parameters for the smartforms.&lt;/P&gt;&lt;P&gt;3. Global Definitions - Used to declare variables for the smartform that can be accessed by any component within the smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pages and Windows:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------" /&gt;&lt;P&gt;This area is used to create new pages, windows (header, footer, constant window, main window, variable window, graphic window).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Navigations to create Smartforms:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SMARTFORMS -&amp;gt; Specify form name starting with Z or Y -&amp;gt; Click on Create -&amp;gt; Opens an interface -&amp;gt; Enter short description -&amp;gt; Double click on Form Interface -&amp;gt; Specify following parameter in IMPORT tab button:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STR TYPE C&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; Expand Pages and Windows -&amp;gt; By default, a Main Window is present -&amp;gt; Right click on Main Window -&amp;gt; Create -&amp;gt; Text -&amp;gt; Opens Form Editor -&amp;gt; To go to line editor, Click on 'Txt Editor' pushbutton on the upper left corner of the form editor -&amp;gt; Specify the variable (&amp;amp;STR&amp;amp;) in the first line of line editor -&amp;gt; Come back -&amp;gt; Save -&amp;gt; Activate -&amp;gt; Execute -&amp;gt; Opens Form Builder with autogenerated function module for the smartform ('/1BCDWB/SF00000042') -&amp;gt; Copy the function module generated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To invoke the smartform from SE38 editor, Call the Function module and paste the FM copied from smart form function builder screen as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA NAME(10) VALUE 'INDIA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION '/1BCDWB/SF00000042'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    STR                        =    NAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; Save -&amp;gt; Activate -&amp;gt; Execute in the same way as Sapscript.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Navigations to pass internal table as an argument to Smartforms:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a smartform -&amp;gt; In the Form interface -&amp;gt; Click on Tables tab button -&amp;gt; Specify the following internal table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB LIKE MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; Double click on Global Definitions -&amp;gt; Specify the global variable as follows:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB1 LIKE MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; Expand Pages and Windows -&amp;gt; Right click on Main Window -&amp;gt; Create -&amp;gt; Table -&amp;gt; Click on Data tab button -&amp;gt; In the LOOP section, for the operand fields, specify the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB INTO ITAB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; Right click on Main Area -&amp;gt; Create -&amp;gt; Table Line -&amp;gt; In the Line Type input field, a line type called %LTYPE1 is automatically generated -&amp;gt; Select it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To create internal table fields, right click on Text cell -&amp;gt; Create -&amp;gt; Text -&amp;gt; Select General Attributes tab button -&amp;gt; Opens Form Editor -&amp;gt; Goto Line editor by clicking on 'Txt Editor' pushbutton -&amp;gt; Specify the following in the first line:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;ITAB1-MATNR&amp;amp;,,&amp;amp;ITAB1-MTART&amp;amp;,,&amp;amp;ITAB1-MBRSH&amp;amp;,,&amp;amp;ITAB1-MEINS&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; Come back -&amp;gt; Save -&amp;gt; Activate -&amp;gt; Execute -&amp;gt; Copy the autogenerated FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In SE38 program, specify the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA ITAB1 LIKE MARA OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM MARA INTO TABLE ITAB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION '/1BCDWB/SF00000043'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;  ITAB 	= 	ITAB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save -&amp;gt; Activate -&amp;gt; Execute in the same way as above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it will be useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 08:55:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-in-smartforms/m-p/3451310#M829131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T08:55:17Z</dc:date>
    </item>
  </channel>
</rss>

