Search found 143 matches

by arrbee
Thu Sep 07, 2006 10:53 am
Forum: COBOL
Topic: solve it
Replies: 10
Views: 31349

what if I code like this?

What happens if I code like this?

Code: Select all

working-storage section. 
77 A PIC 9 VALUE IS 1. 
: 
PROCEDURE DIVISION. 
EVALUATE TRUE 
WHEN A <2 
DISPLAY "CASE2" 
WHEN A = 1 
DISPLAY "CASE1" 
WHEN OTHER 
DISPLAY "OTHER" 
END-EVALUATE.
which will be displayed? Is it CASE2?
by arrbee
Thu Sep 07, 2006 10:36 am
Forum: COBOL
Topic: Reg variable declaration
Replies: 6
Views: 13432

Hi, Try this code and let me know if this is what you are expecting !! IDENTIFICATION DIVISION. PROGRAM-ID. QUOTE01. ENVIRONMENT DIVISION. DATA DIVISION. WORKING-STORAGE SECTION. 01 WS-Q1 PIC X(20) VALUE "THIS ISN""T WRONG". PROCEDURE DIVISION. MAIN-PARA. DISPLAY ' *** START *** '. DISPLAY W...
by arrbee
Tue Aug 15, 2006 2:53 pm
Forum: JCL
Topic: JCL
Replies: 3
Views: 11407

It is installation dependent............ Try using the command "TSO GDG". It will pop up if your installation has got the tool...........

HTH.
by arrbee
Sat Jul 22, 2006 12:23 pm
Forum: COBOL
Topic: Reg variable declaration
Replies: 6
Views: 13432

Put your compile listing error here. Otherwise, the problem could be with the quotes you are using in the third variable. Within single quotes you are trying to have a alphabet "R" in the double quotes. I think it is not permitted that way.

HTH.
by arrbee
Mon Jul 10, 2006 10:57 am
Forum: ABEND CODES / ERROR CODES
Topic: SOC7
Replies: 5
Views: 20736

It is not always easy to find out the exact variable that causing the S0C7 abend. The offset sometimes shows the nearest instructin that was executed and caused the abend.

You will have to use LIST, OFFSET compiler options if you need more details.

HTH.
by arrbee
Mon Jul 10, 2006 10:52 am
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: Using Index
Replies: 2
Views: 11216

Thanks Kali. The answers are very helpful.
by arrbee
Mon Jul 10, 2006 10:49 am
Forum: CICS
Topic: can u tell me Alternative for COMMAREA ?
Replies: 1
Views: 5447

TSQ,
TDQ,

there are some more.......Any help?
by arrbee
Mon Jul 10, 2006 10:45 am
Forum: COBOL
Topic: sub program
Replies: 1
Views: 4661

compile the 89th sub-program and main-program.

HTH.
by arrbee
Tue Jun 27, 2006 11:46 am
Forum: JCL
Topic: How to delete PDS member alone thru a jcl
Replies: 5
Views: 22910

Oops......sorry......I think it is not possible to delete all the members in a PDS using a JCL utility (REXX is an exception).

Please correct me if I am wrong.
by arrbee
Mon Jun 26, 2006 4:22 pm
Forum: PL/I
Topic: ABEND SB37
Replies: 7
Views: 54024

It is the space abend. You will have to give ample primary and secondary space to have a successful run. Despite that if it is still happenning means your program is in loop.......
by arrbee
Mon Jun 26, 2006 4:17 pm
Forum: DFSORT , ICETOOL & Utilities
Topic: Selective Copy
Replies: 1
Views: 7259

I think you will have to rephrase your question with better clarity. Did the File-Aid solution you've provided was successful one?
by arrbee
Mon Jun 26, 2006 4:07 pm
Forum: JCL
Topic: hi clear this doubt
Replies: 2
Views: 6920

Did you try this? Did it work?
by arrbee
Sat Jun 17, 2006 10:56 am
Forum: JCL
Topic: How to delete PDS member alone thru a jcl
Replies: 5
Views: 22910

Sorry. It is not possible.
by arrbee
Sat Jun 17, 2006 10:55 am
Forum: JCL
Topic: S0C7 error
Replies: 5
Views: 17386

Basically, you need to look for the offset at the sysout. Taking that offset, you will have to search the compile listing for the instruction that would've caused this abend.

HTH.
by arrbee
Thu Jun 15, 2006 10:39 am
Forum: JCL
Topic: How to execute first n number of steps in a jcl
Replies: 6
Views: 17885

I will check it and come back..........

Thanks.