Name TRANSFER_MAPPING_TABLE
Comment Transfer mapping table table

Column
Name Is PK Is FK UDP Datatype Null Option Comment
MAPPING_TABLE_ID Yes No NUMBER(20) NULL Mapping Table ID
ORACLE_TABLE_NAME No No VARCHAR2(50) NULL Oracle table name
TRANSFER_TABLE_NAME No No VARCHAR2(50) NULL Export or import table name
CREATED_BY No No VARCHAR2(20) NULL Created by User ID
CREATED_DATE No No DATE NULL Created Date
MODIFIED_BY No No VARCHAR2(20) NULL Modified by User ID
MODIFIED_DATE No No DATE NULL Modified date
UDP(s) of "MAPPING_TABLE_ID" Column
Range Check Null Check Valid Table/Values
None None None
UDP(s) of "ORACLE_TABLE_NAME" Column
Range Check Null Check Valid Table/Values
None None None
UDP(s) of "TRANSFER_TABLE_NAME" Column
Range Check Null Check Valid Table/Values
None None None
UDP(s) of "CREATED_BY" Column
Range Check Null Check Valid Table/Values
None None None
UDP(s) of "CREATED_DATE" Column
Range Check Null Check Valid Table/Values
None None None
UDP(s) of "MODIFIED_BY" Column
Range Check Null Check Valid Table/Values
None None None
UDP(s) of "MODIFIED_DATE" Column
Range Check Null Check Valid Table/Values
None None None
Index
Name Member
TMTPrimaryKey
Member(s) of "TMTPrimaryKey" Index
Column
Name
MAPPING_TABLE_ID
Child Relationship
Child Table
Name
TRANSFER_MAPPING_FIELD
Parent Relationship
Script
Name Code
BU
create or replace trigger  %TableOwner.%Substr(%TableName,1,21)_BU
before update on %TableOwner.%TableName for each row
begin

      :new.modified_by := user;
      :new.modified_date :=sysdate;
end ;

/
BI_SEQ
create or replace trigger  %TableOwner.%Substr(%TableName,1,17)_BI_SEQ
before insert on %TableOwner.%TableName for each row
declare new_id number;
begin

      select  %TableOwner.SEQ_%TableName.nextval into new_id from dual;
      :new.%PK() := new_id;
      :new.created_by := user;
      :new.created_date := sysdate;
      :new.modified_by := user;
      :new.modified_date :=sysdate;


end ;

/