Fw: FTP-Code page

2010-03-19 Thread Ron Wells
Not doing what I was hoping ..so question
If PC that is FTP'ing to me is using code page 437
what would the code page for ascii to ebcdic for converting Spanish N(~) 
 tilde on top of the N.??





- Forwarded by Ron Wells/AGFS/AGFin on 03/19/2010 11:14 AM -

From:
Ron Wells/AGFS/AGFin
To:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu
Date:
03/19/2010 08:15 AM
Subject:
Re: FTP-Code page


looks like it maybe 1145 code page...
so I run convx against that(it is my seza lib..as espanish) naming it 
tcpip.standard.tcpspbin ..
the command 
quote site sbd=TCPIP.STANDARD.TCPSPBIN 
this seem correct??



From:
Staller, Allan allan.stal...@kbm1.com
To:
IBM-MAIN@bama.ua.edu
Date:
03/19/2010 08:02 AM
Subject:
Re: FTP-Code page
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



Try http://www-01.ibm.com/software/globalization/g11n-res.jsp

HTH,

snip
Have a file...on a PC..ascii to be ftp'd to mainframe...
the data has spanish name...some not all..is there a code page that can
be 
specified to alter or leave the character(s) alone...tried the spanish 
member in SEZATCPX  and ran a CONVXLAT and generated a new file..
had them to ftp using following...
quote site sbd=TCPIP.IBMX284.TCPXLBIN   the ibmx284 is the new dataset 
created...
the character is a N ~(tilde) on top...it gets converted to a D... maybe

this s/b left alone??
or am I missing something here ..
/snip

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
Email Disclaimer
This  E-mail  contains  confidential  information  belonging to the sender, 
which  may be legally privileged information.  This information is intended 
only  for  the use of the individual or entity addressed above.  If you are not 
 the  intended  recipient, or  an  employee  or  agent responsible for 
delivering it to the intended recipient, you are hereby notified that any 
disclosure,  copying, distribution, or the taking of any action in reliance on 
the contents of the E-mail or attached files is strictly prohibited.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Fw: FTP-Code page

2010-03-19 Thread Tony Harminc
On 19 March 2010 12:16, Ron Wells rwe...@agfinance.com wrote:
 Not doing what I was hoping ..so question
 If PC that is FTP'ing to me is using code page 437

Are you sure it is using CP 437? That was typically used by MS DOS,
and not by Windows. How did the data get onto the PC?

In CP 437, an upper case N-tilde (Ñ) is X'A5'. In CP 819 (ISO Latin-1)
and Windows Western it is at X'D1'. So you need to be sure what you
are converting *from*, first. How are you viewing the Ñ on the PC?
Browse the data with a hex editor and be sure.

 what would the code page for ascii to ebcdic for converting Spanish N(~)
 tilde on top of the N.??

Then you need to think about the target code page. If you are in North
America, it is probably either CP 037 or 1140, but both have Ñ in the
same position X'69'. If you are using one of the European CPs, such as
that for Spain (CP 284 with Ñ at X'7B'), then you have a different
requirement. What is going to be processing or displaying/printing the
EBCDIC data on the mainframe? If it is going to wind up being
displayed on a 3270 that is actually a PC emulator, then you need to
think about the translation back to ASCII at that stage!

Tony H.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html