× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



i may be because the resulting text file is unicode data.

I have a dos batch file I've used to "convert" the files back to ascii data.
Put this batch file in the directory where you copied the spoolfile and run
it.
The resulting files should be about half the size as the original.
Here is the code:

<code>
@Echo Off
echo UniCode to ANSI converter for files.
md ~ANSI
for %%a in (*.txt *.?txt?) do type "%%a">"~ANSI\%%a"
for %%a in (*.txt *.?txt?) do attrib -r -h -s "%%a"
cd ~ANSI
for %%a in (*.txt *.?txt?) do move /y "%%a" ..
cd..
rd ~ANSI
:end of script
</code>


--
Bryan




On Thu, Oct 17, 2013 at 9:05 AM, Rich Dotson <rich_dotson@xxxxxxxxxxx>wrote:

We recently upgraded to V7.1.
We have a user who uses iSeries Navigator to download a spool file to her
desktop. She then uses Monarch to import that report into another system.
The data in the report starts in column 1. Now that we have upgraded to
7.1 the Navigator "Export" function is adding 1 blank to the front of each
line on the report causing all of the data to shift to the right one
character causing an error by the Monarch import process.
The spool file is correct but the .txt file created is not. Has anyone
else seen this issue and how was it resolved? I've looked to see if there
is a PTF for this but haven't had any luck finding one.
Thanks,Rich....
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.





As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.