Dear Friends, BINOTECH is a Chennai based consultancy company catering to IT professionals demand in Domestic and overseas market. Good News to You !! The...
Hi All, ZCS brings another great opportunity for Mainframers in India. This opportunity is the one you have really desired. One of the most respected names in...
Dear Vipul Agarwal, Thanks for your mail. i am sending my updated resume , please mail me Regarding which company is your client, please find the attached...
I have a client that is looking for an entry level COBOL programmer for a permanent position in Massachusetts. Ideally looking for someone with 2-4 years of...
Hi, I am currently located in Melbourne Australia and am seeking immediate contract work in Australia, Europe, Singapore or India (in that order of ...
I have created a COBOL Dll using NetExpress. In one of the methods, I pass variables to the linkage section from Visual Basic Program. The COBOL procedure ...
A leading software house (one of the top ten in India) is setting up a center of excellence in IBM Main Frame environment at Chennai in India. They require a...
... From: briandriscoll77 To: cobolgoldmine@yahoogroups.com Sent: Wednesday, June 05, 2002 2:51 PM Subject: [COBOLGoldMine] Looking for a junior COBOL...
Manuel Garrido Silva
mgs@...
Jun 8, 2002 1:45 pm
696
I am interested in the job but the problem is that I live in NIGERIA. If it will be possible let me send my CV. Chris Rapu African Alliance Insurance Ltd 112...
Chris Rapu
chrisrapu@...
Jun 10, 2002 3:37 pm
697
Hi All, ZCS brings another great opportunity for Datawarehousing Professionals in India. Zend Consulting Services {ZCS}, an International IT Consulting group....
Soory Chris, but my client is only interested in local candidates at this time. Best of luck. ... __________________________________________________ Do You...
http://www.nyc-search.com/g.htm 24 Sr. Test Engineers, Hartford and Bloomfield CT Number of positions: 7 Start Date - July 15th Salary/Hourly: 70-80k or...
I don't know why you are doing this test. Are you looking for displayable characters (a common reason to perform this test)? If you are, I can give you the...
Not sure I understand your question. However I can say this: 1. You can move any value you want to the field "WS-DESC-CHAR". COBOL will not stop you. 2....
Por favor, me ajudem a definir a SELECT do arquivo para ser compartilhado por diversos terminais com acesso a leitura/gravacao. Estou trabalhando com o POWER...
infoexpress
info.express@...
Jun 26, 2002 7:06 pm
705
if you want to do a simple validity check you can try IF variable IS NUMERIC ... or ALPHABETIC or ALPHABETIC-UPPER or ALPHABETIC-LOWER Dan ... ...
... Actually, it would be that simple, if 'A' thru 'Z' and '0' thru '9' was the only thing you had in the level-88 statement. In that case an if statement ...
Does anyone know how to code variable-length fields? Not the file but a field in working-storage. Help please. Imagine never having to worry about your...
The problem with coding only for NUMERIC, ALPHABETIC, and/or ALPHABETIC-UPPER an/or ALPHABETIC-LOWER is that it leaves out the displayable special characters. ...
Yes, we use them all the time in some of our application. Here would be an example: Working storage: 01 WS-SPSV-DATA-TABLE. 05 WS-SPSV-DATA OCCURS 1 TO 8...
Actually, in the part where I said to vary the length of a single string, I don't think you should actualy use a "redefine" because I'm not sure that it would...
You could put in a working storage field the length of your message. However, have it be a table with a PIC X(1) occuring the number of times as is the length...
To find what the range of 'A' to 'Z' is, look up the sequential ASCII or EBCDIC table showing the hex values for those characters. (Depends on whether your ...
That's what I did before writing my SPECIAL-NAMES clause, I looked up the values and range in my IBM EBCDIC table. That's why I set up the new class the way...
Thanks all for the participation. Special thanks to Nina, cause your solution is correct. I was trying to perform a description displayable character range...