mpe_excel_config.ddl
Go to the documentation of this file.
1 /**
2  @file
3  @brief DDL for MPE_EXCEL_CONFIG (pk: tx_from,xl_libref,xl_table,xl_column)
4 
5  @version 9.3
6  @author 4GL Apps Ltd
7  @copyright 4GL Apps Ltd
8 **/
9 
10 create table &curlib..mpe_excel_config(
11  tx_from num,
12  xl_libref char(8),
13  xl_table char(32),
14  xl_column char(32),
15  xl_rule char(32),
16  xl_active num,
17  tx_to num not null,
18  constraint pk_mpe_excel_config
19  primary key(tx_from,xl_libref,xl_table,xl_column));