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

Problem with ISREDIT CHANGE and Column


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

New User


Joined: 22 Nov 2007
Posts: 64
Location: Germany

PostPosted: Wed Apr 08, 2015 8:39 pm
Reply with quote

Hi Folks,

I've a problem with ISREDIT CHANGE and a start column :

Code:
"CHANGE '"StrOld"' '"StrNew"' 1 ALL"
works

Code:
col = 1

"CHANGE '"StrOld"' '"StrNew"' "col" ALL"
doesn't work

Do you have any ideas what is wrong ?

Thanks in advance icon_smile.gif
Back to top
View user's profile Send private message
Nic Clouston

Global Moderator


Joined: 10 May 2007
Posts: 2455
Location: Hampshire, UK

PostPosted: Wed Apr 08, 2015 9:20 pm
Reply with quote

Best guess is the quotes around col in your command.
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10872
Location: italy

PostPosted: Wed Apr 08, 2015 9:50 pm
Reply with quote

telling does not work is not really enough for the problem determination

JUST TESTED

Code:
 ...
 000025 fr = " "
 000026 to = "x"
 000027 col = 72
 000028 Address ISREDIT "CHANGE '"fr"' '"to"' "col" all"
 ...


works for me

and this
Code:

fr = " "
to = "x"
c1 = 72
c2 = ""
Address ISREDIT "CHANGE '"fr"' '"to"' "c1 c2" all"


and this
Code:

fr = " "
to = "x"
c1 = 72
c2 = 73
Address ISREDIT "CHANGE '"fr"' '"to"' "c1 c2" all"
Back to top
View user's profile Send private message
oerdgie

New User


Joined: 22 Nov 2007
Posts: 64
Location: Germany

PostPosted: Wed Apr 08, 2015 10:44 pm
Reply with quote

Yes, it works for me too.

My macro is called by a REXX (Batch).
Parameters (incl. the column) for the macro are read from a file within the JCL. The last parameter in the file is the column.
I forgot to remove the line numbers on the right site of the file.
As a result I got the column and the line number passing from the Rexx to the macro.
This was the problem, my mistake. icon_redface.gif

Many thanks for help !
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 Map Vols and Problem Dataset All Other Mainframe Topics 2
No new posts How to load to DB2 with column level ... DB2 6
No new posts RC query -Time column CA Products 3
No new posts 3270 personal communications. Can't c... TSO/ISPF 2
No new posts first column truncated in search result IBM Tools 13
Search our Forums:

Back to Top