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-40
The MAKE Routine for NM DataLoader/MP
DTLToUpper
This procedure changes a standard, null-terminated C string to uppercase letters.
The syntax for this procedure follows:
The MAKE Routine for NM DataLoader/MP
After you have decided on the default or custom user exits and routines you need to
use, you will need to create a version of DataLoader/MP that includes them. A TACL
routine, MAKE, simplifies this task. It links the standard DataLoader/MP code with a
linkable object file you have created (oexits), which should contain the user exits you
want to customize to create your customized executable object file. MAKE can also
SQL compile the customized object file (which is required if your custom user exits
contain embedded SQL). To use the MAKE routine with the native mode version of
DataLoader/MP, use this syntax:
option
is any of the following:
OUT file
CATALOG SQL-catalog
DLSUBVOL subvol
file
specifies a file into which all the listing output for MAKE will go. If OUT is
omitted, the listing goes to TACL's OUT file, which is usually the terminal.
SQL-catalog
specifies a SQL catalog in which the compiled SQL program will be registered.
If CATALOG is not specified, the default catalog will be used.
subvol
specifies the subvolume from which to get the relinkable DataLoader/MP object
file and the default user exits. If DLSUBVOL is not specified, MAKE expects to
find them in the same subvolume MAKE is in.
void DTLToUpper( char* String );
MAKE [ / option [, option]... / ] steps new oexits...