Distributed Systems Network Management (DSNM) Subsystem Interface Development Guide
DSNM Library Services
Distributed Systems Network Management (DSNM) Subsystem Interface Development 
Guide—109759 A-23
_CI^DEF
Example
< in global definitions >
INT .EXT scp (_CI^DEF);
INT .EXT snaxcdf (_SUBSYS^DEF);
STRING .scpclass[0:ZDSN^MAX^CICLASS-1] := [“SCP ”];
STRING .cdf[0:ZDSN^MAX^SUBSYS-1] := [“SNAXCDF ”];
< within _STARTUP procedure >
 .
 .
 IF _ISNULL (@scp := _ADD^CI (scpclass)) THEN 
 RETURN ZDSN^ERR^INTERNAL^ERR;
 IF _ISNULL (@snaxcdf := _ADD^SUBSYS (cdf)) THEN
 RETURN ZDSN^ERR^INTERNAL^ERR;
 .
 .
< within _COMMAND^PROC procedure >
 .
 .
 CALL _OPEN^CI (scp, ... );
 .
 .










