Search found 12 matches

by acevedo
Fri Apr 20, 2007 5:17 pm
Forum: JCL
Topic: EDIT a STRING
Replies: 7
Views: 16046

Many of the members here are very good, but not mind readers...


nor any utility.

If I'm not wrong you'll need to specify the start and length of any field you want to convert.
by acevedo
Fri Apr 20, 2007 1:25 pm
Forum: JCL
Topic: EDIT a STRING
Replies: 7
Views: 16046

and... depending on what you know the different layout each line has?
by acevedo
Fri Apr 20, 2007 11:47 am
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: Finding PLAN(or Package)
Replies: 6
Views: 18190

Veera I really had doubts about posting that... I thought my words could have been misunderstood, glad to see that's not the case. I like, from time to time, re-read this article: How To Ask Questions The Smart Way & How To Answer Questions in a helpful Way http://www.catb.org/~esr/faqs/smart-questi...
by acevedo
Thu Apr 19, 2007 8:59 pm
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: Finding PLAN(or Package)
Replies: 6
Views: 18190

questions questions questions...but do you know what a feedback is?
by acevedo
Wed Apr 18, 2007 1:58 am
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: Calling a COBOL DB2 subroutine using non-DB2 program
Replies: 1
Views: 9740

Use the same JCL that you use to run a Cobol-DB2 program.
by acevedo
Tue Apr 17, 2007 11:40 am
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: Finding PLAN(or Package)
Replies: 6
Views: 18190

Code: Select all

SELECT * FROM SYSIBM.SYSPACKLIST WHERE NAME = 'yourprogramhere';  
will give you the PLANNAME where it's referenced.
by acevedo
Wed Apr 11, 2007 11:14 am
Forum: JCL
Topic: Is there an IEB utility or some trick in JCL to examine. . .
Replies: 4
Views: 13578

Veera wrote:seagreg,
acevedo -> LISTCAST will just give you info reg the all gen's and limit
and other parameters like AIX, INDEX, PATH ENTRIES PROCESSED,
but getting the file creat datea and procesing can be done using rexx.
that's why I said: or write a small rexx to do the job...

;)
by acevedo
Mon Apr 09, 2007 11:33 am
Forum: JCL
Topic: RESTART - Executing 2 and 3 rd step in 5 step jcl
Replies: 7
Views: 26650

Re: RESTART - Executing 2 and 3 rd step in 5 step jcl

IM RESTARTING THE JOB FROM THE 2 ND STEP, MY REQ IS ONLY STEP2 AND STEP3 TO BE EXECUTED ?????? LET ME KNOW APART FROM NULL (//) ANY OTHER WAYS R THERE ?????? In my opinion the best way is // or just delete the steps you don't want to execute... the second option, as said before, is 'playing' with C...
by acevedo
Tue Apr 03, 2007 11:23 am
Forum: JCL
Topic: Is there an IEB utility or some trick in JCL to examine. . .
Replies: 4
Views: 13578

you could try something like... //*================================================== //LISTCAT EXEC PGM=IDCAMS,COND=(0,LT) //SYSIN DD * LISTCAT ENT(YOURGDG.HERE) ALL //SYSOUT DD SYSOUT=* //SYSPRINT DD SYSOUT=* or write a small rexx to do the job... maybe your 'systemers' could give ...
by acevedo
Tue Apr 03, 2007 11:14 am
Forum: CICS
Topic: BMS generate
Replies: 1
Views: 4767

it's just like a Cobol program you have the source and then... compile it!
by acevedo
Tue Apr 03, 2007 11:09 am
Forum: XML
Topic: need sample program to covert XML data to cobol file format
Replies: 4
Views: 17346

Search for XML PARSE and XML GENERATE.
by acevedo
Thu Mar 22, 2007 12:12 pm
Forum: TSO, CLIST & REXX
Topic: Help with a panel definition
Replies: 1
Views: 4792

I really don't know BUT other solution could be an imbedded panel or, in other words, a panel created dynamically by the Rexx program.