<?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: regarding smartforms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874774#M50483</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 this link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/8fd773b3-0301-0010-eabe-82149bcc292e" target="test_blank"&gt;https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/8fd773b3-0301-0010-eabe-82149bcc292e&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think that will satisy your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not , get back to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Press F8 on that print screen and give output device as 'LOCL'.Then you can view the form in print preview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;J.Jayanthi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Jayanthi Jayaraman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 May 2005 05:06:30 GMT</pubDate>
    <dc:creator>jayanthi_jayaraman</dc:creator>
    <dc:date>2005-05-10T05:06:30Z</dc:date>
    <item>
      <title>regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874773#M50482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;I tried to execute smartforms demo program,&lt;/P&gt;&lt;P&gt;But.while executing itdisplays PRINT dailog box to user.&lt;/P&gt;&lt;P&gt;why is it..suppose i want to display only forms displaying in ABAP rather printing(which is next step after display).&lt;/P&gt;&lt;P&gt;how to avoid this print dailog box.do we have any demo program to test smartform workings&lt;/P&gt;&lt;P&gt;chandra&lt;/P&gt;&lt;P&gt;below is code sniippet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report sf_example_01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: carr_id type sbook-carrid,&lt;/P&gt;&lt;P&gt;      fm_name type rs38l_fnam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter:      p_custid type scustom-id default 1.&lt;/P&gt;&lt;P&gt;select-options: s_carrid for carr_id     default 'LH' to 'LH'.&lt;/P&gt;&lt;P&gt;parameter:      p_form   type tdsfname   default 'SF_EXAMPLE_01'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: customers   type ty_customers,&lt;/P&gt;&lt;P&gt;      bookings    type ty_bookings,&lt;/P&gt;&lt;P&gt;      connections type ty_connections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;get data&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  select * from scustom into table customers&lt;/P&gt;&lt;P&gt;           where id = p_custid&lt;/P&gt;&lt;P&gt;           order by primary key.&lt;/P&gt;&lt;P&gt;  select * from sbook into table bookings&lt;/P&gt;&lt;P&gt;           where customid = p_custid&lt;/P&gt;&lt;P&gt;           and   carrid   in s_carrid&lt;/P&gt;&lt;P&gt;           order by primary key.&lt;/P&gt;&lt;P&gt;  select * from spfli into table connections&lt;/P&gt;&lt;P&gt;           for all entries in bookings&lt;/P&gt;&lt;P&gt;           where carrid = bookings-carrid&lt;/P&gt;&lt;P&gt;           and   connid = bookings-connid&lt;/P&gt;&lt;P&gt;           order by primary key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;print data&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  formname           = p_form&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                variant            = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                direct_call        = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       importing  fm_name            = fm_name&lt;/P&gt;&lt;P&gt;       exceptions 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;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  error handling&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;    exit.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;now call the generated function module&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  call function fm_name&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_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;                  customers            = customers&lt;/P&gt;&lt;P&gt;                  bookings             = bookings&lt;/P&gt;&lt;P&gt;                  connections          = connections&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     importing  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;       exceptions 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;&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  error handling&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;Message was edited by: ambi chan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2005 04:51:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874773#M50482</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-10T04:51:50Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874774#M50483</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 this link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/8fd773b3-0301-0010-eabe-82149bcc292e" target="test_blank"&gt;https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/8fd773b3-0301-0010-eabe-82149bcc292e&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think that will satisy your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not , get back to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Press F8 on that print screen and give output device as 'LOCL'.Then you can view the form in print preview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;J.Jayanthi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Jayanthi Jayaraman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2005 05:06:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874774#M50483</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-05-10T05:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874775#M50484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to configure parameters for printing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let's try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. define some fields for parameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* for printing.

DATA: gs_control_parameters   TYPE ssfctrlop,
      gs_output_options       TYPE ssfcompop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. and then do it like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  gs_control_parameters-no_dialog = 'X'.
  gs_control_parameters-preview = 'X'. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. when you call fm_module, uncomment control_parameters!&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;	call function fm_name
	exporting
	* archive_index =
	* archive_parameters =
	control_parameters = gs_control_parameters
	* mail_appl_obj =
	* mail_recipient =
	* mail_sender =
	* output_options =
	* user_settings = 'X'
	....&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then, It doesn't display dailog box anymore, and preview the form...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wish I could help you.&lt;/P&gt;&lt;P&gt;good luck^^&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards &lt;/P&gt;&lt;P&gt;Kyung Woo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2005 05:22:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874775#M50484</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-10T05:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874776#M50485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey kyung woo nam,&lt;/P&gt;&lt;P&gt;thanks for your reply.&lt;/P&gt;&lt;P&gt;i tried ur settings.&lt;/P&gt;&lt;P&gt;i get error like this in status bar.&lt;/P&gt;&lt;P&gt;include text SF_ADRS_SENDER does not exist(Object TEXT, ID ADRS).&lt;/P&gt;&lt;P&gt;what to do now..should i have to create text or include text..can somebody guide here.&lt;/P&gt;&lt;P&gt;ambichan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2005 06:39:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874776#M50485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-10T06:39:17Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874777#M50486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ambichan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried the sample coding provided by me?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2005 06:43:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874777#M50486</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-05-10T06:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874778#M50487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi! ambi chan~~&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried your code, again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error is caused by smartform "SF_EXAMPLE_01", &lt;/P&gt;&lt;P&gt;look at that smartform's source, &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;-&amp;gt; from SF_EXAMPLE_01
 -&amp;gt; Pages and Windows
  -&amp;gt; Next page
   -&amp;gt; address customer address
    -- addr_incl inlude text for address&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can find text key field "SF_ADRS_SENDER",&lt;/P&gt;&lt;P&gt;but doesn't exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when your SAP-BC install ecucation programs(IDES) for SAP,&lt;/P&gt;&lt;P&gt;look like something is unstalled for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried other smartforms and it works~~~&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to make other smartforms, and using parameters for printing, I'm sure you can get what you want~&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a nice day~~&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regars &lt;/P&gt;&lt;P&gt;Kyung Woo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2005 06:58:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874778#M50487</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-10T06:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874779#M50488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey jayanthi,&lt;/P&gt;&lt;P&gt;Thanks for your link.&lt;/P&gt;&lt;P&gt;I am trying to create and execute the sample programs which you gave in link.&lt;/P&gt;&lt;P&gt;but i have two error while activating the FORM.&lt;/P&gt;&lt;P&gt;COuld you pls guide me..where i am going wrong.&lt;/P&gt;&lt;P&gt;1-Node-MAIN Error- Window MAIN does not fit onto page(width)&lt;/P&gt;&lt;P&gt;2-Node-%TABLE1 Error- Width of line type LINE does not correspond to total table width.&lt;/P&gt;&lt;P&gt;whats the meaning of the erro..i could not understand.&lt;/P&gt;&lt;P&gt;while trying to compile the form i get this error.&lt;/P&gt;&lt;P&gt;Moroever, In %table node,at Table tab, while i try to set values as 82.50 cm or 17.50 cm in LINE1, i get automatically converted to Commas(eg, 82,50 and 17,50). but in document it displays as Decimal point.&lt;/P&gt;&lt;P&gt;which one is correct.&lt;/P&gt;&lt;P&gt;pls guide me.&lt;/P&gt;&lt;P&gt;ambichan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2005 08:27:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874779#M50488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-10T08:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874780#M50489</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 that coding sample itself I mentioned the main window width and table width . Just check that. Moreover both TABLE and LINE width should be same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And regarding that commas , it is because of our user settings.It won't be problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If any problem, get back to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2005 08:34:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874780#M50489</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-05-10T08:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874781#M50490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey jeyanthi,&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;I solve this problem.but i have one more problem.&lt;/P&gt;&lt;P&gt;In sample program SF_EXAMPLE_01. i can see two pages&lt;/P&gt;&lt;P&gt;FIRST&amp;amp;NEXT pages as nodes having MAIN window in both PAGES with same name.&lt;/P&gt;&lt;P&gt;BUT When i create my own FORM and try to create two PAGES&lt;/P&gt;&lt;P&gt;FIRST&amp;amp;NEXTpages as nodes having MAIN window name in both pages leads to error saying MAIN Window already exists.&lt;/P&gt;&lt;P&gt;why cant we create two main windows in two different pages with same name?&lt;/P&gt;&lt;P&gt;ambichan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 May 2005 06:08:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874781#M50490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-11T06:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874782#M50491</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;For each page you can have a main window.&lt;/P&gt;&lt;P&gt;Refer this link.&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;/P&gt;&lt;P&gt;If your problem is solved,reward points for useful answers and close this thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;J.Jayanthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 May 2005 06:19:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874782#M50491</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-05-11T06:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874783#M50492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when the printer dialog comes: click on print preview or press f8.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2015 06:44:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/874783#M50492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-08-19T06:44:07Z</dc:date>
    </item>
  </channel>
</rss>

