DDL Compiler Commands
Data Definition Language (DDL) Reference Manual — 426798-002
9- 82
OUTPUT_SENSITIVE Command
•
In order to get case-sensitive output for a particular definition, record, or constant,
the OUTPUT_SENSITIVE compiler command should be used before adding that
definition, record, or constant to the dictionary.
•
If a definition, record, or constant is defined using the OUTPUT_SENSITIVE (or
NOOUTPUT_SENSITIVE) compiler command, then the user must use the same
definition while requesting output for that definition, record, or constant.
OUTPUT_SENSITIVE Command Example
The following examples illustrate the use of the OUTPUT_SENSITIVE and
NOOUTPUT_SENSITIVE compiler commands:
> DDL
! ?DICT
! ?C
! ?TAL
! ?NOOUTPUT_SENSITIVE
! DEF kiSHOy.
! 02 cuTNAME PIC X(10).
! 02 cdT-ID PIC 9(6) .
! END.
!?DICT
Audited dictionary created on subvol $ADE101.BUG.
Dictionary opened on subvol $ADE101.BUG for update access.
!?C
/* SCHEMA PRODUCED DATE - TIME : 3/06/2000 - 13:19:47 */
Output source for C is opened on $ZTN0.#PTS3Z89
!?TAL
! SCHEMA PRODUCED DATE - TIME : 3/06/2000 - 13:19:55
Output source for TAL is opened on $ZTN0.#PTS3Z89
!?NOOUTPUT_SENSITIVE
!DEF kiSHOy.
!02 cuTNAME PIC X(10).
!02 cdT-ID PIC 9(6) .
!END.
Definition KISHOY size is 16 bytes.
Definition KISHOY added to dictionary.
#pragma section kishoy
/* Definition KISHOY created on 03/06/2000 at 13:20 */
#pragma fieldalign shared2 __kishoy
typedef struct __kishoy
{
char cutname[10];
char cdt_id[6];
} kishoy_def;
#define kishoy_def_Size 0
C output produced for KISHOY.
?SECTION KISHOY
?PAGE
! Definition KISHOY created on 03/06/2000 at 13:20
STRUCT KISHOY^DEF (*) FIELDALIGN (SHARED2);
BEGIN