View previous topic :: View next topic
|
Author |
Message |
nprathap4u
New User
Joined: 24 Apr 2007 Posts: 15 Location: India
|
|
|
|
Hi,
Anyone know what is the command to remove the second column numbers....??
000001 000010 IDENTIFICATION DIVISION.
000002 000020
000003 000030 PROGRAM-ID. PROGRAM1.
000004 000040
000005 000050 AUTHOR.
regards,
Prathap |
|
Back to top |
|
|
khamarutheen
Active Member
Joined: 23 Aug 2005 Posts: 677 Location: NJ
|
|
|
|
prathap,
I guess it's a system generated colum .. I remember i had seen this long back with panvalet tool... May i know the reason for removing that??? Or just for an info are you asking?? |
|
Back to top |
|
|
Craq Giegerich
Senior Member
Joined: 19 May 2007 Posts: 1512 Location: Virginia, USA
|
|
|
|
nprathap4u wrote: |
Hi,
Anyone know what is the command to remove the second column numbers....??
000001 000010 IDENTIFICATION DIVISION.
000002 000020
000003 000030 PROGRAM-ID. PROGRAM1.
000004 000040
000005 000050 AUTHOR.
regards,
Prathap |
NUM COB |
|
Back to top |
|
|
nprathap4u
New User
Joined: 24 Apr 2007 Posts: 15 Location: India
|
|
|
|
Hi khamarutheen,
Just for a knowledge gather i asked.
Hi Craq Giegerich,
It worked fine but all the codes move accordingly.
Cant we remove those number only thro' TSO command..? |
|
Back to top |
|
|
khamarutheen
Active Member
Joined: 23 Aug 2005 Posts: 677 Location: NJ
|
|
|
|
Quote: |
It worked fine but all the codes move accordingly. |
What do you mean??? Post your output plzz |
|
Back to top |
|
|
cpuhawg
Active User
Joined: 14 Jun 2006 Posts: 331 Location: Jacksonville, FL
|
|
|
|
If you a attempting to make:
Code: |
000001 000010 IDENTIFICATION DIVISION.
000002 000020
000003 000030 PROGRAM-ID. PROGRAM1.
000004 000040
000005 000050 AUTHOR.
|
Code: |
000001 IDENTIFICATION DIVISION.
000002
000003 PROGRAM-ID. PROGRAM1.
000004
000005 AUTHOR.
|
The command would be:
Code: |
C P'######' ' ' 1 6 all
|
|
|
Back to top |
|
|
Craq Giegerich
Senior Member
Joined: 19 May 2007 Posts: 1512 Location: Virginia, USA
|
|
|
|
nprathap4u wrote: |
Hi khamarutheen,
Just for a knowledge gather i asked.
Hi Craq Giegerich,
It worked fine but all the codes move accordingly.
Cant we remove those number only thro' TSO command..? |
c all p'#' ' ' 1 6 |
|
Back to top |
|
|
nprathap4u
New User
Joined: 24 Apr 2007 Posts: 15 Location: India
|
|
|
|
W o W...
Hi Craq Giegerich/cpuhawg,
thank you very much.
it worked fine. |
|
Back to top |
|
|
Craq Giegerich
Senior Member
Joined: 19 May 2007 Posts: 1512 Location: Virginia, USA
|
|
|
|
What does this have to do with your subject "Need ISPF EDIT command to remove a line"? |
|
Back to top |
|
|
dick scherrer
Moderator Emeritus
Joined: 23 Nov 2006 Posts: 19243 Location: Inside the Matrix
|
|
|
|
Hello,
Maybe there was a word missing in the subject.
Quote: |
"Need ISPF EDIT command to remove a line number"? |
Possibly? |
|
Back to top |
|
|
superk
Global Moderator
Joined: 26 Apr 2004 Posts: 4652 Location: Raleigh, NC, USA
|
|
|
|
Someone changed the original subject title. I had changed it from "Need TSO Command" to "Need ISPF EDIT command" and nothing more. |
|
Back to top |
|
|
dobriyalsandeep
New User
Joined: 15 Aug 2007 Posts: 7 Location: mumbai
|
|
|
|
hi
for removing that line number u can issue ( TSO DEL STD COB) in command line. |
|
Back to top |
|
|
Aaru
Senior Member
Joined: 03 Jul 2007 Posts: 1287 Location: Chennai, India
|
|
|
|
Dobriya,
Quote: |
TSO DEL STD COB) in command line.
|
I guess this is site-specific. Its not working in my site. |
|
Back to top |
|
|
enrico-sorichetti
Superior Member
Joined: 14 Mar 2007 Posts: 10886 Location: italy
|
|
|
|
Code: |
000001 000010 IDENTIFICATION DIVISION.
000002 000020
000003 000030 PROGRAM-ID. PROGRAM1.
000004 000040
000005 000050 AUTHOR. |
looking at the posted data, I have the impression that the poster is confusing things
why not look at the NUMBER setting
I just run a quick test by :
opening an empty member
issuing the command "NUMBER ON COB"
entering a few lines
issuing the command "NUMBER OFF"
scrolling to the left
and here what the screen looks like
Code: |
000001 000100 IDENTIFICATION DIVISION.
000002 000200
000003 000300 PROGRAM-ID. PROGRAM1.
000004 000400
000005 000500 AUTHOR. |
It seems that the poster is a little bit confused about the screen layout
Recommendation :
LOOK AT THE ISPF MANUAL for number o/off std/cob settings |
|
Back to top |
|
|
vandan
New User
Joined: 21 Oct 2007 Posts: 1 Location: visakhapatnam
|
|
|
|
try NUM ON STD COB in the ommand line tat should take cre of the problem. |
|
Back to top |
|
|
dobriyalsandeep
New User
Joined: 15 Aug 2007 Posts: 7 Location: mumbai
|
|
|
|
[ guess this is site-specific. Its not working in my site.]
hi Aaru,
you can try : NUM ON STD COB |
|
Back to top |
|
|
|