Search found 20 matches

by sasanka
Tue Feb 22, 2011 12:30 am
Forum: COBOL
Topic: SOLVE THE PROBLEM
Replies: 1
Views: 4529

SOLVE THE PROBLEM

[b]SALES-MAN AMOUNT-OF-SALE COMMISSION[/b] 1 233 23.30 334 33.45 400 30.00 [b]TOTAL-SALE : 967 TOTAL-COMMISSION : 86.75[/b] 2 123 32.12 223 34.44 -- . . . . . . . . . can any one help me with the above program I have used he following code but not successful. PROCEDURE DIVISION. MOVE I TO I. READ IN...
by sasanka
Tue Feb 22, 2011 12:28 am
Forum: COBOL
Topic: SOLVE THE PROBLEM
Replies: 1
Views: 3779

SOLVE THE PROBLEM

SALES-MAN AMOUNT-OF-SALE COMMISSION 1 233 23.30 334 33.45 400 30.00 TOTAL-SALE : 967 TOTAL-COMMISSION : 86.75 2 123 32.12 223 34.44 -- . . . . . . . . . can any one help me with the above program I have used he following code but not successful. PROCEDURE DIVISION. MOVE I TO I. READ INFILE AT END MO...
by sasanka
Wed Feb 16, 2011 12:01 am
Forum: JCL
Topic: Help needed to specify path for FTP
Replies: 1
Views: 5607

Help needed to specify path for FTP

IM trying to do ftp a dataset from mainframes to windows desktop I have successfully connected to FTP server but the problem is the path specification i've specified the path as CD /H it throwed an error CWD cmd failed : EDC51291 no such file or directory could plese let me know how to specify the p...
by sasanka
Mon Jan 31, 2011 10:28 pm
Forum: JCL
Topic: JCL FOR CONCATENATE WITH EMPTY DATASET
Replies: 8
Views: 14423

Hi Sasanka, I will just modify ur question, You want to "Apend data from 26 files to single ps file. And you are using iebgener for it. But as u said ur getting error because of some of the data sets are empty and iebgener is not accepting it. So currently u r manually chking empty datasets and rem...
by sasanka
Sun Jan 30, 2011 11:47 am
Forum: JCL
Topic: JCL FOR CONCATENATE WITH EMPTY DATASET
Replies: 8
Views: 14423

Re: JCL FOR CONCATENATE WITH EMPTY DATASET

... so removing manually them by checking each dataset is taking some time Well, that's just stupid. Of course, if your company prefers that it be done that way, and would rather pay that cost in labor instead of assuring that they aren't empty to begin with, then that's their decision. ...can any ...
by sasanka
Sun Jan 30, 2011 1:02 am
Forum: JCL
Topic: execute qtp script using jcl possible?
Replies: 3
Views: 7248

execute qtp script using jcl possible?

hi

i have a qtp script which automates some work in mainframes

can i execute the qtp script using jcl(i.e can i call that qtp script as my first step im my job)
by sasanka
Sat Jan 29, 2011 10:02 pm
Forum: JCL
Topic: JCL FOR CONCATENATE WITH EMPTY DATASET
Replies: 8
Views: 14423

JCL FOR CONCATENATE WITH EMPTY DATASET

Hi

i'm having 26 datasets which are to be concatenated

but in 26 datasets there will be atleast 4 datasets which i don't no

so removing manually them by checking each dataset is taking some time

can any one help me fix this using a jcl
by sasanka
Mon Jan 17, 2011 9:08 pm
Forum: JCL
Topic: jcl sort to add leading zeroes
Replies: 6
Views: 18245

For the given example, try this: //STEP001 EXEC PGM=SORT //SORTIN DD * 76453627 0097865432 00065499234 00012342345 12301231233 //SORTOUT DD SYSOUT=* //SYSIN DD * OPTION COPY INREC BUILD=(1,11,UFF,M11,LENGTH=11) //SYSOUT DD SYSOUT=* //* can u please explain the following uff m11 :?:
by sasanka
Sun Jan 16, 2011 12:29 am
Forum: JCL
Topic: jcl sort to add leading zeroes
Replies: 6
Views: 18245

jcl sort to add leading zeroes

Dear all, i have the following input ps 76453627 0097865432 00065499234 00012342345 12301231233 ....... .... i want a jcl which adds leading zeroes to all the numbers in the ps where the number of digits are not equal to 11 i.e for the first number 76453627(8 digits) to be as 00076453627(11 digits) ...
by sasanka
Sat Jan 08, 2011 5:26 pm
Forum: COBOL
Topic: compile error in cobol
Replies: 8
Views: 15024

this is because 'SYS1.IGY.SIGYCOMP' is not available on disk. use HRECALL and try to recall this dataset. and then resubmit ur job !! Why do you say this? This does not make any sense per the error message sasanka is getting. :? sasanka - every shop does have it's own edit/compile JCLs. Are you not...
by sasanka
Sat Jan 08, 2011 1:27 am
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: joins examples on multiple tables
Replies: 1
Views: 5715

joins examples on multiple tables

hi,
can u take 5 tables with primary keys and foreign keys and explain
how to select data from them using joins

like if we want to take 5 table data we cant take it directly we have to involve all other 4 tables

pls explain this with an example it will be useful for many of them.
by sasanka
Fri Jan 07, 2011 10:37 pm
Forum: COBOL
Topic: compile error in cobol
Replies: 8
Views: 15024

himuengg wrote:this is because 'SYS1.IGY.SIGYCOMP' is not available on disk. use HRECALL and try to recall this dataset. and then resubmit ur job !![/quote

where should i do hrecall when it is showing that data set is not cataloged

can u pls expand ur answer
by sasanka
Fri Jan 07, 2011 4:16 pm
Forum: COBOL
Topic: compile error in cobol
Replies: 8
Views: 15024

compile error in cobol

hi, i have used the following jcl for compilation //UISC1AA JOB CLASS=A, // MSGLEVEL=(1,1), // NOTIFY=&SYSUID //****************************************************. //STEP1 EXEC IGYWCL //STEPLIB DD DSN=SYS1.IGY.SIGYCOMP,DISP=SHR //COBOL.SYSIN DD DSN=TDX2.INPUT.COBOL(INPUT1),DISP=SHR //LKED.SYSLMOD ...
by sasanka
Mon Jan 03, 2011 2:19 pm
Forum: JCL
Topic: TSO COMMANDS IN BATCH
Replies: 3
Views: 7786

MrSpock wrote:I don't know of any TSO command that can't run in batch. You can find all of the TSO/E commands here in the z/OS V1R11.0 TSO/E Command Reference manual, as well as here in the z/OS V1R10.0 TSO/E User's Guide.
thank you verymuch its really a good stuff
by sasanka
Sat Jan 01, 2011 1:20 am
Forum: JCL
Topic: jcl to ftp mainframe ps to .txt in windows
Replies: 4
Views: 8425

can i use this pgm to ftp ps to .xlsx sheet? If I correctly understand that by the term ".xlsx" you're referring to the Microsoft Excel proprietary file format, then my answer is no unless you have software or a program you've written that can actually create the data in that format. Usually the be...