<?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/1119746#M108610</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ranjan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only you should manage the opening and closing of SF dialog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This step usually is done from fm of the sf, but you can manage it by yourself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- 1) Open dialog for print:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SSF_OPEN'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXPORTING&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;  USER_SETTINGS            = 'X'&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;  MAIL_RECIPIENT           =&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;  OUTPUT_OPTIONS           =&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;IMPORTING&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;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;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ENDIF. &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you call all sf you need to print:&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           = 'ZSMART_1'&lt;/P&gt;&lt;P&gt;        importing&lt;/P&gt;&lt;P&gt;          fm_name            = fm_name_1&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Remember you're managing the open out of sf, so&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ssfctrlop-no_open = 'X'.&lt;/P&gt;&lt;P&gt;    ssfctrlop-no_close = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    call function fm_name&lt;/P&gt;&lt;P&gt;      exporting&lt;/P&gt;&lt;P&gt;        ..........&lt;/P&gt;&lt;P&gt;        control_parameters = ssfctrlop&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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Next sf&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      call function 'SSF_FUNCTION_MODULE_NAME'&lt;/P&gt;&lt;P&gt;        exporting&lt;/P&gt;&lt;P&gt;          formname           = 'ZSMART_2'&lt;/P&gt;&lt;P&gt;        importing&lt;/P&gt;&lt;P&gt;          fm_name            = fm_name_2&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;&lt;/P&gt;&lt;P&gt;    call function fm_name_2&lt;/P&gt;&lt;P&gt;      exporting&lt;/P&gt;&lt;P&gt;        ..........&lt;/P&gt;&lt;P&gt;        control_parameters = ssfctrlop&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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.....and so&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2- Close print&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SSF_CLOSE'&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;  JOB_OUTPUT_INFO        =&lt;/P&gt;&lt;/LI&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;  OTHERS                 = 4&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Feb 2006 09:24:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-07T09:24:29Z</dc:date>
    <item>
      <title>Smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1119745#M108609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to call multiple layouts in Smartform.&lt;/P&gt;&lt;P&gt;Ex., start form and end form in Scripts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks,&lt;/P&gt;&lt;P&gt;Ranjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2006 09:12:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1119745#M108609</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-07T09:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: Smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1119746#M108610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ranjan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only you should manage the opening and closing of SF dialog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This step usually is done from fm of the sf, but you can manage it by yourself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- 1) Open dialog for print:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SSF_OPEN'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXPORTING&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;  USER_SETTINGS            = 'X'&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;  MAIL_RECIPIENT           =&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;  OUTPUT_OPTIONS           =&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;IMPORTING&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;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;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ENDIF. &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you call all sf you need to print:&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           = 'ZSMART_1'&lt;/P&gt;&lt;P&gt;        importing&lt;/P&gt;&lt;P&gt;          fm_name            = fm_name_1&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Remember you're managing the open out of sf, so&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ssfctrlop-no_open = 'X'.&lt;/P&gt;&lt;P&gt;    ssfctrlop-no_close = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    call function fm_name&lt;/P&gt;&lt;P&gt;      exporting&lt;/P&gt;&lt;P&gt;        ..........&lt;/P&gt;&lt;P&gt;        control_parameters = ssfctrlop&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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Next sf&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      call function 'SSF_FUNCTION_MODULE_NAME'&lt;/P&gt;&lt;P&gt;        exporting&lt;/P&gt;&lt;P&gt;          formname           = 'ZSMART_2'&lt;/P&gt;&lt;P&gt;        importing&lt;/P&gt;&lt;P&gt;          fm_name            = fm_name_2&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;&lt;/P&gt;&lt;P&gt;    call function fm_name_2&lt;/P&gt;&lt;P&gt;      exporting&lt;/P&gt;&lt;P&gt;        ..........&lt;/P&gt;&lt;P&gt;        control_parameters = ssfctrlop&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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.....and so&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2- Close print&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SSF_CLOSE'&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;  JOB_OUTPUT_INFO        =&lt;/P&gt;&lt;/LI&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;  OTHERS                 = 4&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2006 09:24:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1119746#M108610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-07T09:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: Smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1119747#M108611</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;U have to use FM SSF_FUNCTION_MODULE_NAME in ur driver program Which generate one FM name. So,Pass ur parameters to that FM. Here ur FM name is generated at runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eg.&lt;/P&gt;&lt;P&gt;TABLES : mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : it LIKE mara OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : fm TYPE rs38l_fnam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : p_matnr FOR mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT * FROM mara INTO TABLE it&lt;/P&gt;&lt;P&gt;  WHERE matnr IN p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SORT it BY matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&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           = 'YSDM_INV_COV_LETTER'&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        fm_name            = fm&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&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        it = it.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Digesh Panchal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2006 09:31:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1119747#M108611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-07T09:31:42Z</dc:date>
    </item>
    <item>
      <title>Re: Smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1119748#M108612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear all&lt;/P&gt;&lt;P&gt;How to call a smart form if there are multiple vendors?&lt;/P&gt;&lt;P&gt;the requirement is for every new vendor the  page number must be reset to 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards &lt;/P&gt;&lt;P&gt;ranjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2006 12:32:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1119748#M108612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-08T12:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: Smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1119749#M108613</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;Use the event inside the loop or table whatever it is.Inside that reset a variable to one each time when new vender came inside the loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Text element to print the variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly reward points by clicking the star on the left of reply,if it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2006 12:39:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1119749#M108613</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-02-08T12:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: Smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1119750#M108614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use COMMAND Node to generate New-page based on condition&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2006 13:07:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1119750#M108614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-08T13:07:41Z</dc:date>
    </item>
  </channel>
</rss>

