Server Guide

Example

Retrieves APPC conversation-related data from CON1 and prints the data to the Transcript.

| result |
 
result := CICS appcextractprocess
               convid: 'CON1';
               exec.
 
CICSTTY cr;
               show: 'Procname is: ', (result procname printString),
                     ' ProcLength is: ', (result proclength printString),
                     ' SyncLevel is: ', (result synclevel printString).


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]