Fast-Path Access to the Source Listing screen (2.L)-Code Debug CICS C
To directly access the Source Listing screen (2.L), enter an Code Debug CICS transaction, followed by the load module name. This can be done, for example, by typing XPED CWDEMC and pressing Enter. The Source Listing screen (2.L) is displayed for the Code Debug CICS C demonstration program CWDEMC. You can also specify a load module and CSECT combination separated by a colon (:).
From here you can set breakpoints in your programs, select variables to keep for viewing, set up an execution analysis, specify statements to be skipped, or transfer to another screen.
Accessing the Source Listing Screen (2.L) Using the Fast-Path Method
----------------------------- SOURCE LISTING (2.L) ------------------------C024
COMMAND ===> SCROLL ===> CSR
MODULE: CWDEMC CSECT: CWDEMC COMPILED: 29 JUN 2005 - 10:46:24
------ --------------------------------------------------------------------->
008405 | CALLTYPE CallType = CallInternal;
008406 |
008407 | CHAR szPrintBuffer[256] = { Null, };
008407 + CHAR szPrintBuffer[256] = { '\0', };
008408 |
008409 | PAYMAP1 *pPayMap1 = NULL;
008409 + PAYMAP1 *pPayMap1 = ((void *)0);
008410 | PAYMAP2 *pPayMap2 = NULL;
008410 + PAYMAP2 *pPayMap2 = ((void *)0);
008411 |
008412 | PCHAR pCommPtr = NULL;
008412 + PCHAR pCommPtr = ((void *)0);
008413 |
008414 | SHORT i = 0;
008415 | SHORT j = 0;
008416 |
008417 | /******************************************************************
008418 | /* End of automatic variable definitions for main function
008419 | /******************************************************************
COMMAND ===> SCROLL ===> CSR
MODULE: CWDEMC CSECT: CWDEMC COMPILED: 29 JUN 2005 - 10:46:24
------ --------------------------------------------------------------------->
008405 | CALLTYPE CallType = CallInternal;
008406 |
008407 | CHAR szPrintBuffer[256] = { Null, };
008407 + CHAR szPrintBuffer[256] = { '\0', };
008408 |
008409 | PAYMAP1 *pPayMap1 = NULL;
008409 + PAYMAP1 *pPayMap1 = ((void *)0);
008410 | PAYMAP2 *pPayMap2 = NULL;
008410 + PAYMAP2 *pPayMap2 = ((void *)0);
008411 |
008412 | PCHAR pCommPtr = NULL;
008412 + PCHAR pCommPtr = ((void *)0);
008413 |
008414 | SHORT i = 0;
008415 | SHORT j = 0;
008416 |
008417 | /******************************************************************
008418 | /* End of automatic variable definitions for main function
008419 | /******************************************************************
Tip: For faster searching, add an asterisk to the end of your partial query. Example: cert*