<?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 ITF format conversion . in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/itf-format-conversion/m-p/6887373#M1479490</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everyone ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing some issues while using the standard function module :IQS4_GET_NOTIFICATION. &lt;/P&gt;&lt;P&gt;The function module returns the comments in the internal table in "ITF format" or SAP Script format for QMNUM (importing parameter) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg : &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;04.05.2010 19:41:24 Z_HR_MSS01&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;No comments provided&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;C&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;04.05.2010 19:41:29 Z_HR_MSS01&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;/ Request routed to HR Connect for further Processing.&lt;/P&gt;&lt;P&gt;/ Initial Conversion personnel action is future dated beyond the&lt;/P&gt;&lt;P&gt;  termination effective date.  Please resolve conflict manually&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to change the format of output so as to get rid of the formatting characters in the first two place of each line . &lt;/P&gt;&lt;P&gt;Kindly suggest the way if some FM can be used to do so .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 May 2010 14:19:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-06T14:19:32Z</dc:date>
    <item>
      <title>ITF format conversion .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itf-format-conversion/m-p/6887373#M1479490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everyone ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing some issues while using the standard function module :IQS4_GET_NOTIFICATION. &lt;/P&gt;&lt;P&gt;The function module returns the comments in the internal table in "ITF format" or SAP Script format for QMNUM (importing parameter) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg : &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;04.05.2010 19:41:24 Z_HR_MSS01&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;No comments provided&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;C&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;04.05.2010 19:41:29 Z_HR_MSS01&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;/ Request routed to HR Connect for further Processing.&lt;/P&gt;&lt;P&gt;/ Initial Conversion personnel action is future dated beyond the&lt;/P&gt;&lt;P&gt;  termination effective date.  Please resolve conflict manually&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to change the format of output so as to get rid of the formatting characters in the first two place of each line . &lt;/P&gt;&lt;P&gt;Kindly suggest the way if some FM can be used to do so .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 May 2010 14:19:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itf-format-conversion/m-p/6887373#M1479490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-06T14:19:32Z</dc:date>
    </item>
    <item>
      <title>Re: ITF format conversion .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itf-format-conversion/m-p/6887374#M1479491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you could do a loop...  something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;field-symbols: &amp;lt;fs&amp;gt; type tline. 
loop at &amp;lt;tablename&amp;gt; assigning &amp;lt;fs&amp;gt;.
  shift &amp;lt;fs&amp;gt;-tdline by 2 places.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 May 2010 18:25:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itf-format-conversion/m-p/6887374#M1479491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-06T18:25:17Z</dc:date>
    </item>
  </channel>
</rss>

