Author |
Message |
Topic: Skip the "Specify disposition of Log Data" panel |
arnold57
Replies: 5
Views: 7618
|
Forum: TSO and ISPF Posted: Mon Jul 03, 2017 1:39 pm Subject: Skip the "Specify disposition of Log Data" panel |
If you don't want to generate the log at all (which eliminates the need to delete it), set the "Primary pages" to 0 (zero). |
Topic: Placing cursor in ISPF panel |
arnold57
Replies: 6
Views: 5682
|
Forum: TSO and ISPF Posted: Wed Dec 03, 2014 5:39 pm Subject: Placing cursor in ISPF panel |
Setting .CURSOR in the )PROC (or )REINIT) section only takes effect if the panel is redisplayed. Dialog test (7.2) does not redisplay the panel when you press enter with no errors. It does another i ... |
Topic: How do you Locate & Copy an ISPF Editor Profile? |
arnold57
Replies: 10
Views: 10968
|
Forum: TSO and ISPF Posted: Tue Aug 05, 2014 3:31 pm Subject: How do you Locate & Copy an ISPF Editor Profile? |
Edit profiles are stored in your profile data set in member xxxxEDIT, where xxxx is the applid. For PDF, the applid is ISR, so ISREDIT is where your normal option 2 profiles are stored. All profiles ... |
Topic: Is There a Way to See Whether a Variable is Defined? |
arnold57
Replies: 4
Views: 4693
|
Forum: TSO and ISPF Posted: Mon Mar 31, 2014 3:31 pm Subject: Is There a Way to See Whether a Variable is Defined? |
Why not use SYMBOL('env.table.index') which will be 'VAR' if defined and 'LIT' if not.
P.S. For me VALUE(VALUE(CKSTR)) yields 'ROY' in Kolusu's example. |
Topic: Location of Long message of TBDISPL |
arnold57
Replies: 12
Views: 14831
|
Forum: TSO and ISPF Posted: Thu Dec 08, 2011 6:24 pm Subject: Location of Long message of TBDISPL |
Your long message field LNGMSG is only 5 characters long. Any message longer than 5 characters won't fit and will display in a pop-up window instead. |
Topic: Continue processing when REXX error is encountered |
arnold57
Replies: 11
Views: 9964
|
Forum: TSO and ISPF Posted: Wed Jun 01, 2011 6:51 pm Subject: Continue processing when REXX error is encountered |
You are getting a syntax error, so you should use
SIGNAL ON SYNTAX NAME BINERROR
You need to put the signal command where it gets executed before you encounter the error (normally at the very b ... |
Topic: IEBGENER file profile |
arnold57
Replies: 4
Views: 3192
|
Forum: Utilities Posted: Tue Feb 01, 2011 7:04 pm Subject: IEBGENER file profile |
You can create a profile called ZDEFAULT and turn NUM OFF. ZDEFAULT will be used as the default to initalize any new profile created. |
Topic: invoking EOS utility SPMUT00 in rexx |
arnold57
Replies: 7
Views: 9215
|
Forum: TSO and ISPF Posted: Mon Mar 01, 2010 7:49 pm Subject: invoking EOS utility SPMUT00 in rexx |
You are issuing SPMUT00 as a TSO command (due to your ADDRESS TSO).
You need to try something like
address linkmvs "SPMUT00 prm"
which is the same as // EXEC PGM=SPMUT00,PARM='BATC ... |
Topic: Macro not working second time |
arnold57
Replies: 7
Views: 5500
|
Forum: TSO and ISPF Posted: Mon Jul 27, 2009 6:48 pm Subject: Macro not working second time |
Do you realize that since you used the NOPROCESS option, any changes you made on the screen will not be visible to the macro? That is, the data will be saved as it existed the last time you pressed E ... |
Topic: IMS connect & OTMA diffrence |
arnold57
Replies: 3
Views: 4295
|
Forum: IMS Posted: Tue Jun 02, 2009 5:53 pm Subject: IMS connect & OTMA diffrence |
OTMA is a protocol within IMS that allows input messages to be received from another program using XML (as opposed to the traditional method of being input from a terminal).
IMS Connect is a progra ... |
Topic: Getting Rid Of Commas in TSO |
arnold57
Replies: 17
Views: 9891
|
Forum: TSO and ISPF Posted: Mon Nov 03, 2008 2:40 pm Subject: Getting Rid Of Commas in TSO |
Your command
c all "," '' .b .e
should work in ISPF edit. Both quotes and double quotes are valid and can be mixed.
You may have set a comma as your command delimeter. Type S ... |
Topic: how to discard scheduled transaction (trying /modify commit) |
arnold57
Replies: 4
Views: 4599
|
Forum: IMS Posted: Mon Jun 02, 2008 7:24 pm Subject: how to discard scheduled transaction (trying /modify commit) |
If you have shared queues, you can /DEQ TRAN xxx PURGE
If not, a common method is to have a BMP which reads (GU) all the messages queued to the transaction.
Or, you can purchase a vendor produc ... |
Topic: how/where to evoke a transaction? |
arnold57
Replies: 6
Views: 3990
|
Forum: IMS Posted: Wed Apr 30, 2008 12:54 pm Subject: how/where to evoke a transaction? |
/STA changes the status of the transaction - it would not cause any screen to be displayed at your terminal. To see if the transaction exists, try the command:
/DIS TRAN tran_code |
Topic: how/where to evoke a transaction? |
arnold57
Replies: 6
Views: 3990
|
Forum: IMS Posted: Sat Apr 19, 2008 3:41 pm Subject: how/where to evoke a transaction? |
In some cases, transactions require formatted input. In that case, if you just type the transaction, you will probably get an error. The /FORMAT command will display a formatted screen that allows y ... |
Topic: IMSGEN |
arnold57
Replies: 1
Views: 2356
|
Forum: IMS Posted: Mon Apr 07, 2008 1:50 pm Subject: IMSGEN |
Yes, unless you have Version 10 with DRD, or a product such as BMC's DELTA IMS.
If you do regen, you can implement a MODBLKS gen without restarting IMS using online change. |
|