Xerox XDPE/400 (also known as EOMS I-Services) Support & Software User Guide

Page of 612
Installing and Customizing XDPE/400 (9/2001)
6-29
Customizing XDPE/400
XDPE/400 command customization
Two examples for customizing XDPE/400 commands are supplied below. 
Use the method that best meets the needs of your site.
Example 1
To customize the XDPE/400 commands so they will not be deleted during 
the installation of future maintenance or upgrades, you can create CL 
programs to customize the commands you wish to change using this 
procedure.
NOTE:
 
When calling Xerox Technical Support to report a problem, be 
sure to inform your representative that you have customized 
commands.
Step 1.
Create a local source library to contain local XDPE/400 modifications. Do 
not use the XDPE/400 application library. Use this command:
CRTLIB
LIB(XDPECMDS) 
TYPE(*TEST) 
TEXT('XDPE local modifications')
Step 2.
Create a source physical file in the library you just specified. Use this 
command:
CRTSRCPF
FILE(XDPEMODS/XDPECLSRC)
TEXT('CL source to implement local modifications to XDPE')
Step 3.
Create a member in the source physical file you just specified with type 
CLLE using this command:
STRSEU
SRCFILE(XDPEMODS/XDPECLSRC) SRCMBR(XDPECMDDFT)
TYPE(CLLE)
TEXT('Modify XDPE command defaults')
Step 4.
Edit your source physical file member to create the source code of a CL 
program to contain the Change Default Commands to make the actual 
modifications using this command:
STRSEU
SRCFILE(XDPEMODS/XDPECLSRC) SRCMBR(XDPECMDDFT) 
OPTION(2)
See the following source code example to determine the customization 
commands to include in your file member.