ispf

Mainframe commands for DS - move columns in ISPF Edit

五迷三道 提交于 2019-12-08 02:56:18
问题 how can we move the data in middle of PS file to left side in Mainframe? any shortcut command for this? I have a Data set with data at column 13 and it has to be moved to column 11, Any short key to move it. Want to align rest of the rows in DS as 1st column BROWSE OSMDEV.ITALY3.DATA Command ===> ----+----1----+----2----+----3----+----4----+- 758 200510 4323T 758 2005 10 4323N 758 2005 10 51149 758 2005 10 51154 758 2005 10 6758E 758 2005 13 34437 758 2005 13 34441 758 2005 13 53445 回答1: Use

How can I run ISPF Edit Macros in Batch

时间秒杀一切 提交于 2019-12-06 16:25:47
问题 I frequently write and use ISPF edit macros. However, invoking them in foreground is time consuming. Can I use a Rexx program to run the edit macros against all, or a selection of, members of a PDS via batch? 回答1: You can use Library Management functions. You use LMINIT to get a DATA ID for the dataset to be edited and then use the LMOPEN function to open the dataset. You could then use LMMLIST if you want to perform the macro on a member or members of a PDS or PDSE. You can then use the EDIT

Mainframe commands for DS - move columns in ISPF Edit

喜欢而已 提交于 2019-12-06 04:20:25
how can we move the data in middle of PS file to left side in Mainframe? any shortcut command for this? I have a Data set with data at column 13 and it has to be moved to column 11, Any short key to move it. Want to align rest of the rows in DS as 1st column BROWSE OSMDEV.ITALY3.DATA Command ===> ----+----1----+----2----+----3----+----4----+- 758 200510 4323T 758 2005 10 4323N 758 2005 10 51149 758 2005 10 51154 758 2005 10 6758E 758 2005 13 34437 758 2005 13 34441 758 2005 13 53445 Use the ISPF 'BNDS' line command command and set the bounds (via the '<' and '>' characters) to column 11 and

How can I run ISPF Edit Macros in Batch

删除回忆录丶 提交于 2019-12-04 22:05:44
I frequently write and use ISPF edit macros. However, invoking them in foreground is time consuming. Can I use a Rexx program to run the edit macros against all, or a selection of, members of a PDS via batch? You can use Library Management functions. You use LMINIT to get a DATA ID for the dataset to be edited and then use the LMOPEN function to open the dataset. You could then use LMMLIST if you want to perform the macro on a member or members of a PDS or PDSE. You can then use the EDIT function specifying the macro to use/invoke, which should have an ISREDIT END or ISREDIT CANCEL . If