<?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 smartforms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1078894#M97165</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I wat to send my smartform through fax.&lt;/P&gt;&lt;P&gt;Isthere any function module present for that.&lt;/P&gt;&lt;P&gt;A sample code will be very helpful.&lt;/P&gt;&lt;P&gt;Thanx in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Dec 2005 08:37:53 GMT</pubDate>
    <dc:creator>amit_khare</dc:creator>
    <dc:date>2005-12-05T08:37:53Z</dc:date>
    <item>
      <title>smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1078894#M97165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I wat to send my smartform through fax.&lt;/P&gt;&lt;P&gt;Isthere any function module present for that.&lt;/P&gt;&lt;P&gt;A sample code will be very helpful.&lt;/P&gt;&lt;P&gt;Thanx in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Dec 2005 08:37:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1078894#M97165</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2005-12-05T08:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1078895#M97166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this link it may help you.&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="915871"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Dec 2005 08:48:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1078895#M97166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-05T08:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1078896#M97167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;Hi Using this Fm..
SO_OBJECT_SEND

CALL FUNCTION 'SO_OBJECT_SEND'
     EXPORTING
*         EXTERN_ADDRESS             = ' '
*         FOLDER_ID                  = ' '
*         FORWARDER                  = ' '
*         OBJECT_FL_CHANGE           = ' '
          OBJECT_HD_CHANGE           = OBJ_HD_CHANGE
*         OBJECT_ID                  = ' '
          OBJECT_TYPE                = OBJ_TYPE
          OUTBOX_FLAG                = 'X' "fax into outbox
*         STORE_FLAG                 = ' '
*         DELETE_FLAG                = ' '
*         CHECK_ALREADY_SENT         = ' '
*         GIVE_OBJECT_BACK           =
          ORIGINATOR                 = ORIGINATOR            "B20K062716
          ORIGINATOR_TYPE            = 'B'                   "
     IMPORTING
          OBJECT_ID_NEW              = OBJ_ID_NEW
          SENT_TO_ALL                = sent_to_all
*         OFFICE_OBJECT_KEY          =
     TABLES
          OBJCONT                    = OFF_TAB
          OBJHEAD                    = HEAD_TAB
*         OBJPARA                    =
*         OBJPARB                    =
          RECEIVERS                  = REC_TAB
*         PACKING_LIST               =
*         ATT_CONT                   =
*         ATT_HEAD                   =
*         NOTE_TEXT                  =
*         LINK_LIST                  =
     EXCEPTIONS
          ACTIVE_USER_NOT_EXIST      = 1
          COMMUNICATION_FAILURE      = 2
          COMPONENT_NOT_AVAILABLE    = 3
          FOLDER_NOT_EXIST           = 4
          FOLDER_NO_AUTHORIZATION    = 5
          FORWARDER_NOT_EXIST        = 6
          NOTE_NOT_EXIST             = 7
          OBJECT_NOT_EXIST           = 8
          OBJECT_NOT_SENT            = 9
          OBJECT_NO_AUTHORIZATION    = 10
          OBJECT_TYPE_NOT_EXIST      = 11
          OPERATION_NO_AUTHORIZATION = 12
          OWNER_NOT_EXIST            = 13
          PARAMETER_ERROR            = 14
          SUBSTITUTE_NOT_ACTIVE      = 15
          SUBSTITUTE_NOT_DEFINED     = 16
          SYSTEM_FAILURE             = 17
          TOO_MUCH_RECEIVERS         = 18
          USER_NOT_EXIST             = 19
          X_ERROR                    = 20
          OTHERS                     = 21.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Dec 2005 08:52:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1078896#M97167</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-05T08:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1078897#M97168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanx Vijay .It has solved the problem&lt;/P&gt;&lt;P&gt;Due to some error i am not able to reward points. I'll surely do ASAP.&lt;/P&gt;&lt;P&gt;AMIT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Dec 2005 09:04:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1078897#M97168</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2005-12-05T09:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1078898#M97169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanx Venu .&lt;/P&gt;&lt;P&gt;It has solved the problem&lt;/P&gt;&lt;P&gt;Due to some error i am not able to reward points. I'll surely do ASAP.&lt;/P&gt;&lt;P&gt;AMIT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Dec 2005 09:04:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1078898#M97169</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2005-12-05T09:04:24Z</dc:date>
    </item>
  </channel>
</rss>

