<?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 Open / close smartforms spool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-close-smartforms-spool/m-p/871913#M50041</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Could you advise me using FM SSF_OPEN / SSF_CLOSE instead of NO_OPEN/NO_CLOSE parameters of structure SSFCTRLOP. I would like to see it as an example.&lt;/P&gt;&lt;P&gt;I have some difficulties using FMs SSF_OPEN/SSF_CLOSE . How are they connected to the FM, calling the smartform. Is there any interface between the 3 FMs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Svetlin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Apr 2005 09:59:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-04-22T09:59:48Z</dc:date>
    <item>
      <title>Open / close smartforms spool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-close-smartforms-spool/m-p/871913#M50041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Could you advise me using FM SSF_OPEN / SSF_CLOSE instead of NO_OPEN/NO_CLOSE parameters of structure SSFCTRLOP. I would like to see it as an example.&lt;/P&gt;&lt;P&gt;I have some difficulties using FMs SSF_OPEN/SSF_CLOSE . How are they connected to the FM, calling the smartform. Is there any interface between the 3 FMs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Svetlin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Apr 2005 09:59:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-close-smartforms-spool/m-p/871913#M50041</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-22T09:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: Open / close smartforms spool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-close-smartforms-spool/m-p/871914#M50042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt; Please refer the following site. &lt;/P&gt;&lt;P&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="462531"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Elvis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2005 14:36:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-close-smartforms-spool/m-p/871914#M50042</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-16T14:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: Open / close smartforms spool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-close-smartforms-spool/m-p/871915#M50043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Svetlin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sorry but I've no solution with your FM, but a tip with NO_OPEN/NO_CLOSE parameters of structure SSFCTRLOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take a look at the following piece of code, it works fine in all cases : &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

describe table t_list_all lines w_lines.

  loop at t_list_all.

    st_ssfctrlop-no_open  = 'X'.
    st_ssfctrlop-no_close = 'X'.

    at first.
      st_ssfctrlop-no_open  = ' '. '' overwrite values
      st_ssfctrlop-no_close = 'X'.
    endat.

    at last.
      st_ssfctrlop-no_open  = 'X'. '' overwrite values
      st_ssfctrlop-no_close = ' '.
    endat.

    if w_lines eq 1.
      st_ssfctrlop-no_open  = ' '. '' overwrite values
      st_ssfctrlop-no_close = ' '.
    endif.


    call function nom_fonction
        exporting
*     ARCHIVE_INDEX              =
*     ARCHIVE_INDEX_TAB          =
*     ARCHIVE_PARAMETERS         =
      control_parameters         = st_ssfctrlop
*     MAIL_APPL_OBJ              =
*     MAIL_RECIPIENT             =
*     MAIL_SENDER                =
      output_options             = st_ssfcompop
      user_settings              = ' '
...

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps,&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;Erwan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Erwan LE BRUN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2005 14:59:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-close-smartforms-spool/m-p/871915#M50043</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-16T14:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: Open / close smartforms spool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-close-smartforms-spool/m-p/871916#M50044</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 these links.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/64/bf2f12ed1711d4b655006094192fe3/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/64/bf2f12ed1711d4b655006094192fe3/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/3b/bb186ddb4441a7875a11d46ea6580d/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/3b/bb186ddb4441a7875a11d46ea6580d/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2005 04:14:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-close-smartforms-spool/m-p/871916#M50044</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-06-17T04:14:43Z</dc:date>
    </item>
  </channel>
</rss>

