Dataloader/MP Reference Manual
Table Of Contents
- What’s New in This Manual
- About This Manual
- 1 Introduction to DataLoader/MP
- 2 DataLoader/MP Components
- 3 Running DataLoader/MP
- 4 Specifying File-Related Options for DataLoader/MP
- 5 Creating a Customized Version of DataLoader/MP
- User Exits
- User Exit Descriptions
- BUILDKEY
- CHECKARG
- CONVERTIT
- DELETEIT
- DONEWITHTRANSACTION
- EXITSDESCRIPTION
- GETNEXTRECORD
- INITIALIZE1
- INITIALIZE2
- INSERTIT
- INSTRUCTIONS
- MISC1, MISC2, MISC3, and MISC4
- NEWTRANSACTION
- NEXTINDIRECTFILE
- SKIPPING
- STATISTICSTIME
- TERMINATING
- T0330U00_DEFAULTEXITS_C
- T0330U00-DEFAULTEXITS-COBOL
- T7900D41_DEFAULTEXITS_C
- T7900V00-DEFAULTEXITS-COBOL
- UPDATEIT
- Default User Exits
- DataLoader/MP Library
- The MAKE Routine for NM DataLoader/MP
- The MAKE Routine for Nonnative Mode DataLoader/MP
- 6 DataLoader/MP Examples
- 7 Recovery Strategies
- A Error and Warning Messages
- B Processing Flowcharts
- C C-Only Error Functions
- Index

Creating a Customized Version of DataLoader/MP
DataLoader/MP Reference Manual—424148-003
5-42
The MAKE Routine for Nonnative Mode
DataLoader/MP
The MAKE Routine for Nonnative Mode
DataLoader/MP
To use the MAKE routine with the Nonnative mode version of DataLoader/MP, use this
syntax:
steps
identifies the steps necessary to create the new object file. Valid codes are:
old-DATALOAD
specifies the name of object file that contains the unmodified version of
DataLoader/MP.
exitsobjfile
specifies the name of your object file containing your custom user exits.
new-DATALOAD
specifies the name of the new object file that is to be created. If a file with this
name already exists, it will be purged.
If the new object file is to run on a RISC system, you should accelerate it to increase
performance.
Example
To create your on version on nonnative mode DataLoader/MP, follow steps 1 and 2 in
the NM DataLoader/MP example, then run the MAKE routine as follows:
MAKE steps old-DATALOAD exitsobjfile new-DATALOAD
B Bind the user exits in exitsobjfile together with the contents of
old-DATALOAD, replacing the user exits in old-DATALOAD with
those from exitsobjfile and producing an object file with the name
new-DATALOAD.
BA Perform the bind operation as described for B, then accelerate
new-DATALOAD.
BS Perform the bind operation as described for B, then SQL-compile
new-DATALOAD.
BAS Perform the bind operation as described for B, accelerate
new-DATALOAD, and SQL-compile it.
>RUN $SYSTEM.DLSOURCE.MAKE BA old-DATALOAD myobject
mydataload