id
stringlengths
14
14
text
stringlengths
3
7k
source
stringclasses
1 value
476b978ec09b-0
InterTest™ and SymDump ® 11.0 Basic Debugging Tasks Checklist The following list describes the debugging tasks: •Display the source listing •Set monitoring for the program •Set breakpoints •Set other monitoring options as needed •Initiate the program •End the test session When the program is stopped at a breakpoint, yo...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
476b978ec09b-1
The following table shows what program sections are displayed when you use the LOCATE command or option numbers: Command Option # Section L .DX 1 Data Name Cross Reference L .AG 2 Aggregate Length Table L .SR 3 Storage Registers L .SS 4 Static Storage Map L .VS 5 Variable Storage Map L .OF 6 Offsets L .GC 7 Generated C...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
72e8a01dea31-0
InterTest™ and SymDump ® 11.0 L .LX 14 Label Cross-Reference Search for Strings and Labels You can also search for and display a character string by typing a FIND string NEXT/PREV command on the command line or option 9 (Search forward) or 10 (Search backward) in the Option # field and typing the character string in th...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
72e8a01dea31-1
•All wild branches •All violations of CICS standards The easiest way to turn on monitoring is from the program source listing. Perform the following steps: 1.Display the source listing as described in Display Your Source Listing. InterTest for CICS displays the Source Listing Display screen for the program. 2.Press PF...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
034fe78839f0-0
InterTest™ and SymDump ® 11.0 NOTE Before you return to CICS, you might want to set breakpoints directly on the source listing. This process is described in Set and Remove Breakpoints. 3.On a clear CICS screen, type the transaction identifier of the program you are monitoring. When you type the program transaction ID, ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
034fe78839f0-1
set to stop at any instruction if a condition is met. Request The program stops at every CICS command or macro, or at certain CICS commands or macros, or at calls to DL/ I, DB2, or software. Single-step The program stops after executing one or more verbs. 494
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
bec1b0e00312-0
InterTest™ and SymDump ® 11.0 An automatic breakpoint occurs when InterTest for CICS detects an error. When a program is stopped at an automatic breakpoint, you can either correct the error, or you can go around the error. You can press PF1 to find out what caused the error and how to use InterTest for CICS to fix it. ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
bec1b0e00312-1
PFKS 1 Help 2 3 End 4 Profile 5 Monitor 6 Menu 7 Backward 8 Forward 9 Next Wnd 10 11 12 Status ---------+--------------------------------------------------------------------- _ 637.1 MAPNUM = '00'; ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
bec1b0e00312-2
Monitoring Status display (PF12 from Source Listing). Remove breakpoints which are no longer needed so that you are not stopped when retesting the program. 495
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
58ce080a0d35-0
InterTest™ and SymDump ® 11.0 Set Unconditional Breakpoints from Cross-Reference Sections The Cross Reference sections of the PL/I listing allow you to set many breakpoints at once. You can set unconditional breakpoints from the sections in the listing: •Data Name Cross Reference Table (L .DX or Option 1) •Procedures C...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
58ce080a0d35-1
COMMAND ===> Program= PL1DEMO Option # Stmt # Margin= 01 Search= --------------+-----------------------------------------------------------...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
0faaf348e393-0
InterTest™ and SymDump ® 11.0 696.1 698.1 707.1 709+ Setting Unconditional Breakpoints at All Procedures and All Labels To set unconditional breakpoints at all Procedure Names and All Labels, display the Cross Reference table using Option # 1 (or L .DX command)...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
0faaf348e393-1
can easily find logic errors because you can display the value of a variable where the variable is defined, and at any point in the code where the variable is referenced. You can also dynamically change the variable value to correct errors or test other program paths. Remember that changes to program storage are dynami...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
f9c528d38867-0
InterTest™ and SymDump ® 11.0 _ 516.1 1 DCL 1 TS_AREA, _ 517.1 2 TS_SWITCH CHAR(1), d 518.1 2 TASKNUM FIXED DEC(5), _ 519.1 2 TS_TEXT ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
f9c528d38867-1
NOTE InterTest for CICS displays more than just the contents of the specified variable (TASKNUM); it also displays all the items below it in the same PL/I structure. 3.Press Clear or PF3 to return to the source listing. Modify the Value of a Variable You can modify the value of a variable by over typing the bytes in th...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
be5ed8dec33c-0
InterTest™ and SymDump ® 11.0 3.To modify a variable where the variable is referenced, type M to the left of the statement that references the variable, place the cursor under any character in the variable, and press Enter. InterTest for CICS generates and displays a fill-in-the-blanks MOVE statement, which is shown in...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
be5ed8dec33c-1
Keep Variables in the Keep Window The Keep window lets you display the values of an unlimited number of data items directly on the source listing. If more than six variables are selected for the Keep window, PF19 and PF20 are available to scroll forward and backward through the Keep window. Keeping data items in the wi...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
8c8737568b0c-0
InterTest™ and SymDump ® 11.0 Add a Variable to the Keep Window (static keep element) You can add variables to the Keep window whenever your source listing is displayed. Identify the variables values that you want to observe either before you execute the program, or when you are at a breakpoint. Follow these rules to a...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
8c8737568b0c-1
_ 641.1 1 IF TASKNUM = 1 THEN _ 642.1 1 GOTO SENDSCR3; _ 643.1 1 GOTO END_SESSION; . . . Display Variable Structure To display the entire PL/I structure of a variable, type D to the left of...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
e26c46c839f8-0
InterTest™ and SymDump ® 11.0 _ 641.1 1 IF TASKNUM = 1 THEN _ 642.1 1 GOTO SENDSCR3; _ 643.1 1 GOTO END_SESSION; . . . InterTest for CICS responds by di...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
e26c46c839f8-1
_ 637.1 MAPNUM = '00'; A ==>.1 1 TASKNUM = TASKNUM + 1; _ 639.1 1 IF TASKNUM > 2 THEN _ 640.1 1 GOTO END_SESSION; ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
92a2e1288108-0
InterTest™ and SymDump ® 11.0 Array Elements You can view or change elements of arrays that are up to 15 dimensions deep. NOTE Arrays with unknown boundaries at compile time are not supported. When you use the D or K line commands from Source Listing, place the cursor under the element and InterTest for CICS automatica...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
92a2e1288108-1
lets you change test data in the middle of a test session. Changes are permanent and changes to the file remain after the test session ends. Inspect Auxiliary Storage 1.To access the auxiliary storage facility, select 4 Auxiliary storage from the InterTest for CICS Primary Option Menu, and then specify the file that yo...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
35ef59e180a7-0
InterTest™ and SymDump ® 11.0 4 TD queues - Display/select transient data queues for access 5 TS queues - Display/select temporary storage queues for access Type specific or generic file/queue name(s): (Valid mask characters are * an...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
35ef59e180a7-1
If the FILE transaction does not display the previous screen, it is probably because the person who installed InterTest for CICS changed the name of the FILE transaction. Contact that person to find out the correct name. After you enter the file or database and, optionally, the record or segment, InterTest for CICS dis...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
3a0e5cbf8bb6-0
InterTest™ and SymDump ® 11.0 0030 F0F9F1F2 F8F74040 0000598C 40404040 091287 BLKSIZE=0000 0040 D1D6C3D5 404040E2 D4C9E3C8 40404040 JOHN SMITH KEYPOS=0000 0050 KEYLEN=0A 0060 ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
3a0e5cbf8bb6-1
information for this program must be saved in the InterTest for CICS Symbolic File. Perform the following steps to display a record or segment in structured format: 1.If the FORMAT field does not contain S, press PF2 until FORMAT= S appears. The USE=field now appears after the FORMAT field. 2.Identify the program and s...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
4e0acab290fe-0
InterTest™ and SymDump ® 11.0 02 PRODUCT-CODE | C2D4D5C8 40404040 | BMNH 02 PRODUCT-DESCRIPTION | E6D9C5D5 C3C8 | WRENCH 02 PRODUCT-SITE | D1 | J | ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
4e0acab290fe-1
Resume Execution from a Specific Location To resume program execution from the breakpoint location where your program stops, the Source Listing screen must display. 1.Press PF3 from any InterTest for CICS screen until the breakpoint screen appears. 2.Press PF5 to continue from the current breakpoint. You can also type ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
5345a598dbd9-0
InterTest™ and SymDump ® 11.0 Search= READATA ------------------------------------------------------------------------------ _____ TASKNUM | ?00000. --------+-------------------------------------...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
5345a598dbd9-1
Source Listing Profile screen), the new step amount appears next to PF10 at the top of the Source Listing Breakpoint screen. Abend a Task When your program is stopped at a breakpoint, you can abend your task rather than resume execution. 1.Type ABEND (or, =3) in the Command line of any Breakpoint display. InterTest for...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
3b75e77ba7ea-0
InterTest™ and SymDump ® 11.0 XXXX Abend exits cancelled, no dump your code Your abend code, dump taken . . . 2.To cancel the abend, press PF3. InterTest for CICS redisplays the Primary Option Menu. 3.To abend without a d...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
3b75e77ba7ea-1
30 PF key definitions 65 Abending your TASK 32 Primary/Line Commands 70 PROFILE, AUTOSTEP, AUTOKEEP Options 35 Set the Display Margins 75 Code Coverage Option 40 Set/Remove Breakpoints 80 View Program Backtrace ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
03fef96fe295-0
InterTest™ and SymDump ® 11.0 Get Help to Correct an Error Whenever your program stops at an automatic breakpoint, InterTest for CICS displays a short message identifying the reason for the breakpoint. You can request help by pressing PF1 for information on what caused the error that triggered the breakpoint and how to...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
03fef96fe295-1
M FOR RETURN TO PREVIOUS MENU, CLEAR TO EXIT, OR MESSAGE NUMBER. ==> N NOTE When you leave and then return to an automatic breakpoint screen, the error message may no longer appear. For help on the cause of the error, press Clear to redisplay the error message before pressing PF1. End a Test Session After your progr...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
a6ff29a0e591-0
InterTest™ and SymDump ® 11.0 breakpoints and other monitoring options for the recompiled programThe option also resets the PPT entry to the new program library address. PL/I Advanced Monitoring Features Use InterTest for CICS advanced features to help you detect and correct errors. Whatever your specific testing needs...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
a6ff29a0e591-1
OPTION ===> 1 Programs - Display/modify program monitoring options 2 Transactions - Display/modify transaction monitoring options ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
15c6a2ad9d3f-0
InterTest™ and SymDump ® 11.0 COMMAND ===> Type information and S to set or R to remove option(s) below. ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
15c6a2ad9d3f-1
–CICS, clear screen: ITST 2.1 –Primary Option Menu, Option field: 2.1 –Source Listing display, Command field: =2.1 –Breakpoint display, Command field: =1.2.1 3.After processing any program options from this menu, press PF3 to exit back to your test session. If you entered directly from CICS, you will exit back to the I...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
4f2fa1e18fe5-0
InterTest™ and SymDump ® 11.0 _ 604.1 LENGTH (TS_LEN) _ 605.1 FROM (TS_AREA) _ 606.1 MAIN */ InterTest for CICS then displays the menu on which you define the condit...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
4f2fa1e18fe5-1
report. Remove Conditional Breakpoints from the Source Listing To remove a conditional breakpoint from your Source Listing, overtype the C with an X and press Enter, as shown in the following screen: CA InterTest for CICS - PROTSYM FILE SOURCE LISTING DISPLAY COMMAND ===> ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
b0b4099f630e-0
InterTest™ and SymDump ® 11.0 _ 605.1 FROM (TS_AREA) _ 606.1 MAIN */ . . . Remove Conditional Breakpoints from the Status Report Alternatively, you can always remove any breakpoint from the Monitoring Status report. T...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
b0b4099f630e-1
PF7 Backward 8 Forward 9 10 11 12 InterTest for CICS places an asterisk to the left of the breakpoint to indicate that the removal was processed. 3.Press PF3 to return to your Source. Request Breakpoints Request breakpoints are breakpoints that take effect prior to CICS commands and ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
7b94d5298848-0
InterTest™ and SymDump ® 11.0 Set Request Breakpoints To set request breakpoints, perform the following steps: 1.Select option 2.1 Program Monitoring on the Primary Option Menu. -------------------- CA InterTest for CICS PROGRAM MONITORING -------------------- COMMAND ===> ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
7b94d5298848-1
3.Type S to the left of the RBP option (request breakpoints). Press Enter. The Request Breakpoint Selection menu appears. Using this menu specify the type of request breakpoint, such as all CICS commands, File Control and Task Control. CA InterTest MONITORING COMMAND BUILDER - REQUEST BREAKPOINT SELECTION 13 ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
0bf9c4494d03-0
InterTest™ and SymDump ® 11.0 Statement no. of indirect command(s) to be executed: _____ User ID (or .ANY) who will execute the program: ________ ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
0bf9c4494d03-1
•Use special PF keys to step through the program's execution path •Reposition the source listing to view the program's execution path from a different backtrace position In addition to the Backtrace PF keys, all other Source Listing options, such as the Keep window, setting and removing breakpoints, and the ability to ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
9f6d1a9d6fdf-0
InterTest™ and SymDump ® 11.0 _ ____ #19 ... #19 ¦ PL1DEMO: PROC(DFHEIPTR,COMMAREA_PTR) OP _ ____ #19 ... #19 ¦ PL1DEMO: PROC(DFHEIPTR,COMMAREA_PTR) OP _ ____ #525 ... #541 ¦ 1 START_OF_PGM: _ ____ #544 ... #544 ¦ 1 IF EI...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
9f6d1a9d6fdf-1
From the Backtrace Summary screen, you can do the following tasks: •Reposition the display to view statement-by-statement details of the program's execution path by: - Pressing PF2 - Marking a statement block with s, then pressing Enter •Assign a bookmark, consisting of one to four characters, to one or more backtrace ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
290a0fb34964-0
InterTest™ and SymDump ® 11.0 Search= ------------------------------------------------------------------------------- _____ TASKNUM | ?00000. ======= Backtrace at #000635 (000635 -> 000638...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
290a0fb34964-1
reposition the Source Listing, the highlighting of executed statements temporarily suspends until a backtrace-related PF key (next block, previous block, and so on) is entered. When in Source Listing Backtrace mode, the current backtrace position always displays on the line just above the first source statement. This l...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
e1c4164b604f-0
InterTest™ and SymDump ® 11.0 Navigate Through Program Execution You can trace your program's execution path by using the following PF keys: •Using PF5, PF9, and PF11 to trace execution backward •Using PF6, PF10, and PF12 to trace execution forward •Setting the Source Listing Profile Stepping Amount, and then using PF9...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
e1c4164b604f-1
NO Removes the COUNTER display and stops the counting feature. 3.Press Enter to process the new setting(s) and to return to the Source Listing Display. The following screen shows the Code Coverage feature. CA InterTest for CICS - PROTSYM FILE ABEND DETECTED BREAKPOINT COMMAND ===> ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
7a467172e7ea-0
InterTest™ and SymDump ® 11.0 _ 595.1 1 2 END; | 0000001 | _ 596.1 1 1 GOTO CONTINUE_TASK; | 0000001 | _ 597.1 1 1 END; | 0000000 | _ 598.1 ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
7a467172e7ea-1
Listing or from the ITST menus. To access the Indirect Commands facility from the Source Listing facility, type ICMDS in the command line or 11 in the Option # field and press Enter. NOTE Tab to the More: + field and press Enter to view labels of Options 6 to 15. Notice Option 11 is Indirect commands, and Option 12 is ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
ad205b04b176-0
InterTest™ and SymDump ® 11.0 To access the Indirect Commands facility from the menus, access the Program Monitoring menu (fastpath is ITST 2.1), and select the Commands option. Detailed steps follow. 1.Select option 2 Monitoring on the Primary Option Menu. The Monitoring Menu appears. 2.Select option 1 Programs. The P...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
ad205b04b176-1
_ Special Other options (storage allocation, file updating, etc.) _ Composite Monitor multi-CSECT program's separately compiled components PF1 Help 2 3 End 4 Return 5 6 PF7 Backwa...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
baba88277d3c-0
InterTest™ and SymDump ® 11.0 The Indirect Commands Facility Either access method brings you to the Indirect Commands facility shown in the following screen. This example shows the indirect commands that can be used to fix the ASRA condition in our PL1DEMO demo program, without recompiling. To do so, follow these steps...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
baba88277d3c-1
BREAK InterTest for CICS halts indirect command processing and issues a breakpoint display from where the indirect commands were invoked in the program. GOTO InterTest for CICS resumes execution at the program statement number, offset, paragraph name, or indirect command statement number specified after the GOTO comman...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
be2860ce25cc-0
InterTest™ and SymDump ® 11.0 From the Source Listing facility, set the unconditional or conditional breakpoint as follows: 1.Display the line in your Source Code where you want to set the breakpoint to execute the indirect commands. 2.Type BPO in the command line or 12 in the Option # field (Breakpoint Options), tab d...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
be2860ce25cc-1
5.Press Enter to process this menu. 6.If you are setting a conditional breakpoint, type the condition on the Conditional Breakpoint screen and press Enter. Your Source Listing display shows the indirect command to execute on the line above the statement with the U or C indicator. 7.To set a request breakpoint that exec...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
c553c8dfe3f6-0
InterTest™ and SymDump ® 11.0 _ TS Control _ Syncpoints _ Sys Prog Functions _ Web access _ Business Trans _ 3270 Bridge Enter 'n' to stop only every n'th time: ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
c553c8dfe3f6-1
| Option ID DB6BDAD0 | From, to terminals U057, U057 | Execute indirect command 10 _ - |-CMD Indirect commands defined U057 | ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
d32c73a03c6e-0
InterTest™ and SymDump ® 11.0 For more information on the Indirect Commands facility, see Breakpoint Activities. Replacement, Protection, and Special Options InterTest for CICS has many options for specialized testing needs. A few are explained here. For an explanation of all the monitoring options, see Monitoring Menu...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
d32c73a03c6e-1
These options can also prevent a program from modifying specific areas of storage not normally protected. Special Options Special options alter the InterTest for CICS standard monitoring procedures and help you design customized testing scenarios. The No File Updating option prevents a monitored program from updating f...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
ad8e645e5f50-0
InterTest™ and SymDump ® 11.0 Composite Module Testing Composite support lets you take advantage of all InterTest for CICS functions when you test composite modules. A composite module consists of separately compiled modules link-edited in one load module. These modules can be written in different languages and compil...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
ad8e645e5f50-1
_ Link name Monitor Offset Length Language Comments S PL1DEML1 PL1DEML 80 248 PL/I 4.3 S PSBIN251 PSBIN25 EE8 1B0 PL/I 4.3 S ASBIN25 ASBIN25 1098 17C HLASM 6.0 ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
f3dfe6ca1793-0
InterTest™ and SymDump ® 11.0 ---------------- CA SymDump for CICS PRIMARY OPTION MENU ----------------- OPTION ===> 1 Analysis - Display/select captured CICS ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
f3dfe6ca1793-1
programs, transactions and terminals referenced. Task Areas InterTest for CICS CORE displays for such areas as the Commarea, the EXEC Interface Block, and the Transaction Work Area. Language Areas InterTest for CICS CORE displays for such areas as COBOL working storage and COBOL BLL cells. Database Areas InterTest for ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
d656aeb73193-0
InterTest™ and SymDump ® 11.0 COMMAND ===> Type S to display main storage at the data location address. ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
d656aeb73193-1
values for each operand of the instruction. Abend analysis information is available whether or not you have symbolics available for the abending program. In the previous example, the description of Operand 1 tells you its storage value is invalid for its data type. It should be a packed decimal. Using this display only...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
23d4856a95b0-0
InterTest™ and SymDump ® 11.0 _ 99 1 0 SENDSCR3: /** ASRA CONGRATULATION SC _ /* EXEC CICS SEND MAP('DASRA') _ MAPSET('IN25PMP') _ WA...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
23d4856a95b0-1
Before proceeding with the demo session, you must complete the steps outlined in the following section. Demo Preliminaries The advanced demo session uses PL1DEMO just as the basic session did. Before beginning, you need to set some breakpoints that will be used in different sections of the advanced demo session. The th...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
c16cece80a8e-0
InterTest™ and SymDump ® 11.0 _ - |-.ANY User monitoring options Active | Symbolic listing file PROTSYM _ - |-UBP Unconditional breakpoint #1308 | Option ID 99B13F53 ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
c16cece80a8e-1
Search= OPTS 1 Data xref 2 Aggregate 3 Stor reqs 4 Stat stor 5 Var stor More: + 6 Offsets 7 Gend code 8 Err msgs 9 Srch fwd 10 Srch bwd PFKS 1 Help 2 3 End 4 Auto prms 5 Monitor 6 Menu 7 Backward 8 Forward 9 Next ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
c16cece80a8e-2
the program so that you can set options and check the contents of data items. 3.Start by searching for the label READATA. Tab to the Search= field, type l readata in the command line and press Enter. 528
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
6e144da6e0b4-0
InterTest™ and SymDump ® 11.0 CA InterTest for CICS - PROTSYM FILE SOURCE LISTING DISPLAY COMMAND ===> l readata Program= PL1DEMO Option # Stmt # Margin= 01 Search= ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
6e144da6e0b4-1
_ 29.1 02 EIBTRNID CHAR(4), _ 30.1 02 EIBTASKN FIXED DEC(7), _ 31.1 02 EIBTRMID CHAR(4), _ 32.1 02 EIBFIL01 FIXED BIN(15), ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
6e144da6e0b4-2
_ 1313.1 NOTOPEN (NOPEN) * _ 1314.1 DO; . . . InterTest for CICS sets the breakpoint and redisplays the screen with an uppercase U. 529
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
f9e10094e4d4-0
InterTest™ and SymDump ® 11.0 Set an Unconditional Breakpoint for a Label Now you will set a second unconditional breakpoint at the LOOPRTN label from the Labels Cross-Reference section. When you set the breakpoint from the Labels Cross-Reference section, it is set at the label name and not at the statement number. Thi...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
f9e10094e4d4-1
666.1 859.1 868.1 882+ 944.1 969.1 994.1 101+ 1044.1 1068.1 1091.1 1114.1 1137.1 1160.1 ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
f1ec57e70583-0
InterTest™ and SymDump ® 11.0 _ 1536.1 MORE_ENTRY CONSTANT LABEL Refs: 903.1 . .. InterTest for CICS sets the breakpoint at the LOOPRTN label and redisplays the screen with an uppercase U. How to Set Request Breakpoints ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
f1ec57e70583-1
Option Description More: + _ Status Display and/or remove monitoring options (S only) _ Monitor Monitoring (R removes monitoring and all options previously set) _ UBP Unconditional breakpoints (specific program only) ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
5655f81a67c9-0
InterTest™ and SymDump ® 11.0 7.Press Enter. CA InterTest MONITORING COMMAND BUILDER - REQUEST BREAKPOINT SELECTION 13 Set one or more types of Request Breakpoints in: PROG=PL1D...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
5655f81a67c9-1
9.Tab to the REWRITE command field. 10.Type an s and press Enter. CA InterTest for CICS MONITORING COMMAND BUILDER - REQUEST BREAKPOINT SELECTION Set one or more types of File Control COMMANDS IN: ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
3c2861402b17-0
InterTest™ and SymDump ® 11.0 •If you do not want to use the composite support option, skip to Execute the Demo Program. •If you do want to use the composite support option, perform the steps in Composite Support that follows. Composite Support Composite support lets you use InterTest for CICS to test and debug composi...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
3c2861402b17-1
COMMAND ===> Program= PL1DEML Option # Stmt # Margin= 01 Search= ---------+---------------------------------------------------------------------...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
7b6cdbd6717b-0
InterTest™ and SymDump ® 11.0 4.Press PF5 to activate composite program monitoring for PL1DEML. Execute the Demo Program Now you are ready to execute the demo program PL1DEMO. 1.Type =X in the Command field to exit the menus, and then use PF3 to exit Source Listing. You return to CICS. 2.On a clear CICS screen, type th...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
7b6cdbd6717b-1
**** **** **** CA InterTest Demo Session **** **** Options Menu **** **** **** ****...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
ab1857483f46-0
InterTest™ and SymDump ® 11.0 Key in request: 01 Press ENTER to continue or CLEAR to terminate ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
ab1857483f46-1
Press ENTER to continue or CLEAR to terminate 2.Press Enter. InterTest for CICS halts the demo program at an automatic breakpoint. Prevent an AEIL Abend The following screen shows that InterTest for CICS halted the demo program at an automatic breakpoint (note the A in column 1) before an AEIL abend could occur. CA Int...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
614269deb453-0
InterTest™ and SymDump ® 11.0 _ 1321.1 1 RECKEY = '0000000000'; _ 1322.1 /* EXEC CICS STARTBR DATASET('PROTH') RIDFLD(RECK A ==>.1 1 DO; ==> ==> CICS abend intercepted. Abend code = AEIL...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
614269deb453-1
_ 1332.1 SET(REC_PTR) _ 1333.1 RIDFLD(RECKEY) What's the problem? The data set name PROTH is wrong; it should be PROTHLF. How can it be fixed? InterTest for CICS lets you dynamically correct the file name and continue testin...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
b6033e499409-0
InterTest™ and SymDump ® 11.0 TS replacement mask: ____________________________________ Limit monitoring to your terminal - '*' or TERMID: ____ User ID (or .ANY) who will execute the pr...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
b6033e499409-1
_ 1325.1 ASSEMBLER) ENTRY(*,CHAR(8),*,FIXED BIN(15),*); _ 1326.1 1 1 CALL DFHENTRY_BF6577CC_B2C81A6B(' .^. . µ.0433000 _ 1327.1 00 03 00 20 A0 00 F0 F4 F3 F3 F0 F0 F0 F1 'X */,'PROTH' _ 1328.1 FHEIB0,RECKEY); ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
b6033e499409-2
_ 1339.1 00000001100000001000000001011000000000000111100001111010 The program resumes execution and displays the record it has read on your screen as shown in the following screen. The demo program has succeeded in reading a record from file PROTHLF (the InterTest for CICS Help file). The demo program disp...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
a61aecf85880-0
InterTest™ and SymDump ® 11.0 **** **** ********************************************************************** ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
a61aecf85880-1
demo program). Two InterTest for CICS options are detailed in this part of the demo session: •The MXS option limits the amount of main storage obtained by a task. This option is useful in detecting program errors that cause a task to acquire an excessive amount of storage. •The MXR option limits the number of CICS requ...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
1aa8398a7ea1-0
InterTest™ and SymDump ® 11.0 ********************************************************************** **** **** **** CA InterTest Demo Session **** **** MXR Option - Limit Number of CIC...
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf
1aa8398a7ea1-1
–MXS, to limit the amount of CICS main storage acquired by the demo program –MXR, to limit the total number of CICS requests issued by the demo program 3.Specify 50,000 bytes as the maximum amount of main storage the demo program can get, and specify 20 as the maximum number of CICS requests the demo program can issue....
/Users/ilidiolopes/Documents/ca-intertest-and-ca-symdump-11-01.pdf