<?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: Format Statement T descriptor problem in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Format-Statement-T-descriptor-problem/m-p/983887#M26693</link>
    <description>I would have put my money on RECL being too small, or a compiler bug.  Format reversion should work the same in CVF as on a mainframe, right?  If the OP is relying on the default RECL instead of setting it explicitly, he is exposing himself to a behavior that really can vary from compiler to compiler.  The first line doing something different and wierd, though... maybe a bug in the compiler.  But if it's a header line, more likely some kind of bug in the program.  A small example that demonstrates this behavior would be useful here.</description>
    <pubDate>Wed, 20 Feb 2002 04:13:29 GMT</pubDate>
    <dc:creator>Intel_C_Intel</dc:creator>
    <dc:date>2002-02-20T04:13:29Z</dc:date>
    <item>
      <title>Format Statement T descriptor problem</title>
      <link>https://community.intel.com/t5/Software-Archive/Format-Statement-T-descriptor-problem/m-p/983885#M26691</link>
      <description>I am writing 1000 character records to an output file using a format statement which works perfectly in my mainframe version but my VF compiled version has a problem.  There are a several T descriptors in the format statement.  All records after the first record are written to the file perfectly.  The first record ends up being split into many lines and each of these split lines begines with the same strange characters.  If I use an X descriptor to replace the T descriptor at the position where the problem occurs, the line does not split there but still ends up getting split at some later point.  I could replace all T descriptors with X descriptors but it would be nice to know why this problem occurs.</description>
      <pubDate>Sat, 16 Feb 2002 08:15:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Format-Statement-T-descriptor-problem/m-p/983885#M26691</guid>
      <dc:creator>engineerik</dc:creator>
      <dc:date>2002-02-16T08:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: Format Statement T descriptor problem</title>
      <link>https://community.intel.com/t5/Software-Archive/Format-Statement-T-descriptor-problem/m-p/983886#M26692</link>
      <description>I can't tell from your description what the issue is, but I'd guess you're running to format reversion.  (Look up this topic in the Language Reference Manual.)  Note that the T format simply repositions you in the current buffer but does not itself cause any data to be transferred.&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Wed, 20 Feb 2002 03:28:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Format-Statement-T-descriptor-problem/m-p/983886#M26692</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2002-02-20T03:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: Format Statement T descriptor problem</title>
      <link>https://community.intel.com/t5/Software-Archive/Format-Statement-T-descriptor-problem/m-p/983887#M26693</link>
      <description>I would have put my money on RECL being too small, or a compiler bug.  Format reversion should work the same in CVF as on a mainframe, right?  If the OP is relying on the default RECL instead of setting it explicitly, he is exposing himself to a behavior that really can vary from compiler to compiler.  The first line doing something different and wierd, though... maybe a bug in the compiler.  But if it's a header line, more likely some kind of bug in the program.  A small example that demonstrates this behavior would be useful here.</description>
      <pubDate>Wed, 20 Feb 2002 04:13:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Format-Statement-T-descriptor-problem/m-p/983887#M26693</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2002-02-20T04:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: Format Statement T descriptor problem</title>
      <link>https://community.intel.com/t5/Software-Archive/Format-Statement-T-descriptor-problem/m-p/983888#M26694</link>
      <description>I doubt it's a compiler bug, and I don't think RECL units are an issue either.  Of course, with no actual example to look at, it's hard to know.&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Wed, 20 Feb 2002 08:05:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Format-Statement-T-descriptor-problem/m-p/983888#M26694</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2002-02-20T08:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: Format Statement T descriptor problem</title>
      <link>https://community.intel.com/t5/Software-Archive/Format-Statement-T-descriptor-problem/m-p/983889#M26695</link>
      <description>Here is a little more detail: &lt;BR /&gt;In CMS the following write statement would write output as shown: &lt;BR /&gt; &lt;BR /&gt;     WRITE (13,100) FTYPE, APCODE, CITY, STATE, APALT, MAGVAR,  &lt;BR /&gt;    1 APNAME, TPI, LPI, TEMPID, REVDTE, ZONECD, HSHTTL &lt;BR /&gt;          &lt;BR /&gt; 100 FORMAT (T2, A, T10, A, T24, A, T40, A, T58, F6.0, T68, I3, &lt;BR /&gt;    1 T79, A, T121, 'TPI ', A, T134, 'LPI ', A, T144, 'T DEG ', &lt;BR /&gt;    2 A, T155, A, T171, A, T962, 'HASHTOTAL ', I8 ) &lt;BR /&gt; &lt;BR /&gt;(First 50 columns only) &lt;BR /&gt;|...+....1....+....2....+....3....+....4....+....5 &lt;BR /&gt; AIRPT   ATL            ATLANTA,        GA         &lt;BR /&gt; AIRPT   MCO            ORLANDO,        FL         &lt;BR /&gt; AIRPT   LAX            LOS ANGELES,    CA         &lt;BR /&gt; AIRPT   SLC            SALT LAKE CITY, UT         &lt;BR /&gt; AIRPT   DFW            DALLAS-FT WORTH TX         &lt;BR /&gt;  &lt;BR /&gt;But with CVF the same write statement gives me the following output &lt;BR /&gt;(First 50 columns only) &lt;BR /&gt;|...+....1....+....2....+....3....+....4....+....5 &lt;BR /&gt; AIRPT   ATL            ATLANTA,        GA         &lt;BR /&gt;(The first line is correct for the first 132 characters) &lt;BR /&gt;                                                &lt;BR /&gt;                                                &lt;BR /&gt;                                                &lt;BR /&gt;(This goes on for about 80 lines)                  &lt;BR /&gt;(Then this text which is actually columns 962-979 of the first record)                                                                                                                          &lt;BR /&gt;HASHTOTAL     1030                                 &lt;BR /&gt; AIRPT   MCO            ORLANDO,        FL          &lt;BR /&gt; AIRPT   LAX            LOS ANGELES,    CA          &lt;BR /&gt; AIRPT   SLC            SALT LAKE CITY, UT         &lt;BR /&gt; AIRPT   DFW            DALLAS-FT WORTH TX         &lt;BR /&gt; AIRPT   DFW            DALLAS-FT WORTH TX</description>
      <pubDate>Wed, 20 Feb 2002 08:43:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Format-Statement-T-descriptor-problem/m-p/983889#M26695</guid>
      <dc:creator>engineerik</dc:creator>
      <dc:date>2002-02-20T08:43:46Z</dc:date>
    </item>
    <item>
      <title>Re: Format Statement T descriptor problem</title>
      <link>https://community.intel.com/t5/Software-Archive/Format-Statement-T-descriptor-problem/m-p/983890#M26696</link>
      <description>Still can't tell from what you've written what might be happening.  I note that you're running CVF 6.1, which is two years old.  I'm not aware of any bugs in format processing like this, but one never knows.  If you can reproduce the problem in 6.6, send us an example at vf-support@compaq.com.&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Wed, 20 Feb 2002 12:40:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Format-Statement-T-descriptor-problem/m-p/983890#M26696</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2002-02-20T12:40:47Z</dc:date>
    </item>
  </channel>
</rss>

