IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Need ISPF EDIT command to remove a line


IBM Mainframe Forums -> TSO/ISPF
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
nprathap4u

New User


Joined: 24 Apr 2007
Posts: 15
Location: India

PostPosted: Tue Oct 23, 2007 7:44 pm
Reply with quote

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
View user's profile Send private message
khamarutheen

Active Member


Joined: 23 Aug 2005
Posts: 677
Location: NJ

PostPosted: Tue Oct 23, 2007 7:49 pm
Reply with quote

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
View user's profile Send private message
Craq Giegerich

Senior Member


Joined: 19 May 2007
Posts: 1512
Location: Virginia, USA

PostPosted: Tue Oct 23, 2007 7:52 pm
Reply with quote

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
View user's profile Send private message
nprathap4u

New User


Joined: 24 Apr 2007
Posts: 15
Location: India

PostPosted: Tue Oct 23, 2007 8:05 pm
Reply with quote

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
View user's profile Send private message
khamarutheen

Active Member


Joined: 23 Aug 2005
Posts: 677
Location: NJ

PostPosted: Tue Oct 23, 2007 8:08 pm
Reply with quote

Quote:
It worked fine but all the codes move accordingly.


What do you mean??? Post your output plzz
Back to top
View user's profile Send private message
cpuhawg

Active User


Joined: 14 Jun 2006
Posts: 331
Location: Jacksonville, FL

PostPosted: Tue Oct 23, 2007 8:18 pm
Reply with quote

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
View user's profile Send private message
Craq Giegerich

Senior Member


Joined: 19 May 2007
Posts: 1512
Location: Virginia, USA

PostPosted: Tue Oct 23, 2007 8:41 pm
Reply with quote

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
View user's profile Send private message
nprathap4u

New User


Joined: 24 Apr 2007
Posts: 15
Location: India

PostPosted: Tue Oct 23, 2007 8:54 pm
Reply with quote

W o W...

Hi Craq Giegerich/cpuhawg,

thank you very much.
it worked fine.
Back to top
View user's profile Send private message
Craq Giegerich

Senior Member


Joined: 19 May 2007
Posts: 1512
Location: Virginia, USA

PostPosted: Tue Oct 23, 2007 8:55 pm
Reply with quote

What does this have to do with your subject "Need ISPF EDIT command to remove a line"?
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Tue Oct 23, 2007 8:59 pm
Reply with quote

Hello,

Maybe there was a word missing in the subject.

Quote:
"Need ISPF EDIT command to remove a line number"?
Possibly?
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Tue Oct 23, 2007 9:27 pm
Reply with quote

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
View user's profile Send private message
dobriyalsandeep

New User


Joined: 15 Aug 2007
Posts: 7
Location: mumbai

PostPosted: Thu Oct 25, 2007 3:07 pm
Reply with quote

hi
for removing that line number u can issue ( TSO DEL STD COB) in command line.
Back to top
View user's profile Send private message
Aaru

Senior Member


Joined: 03 Jul 2007
Posts: 1287
Location: Chennai, India

PostPosted: Thu Oct 25, 2007 3:30 pm
Reply with quote

Dobriya,

Quote:
TSO DEL STD COB) in command line.


I guess this is site-specific. Its not working in my site.
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10872
Location: italy

PostPosted: Thu Oct 25, 2007 6:49 pm
Reply with quote

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
View user's profile Send private message
vandan

New User


Joined: 21 Oct 2007
Posts: 1
Location: visakhapatnam

PostPosted: Sat Oct 27, 2007 1:01 pm
Reply with quote

try NUM ON STD COB in the ommand line tat should take cre of the problem.
Back to top
View user's profile Send private message
dobriyalsandeep

New User


Joined: 15 Aug 2007
Posts: 7
Location: mumbai

PostPosted: Wed Dec 12, 2007 12:35 pm
Reply with quote

[ guess this is site-specific. Its not working in my site.]

hi Aaru,
you can try : NUM ON STD COB
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> TSO/ISPF

 


Similar Topics
Topic Forum Replies
No new posts RACF - Rebuild SETROPTS command which... All Other Mainframe Topics 3
No new posts Write line by line from two files DFSORT/ICETOOL 7
No new posts Sortjoin and Search for a String and ... DFSORT/ICETOOL 1
No new posts Routing command Address SDSF to other... TSO/ISPF 2
No new posts Looking for a little history of ISPF ... TSO/ISPF 5
Search our Forums:

Back to Top