Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
Posted: Wed Jun 06, 2007 7:17 am Post subject:
manoj nayak,
Please follow the forum rules.
1. Use meaningful topics (don't use the Forum name for the topic). Use a descriptive Title to explain your problem. Post detailed information on what you're trying to accomplish. Do not make people guess what you mean. This will give you a much better chance of getting a good answer to your question.
2. Post your questions in the right forum
3. Use BB code tags for readable and to ensure that leading blanks are not removed.
Joined: 02 Dec 2002 Posts: 415 Topics: 6 Location: Hove, England
Posted: Wed Jun 06, 2007 8:35 am Post subject:
If you want to comment out a SORT control statement, you need to put an asterisk in column 1.
//* is a JCL comment, so your SYSIN is considered to be empty. Did you get an additional message indicating that //SYSIN had been defaulted in front of your intended control statements? _________________ The day you stop learning the dinosaur becomes extinct
Joined: 02 Dec 2002 Posts: 1618 Topics: 31 Location: San Jose
Posted: Wed Jun 06, 2007 10:33 am Post subject:
Manoj,
You have:
Code:
//SYSIN DD *
//* SORT FORMAT=BI,FIELDS=(1,20,A)
//* SUM FIELDS=NONE
SORT FIELDS=(1,20,BI,A)
INCLUDE COND=(1,20,BI,EQ,C'XXXXXX')
/*
You should have:
Code:
//SYSIN DD *
* SORT FORMAT=BI,FIELDS=(1,20,A)
* SUM FIELDS=NONE
SORT FIELDS=(1,20,BI,A)
INCLUDE COND=(1,20,BI,EQ,C'XXXXXX')
/*
_________________ Frank Yaeger - DFSORT Development Team (IBM)
Specialties: JOINKEYS, FINDREP, WHEN=GROUP, ICETOOL, Symbols, Migration
DFSORT is on the Web at:
www.ibm.com/storage/dfsort
Joined: 07 Jan 2003 Posts: 1056 Topics: 91 Location: The Blue Planet
Posted: Wed Jun 06, 2007 10:37 am Post subject:
Major_Nayak wrote:
Quote:
I didnt get one thing if that is commented that while compilation why it being considered
What do you mean my compilation ???? Sort is not a high-level program to compile. Please be clear in your queries and please don't force others to reply soon/immediately. Every member of this forum work in some shop for their own living. They can't dedicate all of their time to you.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum