<?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: sf --fun in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sf-fun/m-p/1882708#M370573</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SSF_FUNCTION_MODULE_NAME is used to get the function module for the corresponding smart form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically function modules starts with SSF are used for smart form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Jan 2007 07:30:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-26T07:30:19Z</dc:date>
    <item>
      <title>sf --fun</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sf-fun/m-p/1882707#M370572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what r the function modules used in the smart form&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2007 07:27:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sf-fun/m-p/1882707#M370572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-26T07:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: sf --fun</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sf-fun/m-p/1882708#M370573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SSF_FUNCTION_MODULE_NAME is used to get the function module for the corresponding smart form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically function modules starts with SSF are used for smart form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2007 07:30:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sf-fun/m-p/1882708#M370573</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-26T07:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: sf --fun</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sf-fun/m-p/1882709#M370574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Generally 2 function modules&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  call function 'SSF_FUNCTION_MODULE_NAME'
       exporting  formname           = p_form
*                 variant            = ' '
*                 direct_call        = ' '
       importing  fm_name            = fm_name
       exceptions no_form            = 1
                  no_function_module = 2
                  others             = 3.

  if sy-subrc &amp;lt;&amp;gt; 0.
*   error handling
    message id sy-msgid type sy-msgty number sy-msgno
            with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    exit.
  endif.

* now call the generated function module
  call function fm_name
       exporting
*                 archive_index        =
*                 archive_parameters   =
*                 control_parameters   =
*                 mail_appl_obj        =
*                 mail_recipient       =
*                 mail_sender          =
*                 output_options       =
*                 user_settings        = 'X'
                  customer             = customer
                  bookings             = bookings
                  connections          = connections
*      importing  document_output_info =
*                 job_output_info      =
*                 job_output_options   =
       exceptions formatting_error     = 1
                  internal_error       = 2
                  send_error           = 3
                  user_canceled        = 4
                  others               = 5.

  if sy-subrc &amp;lt;&amp;gt; 0.
*   error handling
    message id sy-msgid type sy-msgty number sy-msgno
            with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;VJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2007 07:31:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sf-fun/m-p/1882709#M370574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-26T07:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: sf --fun</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sf-fun/m-p/1882710#M370575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;to use smart form use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE_FORM&lt;/P&gt;&lt;P&gt;OPEN_FORM&lt;/P&gt;&lt;P&gt;CLOSE_FORM&lt;/P&gt;&lt;P&gt;CONTROL_FORM&lt;/P&gt;&lt;P&gt;WRITE_FORM_LINES&lt;/P&gt;&lt;P&gt;READ_FORM_LINES&lt;/P&gt;&lt;P&gt;DISPLAY_TEXT_EXIT_TX&lt;/P&gt;&lt;P&gt;START_FORM&lt;/P&gt;&lt;P&gt;END_FORM&lt;/P&gt;&lt;P&gt;READ_FORM_ELEMENTS&lt;/P&gt;&lt;P&gt;CONVERT_OTF_MEMORY&lt;/P&gt;&lt;P&gt;GET_TEXT_PRINT_PARAMETERS&lt;/P&gt;&lt;P&gt;RDI_TRANSFER_LABEL&lt;/P&gt;&lt;P&gt;RDI_FILL_SORTFIELDS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2007 07:36:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sf-fun/m-p/1882710#M370575</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2007-01-26T07:36:40Z</dc:date>
    </item>
  </channel>
</rss>

