× 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.



Yes, the TTO is from an old version of CA. These guys were on 4.3 with who knows what level of Client Access for years.

There seems to be three files associated with a query. The .TTO, a .TTX, and a .FDF. But for this query there is only a TTO and TTX in the windows folder. I wonder if something happened to the .FDF and I just have to rebuild that using the Client Access Manual Transfer?

Dave Shirey

date: Mon, 23 Dec 2013 08:32:53 -0500
from: Charles Wilt <charles.wilt@xxxxxxxxx>
subject: Re: Trouble Shooting Client Access TTO

Is TTO the old extension? iAccess 7.1 uses .dtf (from) and .dtt (to)...

In any event, there are just text files with a basic .INI format. You
might be able to look at a working example and figure out what's wrong.

Charles


On Sun, Dec 22, 2013 at 4:41 PM, David Shirey <midrangel@xxxxxxxxxxxxx>wrote:

I am trying to trouble shoot a Client Access TTO icon that does not
perform the download from the i to an els on a windows drive. The error is
we get when we double click on the TTO icon is -

"Invalid FIle Type. It is either not a transfer file request type or the
file has been corrupted"

I do not see any tutorials out there on how to set up and fix TTO's. Can
someone point me in the right direction here? There is a 'from file' out
on the 400 to download and a properly named spreadsheet out on the drive.

And yes, I know there are much better ways to download but this client
really loves their TTO's. Thank you.


David Shirey, Shirey Consulting Services
ERP, EDI, Technical Consulting
dave@xxxxxxxxxxxxx
616 304 2466
www.shireyllc.com




--
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.




------------------------------

message: 6
date: Mon, 23 Dec 2013 08:55:17 -0500
from: Hoteltravelfundotcom <hoteltravelfun@xxxxxxxxx>
subject: Re: SQL created table slows reporting tool

in this case i was just taking a peek at the raw table. So it seems that
what you are saying is we have to make either stored proc or logical/views
on the Ibm i. this is fine, This is what we currently do on the dds based
PF's.


On Sun, Dec 22, 2013 at 11:42 PM, Vernon Hamberg
<vhamberg@xxxxxxxxxxxxxxx>wrote:

Is the out-of-memory condition on the PC or on the IBM i?

In any case, be sure to set CR to have the SELECT done on the server,
that is, on the IBM i - NOT on the PC - in the latter case, the entire
file has to be downloaded, THEN the query is run against it. Bad Bad Bad!!

There are other confusing things about this question, but I'll leave my
questions to what I asked already.

HTH
Vern

On 12/22/2013 4:58 PM, Hoteltravelfundotcom wrote:
We have for first time a consultant is making a data warehouse for us.
This
particular
file is in DDS as TXT. It has about 3.5 million records with more coulmns
than below.
I selected this table in the Crystal Reports and only about 8 fields but
it
creates an
out of memory shutdown. Prior I am using always Views or logical index
based files and never had this issue. Is this something where we need to
creates such logicals on ths
raw data ware house file?

CREATE TABLE PROJ_1/WHS1 (
CUSTOMER# CHAR ( 8),
NAME CHAR (40 ),
CITY CHAR (30 ),
STATE CHAR (3 ),
COUNTRY CHAR (3 ),
ZIP_CODE char (10 ),
ITEM# CHAR (15 ),
ITEM_TEXT CHAR (40 ),
ORDER# CHAR (8 ),
ORD_STATUS CHAR (2 ),
INVOICE# CHAR (8 ),
ORD_DATE NUMERIC (8 , 0),
INV_DATE numeric (8 , 0),
ORD_TYPE CHAR (3 ),
CUST_TYPE CHAR (3 ),
PROD_LINE CHAR (3 ),
SALES_REP CHAR (3 ),
WAREHOUSE CHAR (3 ),

--
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.




------------------------------

message: 7
date: Mon, 23 Dec 2013 08:07:18 -0600
from: Vernon Hamberg <vhamberg@xxxxxxxxxxxxxxx>
subject: Re: SQL created table slows reporting tool

Actually I'm not saying that you have to make either a stored proc or
LFs or views.

You do need to be sure that you tell Crystal to run the query on the
server, not at the PC. Crystal at least used to, by default, run all
queries on the PC, which means that the entire table had to be
downloaded from the server, then the query is run against that "full" copy.

I like the idea of using a view - to limit the columns downloaded - and
maybe the rows, due to selection. You will still benefit from making the
query be run on the server, then downloading only the results. I think
this is especially the case, because you will likely not want to make a
view for each WHERE possibility - so if your Crystal report has
parameters for selection, again, you need to run the query on the server
- it's a setting somewhere in Crystal, last I saw, which is years ago!

HTH
Vern

On 12/23/2013 7:55 AM, Hoteltravelfundotcom wrote:
in this case i was just taking a peek at the raw table. So it seems that
what you are saying is we have to make either stored proc or logical/views
on the Ibm i. this is fine, This is what we currently do on the dds based
PF's.


On Sun, Dec 22, 2013 at 11:42 PM, Vernon Hamberg
<vhamberg@xxxxxxxxxxxxxxx>wrote:

Is the out-of-memory condition on the PC or on the IBM i?

In any case, be sure to set CR to have the SELECT done on the server,
that is, on the IBM i - NOT on the PC - in the latter case, the entire
file has to be downloaded, THEN the query is run against it. Bad Bad Bad!!

There are other confusing things about this question, but I'll leave my
questions to what I asked already.

HTH
Vern

On 12/22/2013 4:58 PM, Hoteltravelfundotcom wrote:
We have for first time a consultant is making a data warehouse for us.
This
particular
file is in DDS as TXT. It has about 3.5 million records with more coulmns
than below.
I selected this table in the Crystal Reports and only about 8 fields but
it
creates an
out of memory shutdown. Prior I am using always Views or logical index
based files and never had this issue. Is this something where we need to
creates such logicals on ths
raw data ware house file?

CREATE TABLE PROJ_1/WHS1 (
CUSTOMER# CHAR ( 8),
NAME CHAR (40 ),
CITY CHAR (30 ),
STATE CHAR (3 ),
COUNTRY CHAR (3 ),
ZIP_CODE char (10 ),
ITEM# CHAR (15 ),
ITEM_TEXT CHAR (40 ),
ORDER# CHAR (8 ),
ORD_STATUS CHAR (2 ),
INVOICE# CHAR (8 ),
ORD_DATE NUMERIC (8 , 0),
INV_DATE numeric (8 , 0),
ORD_TYPE CHAR (3 ),
CUST_TYPE CHAR (3 ),
PROD_LINE CHAR (3 ),
SALES_REP CHAR (3 ),
WAREHOUSE CHAR (3 ),
--
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.





------------------------------

message: 8
date: Mon, 23 Dec 2013 17:03:09 +0000
from: Lance Gillespie <LGillespie@xxxxxxxx>
subject: Selecting interface for outbound ftp

We have 3 Ethernet cards with six assigned ip addresses.

We would like to be able to open our firewall to outbound
ftp for one of those addresses.

How can the 'from' address be selected when starting an ftp session?

There is nothing on the strtcpftp command, but maybe some kind of
job override?

TIA, lance



------------------------------

--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) digest 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.



End of MIDRANGE-L Digest, Vol 12, Issue 2407
********************************************



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

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.