<?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 FUNCTION MODULE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3270799#M781845</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one plz give the Code to the Function Module CONVERT_RTF_TO_ITF .I mean what are the parametrs need to pass and with data declarations also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Jan 2008 14:24:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-03T14:24:24Z</dc:date>
    <item>
      <title>FUNCTION MODULE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3270799#M781845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one plz give the Code to the Function Module CONVERT_RTF_TO_ITF .I mean what are the parametrs need to pass and with data declarations also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jan 2008 14:24:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3270799#M781845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-03T14:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: FUNCTION MODULE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3270800#M781846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looking at the FM ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to use the parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SSHEET - Print format; only effective for print format conversion &lt;/P&gt;&lt;P&gt;WITH_TAB - Print format conversion; 'X' = yes or ' ' = no &lt;/P&gt;&lt;P&gt;MASK_BRACKETS - use default X&lt;/P&gt;&lt;P&gt;ITF_LINES - Your SAPscript&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: &lt;/P&gt;&lt;P&gt;SSHEET(1)&lt;/P&gt;&lt;P&gt;WITH_TAB like TDBOOL&lt;/P&gt;&lt;P&gt;MASK_BRACKETS like TDBOOL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITF_LINES type table of TLINE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jan 2008 14:37:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3270800#M781846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-03T14:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: FUNCTION MODULE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3270801#M781847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;all the parameters which are NOT checked with Optional check box are mandatory fields to be given as input&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jan 2008 14:39:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3270801#M781847</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-01-03T14:39:11Z</dc:date>
    </item>
    <item>
      <title>Re: FUNCTION MODULE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3270802#M781848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shiva&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls see the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Pls reward pts if help.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERT_RTF_TO_ITF'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    header                  =&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SSHEET                  = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WITH_TAB                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MASK_BRACKETS           = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    x_datatab               =&lt;/P&gt;&lt;P&gt;    x_size                  =&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;  WITH_TAB_E              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;    itf_lines               =&lt;/P&gt;&lt;UL&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;  INVALID_TABLETYPE       = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MISSING_SIZE            = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                  = 3&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Pls reward pts if help.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jan 2008 14:44:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3270802#M781848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-03T14:44:59Z</dc:date>
    </item>
  </channel>
</rss>

