You want to activate the message destination MSGTAC for the message K006.
To do this, first create an input file (in the example input2
) with the following KDCMMOD control statements:
|
Then carry out the steps described below.
Unix and Linux systems
Call up the KDCMMOD tool:
utmpath
/ex/kdcmmod < input2
This generates the C source program
mymsgse.c
.Compile the program
mymsgse.c
with the C compiler:
cc -c <flags> –I
utmpath/include mymsgse.c
This generates the
mymsgse.o
object.Link
utmwork
by linking the object modulemymsgse.o
in addition to the default message module. For linking, see openUTM manual “Using UTM Applications on Unix, Linux and Windows Systems”.The changed message catalog is ready for use.
Windows systems
Call up the KDCMMOD tool:
utmpath
\ex\kdcmmod.exe < input2
This generates the C source program
mymsgse.c
.Compile the program
mymsgse.c
with the C compiler.
cl -c /I
utmpath\include mymsgse.c
This generates the object
mymsgse.obj
.Link
utmwork.exe
by linking the object modulemymsgse.obj
in addition to the standard message module. For details of linking, see openUTM manual “Using UTM Applications on Unix, Linux and Windows Systems”.The changed message catalog is ready for use.