View previous topic :: View next topic |
Author |
Message |
misi01 Advanced
Joined: 02 Dec 2002 Posts: 629 Topics: 176 Location: Stockholm, Sweden
|
Posted: Mon Feb 01, 2021 5:09 am Post subject: PFKEY setup in IBM's Debug Tool |
|
|
First of all, if this is the wrong place, moderator, please move it to the correct one. Also, if it IS the correct place, feel free to remove this opening paragraph.
I'm trying to use IBM's Debug Tool under CICS, and according to the online manual, you can set your own PF keys. I tried with the command
Quote: |
SET PF10 "STEP OVER"
|
but all I got back was the message
Quote: |
Incomplete command specified
|
Without the quotes around it, I received the message
Quote: |
The command element STEP is invalid.
|
Any suggestions if it can be done, and if so how? _________________ Michael |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Tue Feb 02, 2021 12:15 am Post subject: |
|
|
misi01,
I think you need string & command. so try this
Code: |
SET PF10 "STEP OVER" = CODE STEP OVER;
|
Check the Syntax and Examples Listed here
Later you can check the PF key settings by issuing the command
_________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
 |
misi01 Advanced
Joined: 02 Dec 2002 Posts: 629 Topics: 176 Location: Stockholm, Sweden
|
|
Back to top |
|
 |
misi01 Advanced
Joined: 02 Dec 2002 Posts: 629 Topics: 176 Location: Stockholm, Sweden
|
Posted: Tue Feb 02, 2021 2:54 am Post subject: |
|
|
Simple update. I tried your example. Entering the command presented no problems, but as soon as I pressed PF10, I received the error message
Quote: |
The command element CODE is invalid.
|
However,
Quote: |
SET PF10 "STEP OVER" = STEP OVER ;
|
worked nicely.
BTW. The PF key texts were updated automatically, so at the bottom of the screen, I saw
Quote: |
PF 1: ? 2:STEP 3:QUIT 4:LIST 5:FIND 6:AT/CLEAR
PF 7:UP 8:DOWN 9:GO 10:STEP OVE 11:ZOOM LOG 12:RETRIEVE
|
_________________ Michael |
|
Back to top |
|
 |
|
|