| PRIMARY KEY |
|
AD_PrintForm_ID
NUMBER (10, 0) NOT NULL |
| |
|
|
AD_Client_ID
NUMBER (10, 0) |
| AD_Client |
|
AD_Org_ID
NUMBER (10, 0) NOT NULL |
| |
|
IsActive
CHAR (1) default: 'Y' CHECK ( IsActive in ( 'Y' , 'N' )) NOT NULL |
| |
|
Created
DATE default: SYSDATE NOT NULL |
| |
|
CreatedBy
NUMBER (10, 0) NOT NULL |
| |
|
Updated
DATE default: SYSDATE NOT NULL |
| |
|
UpdatedBy
NUMBER (10, 0) NOT NULL |
| |
|
Name
NVARCHAR2 (60) NOT NULL |
| |
|
Description
NVARCHAR2 (255) |
| |
|
Order_PrintFormat_ID
NUMBER (10, 0) |
| AD_PrintFormat |
|
Order_MailText_ID
NUMBER (10, 0) |
| R_MailText |
|
Invoice_PrintFormat_ID
NUMBER (10, 0) |
| AD_PrintFormat |
|
Invoice_MailText_ID
NUMBER (10, 0) |
| R_MailText |
|
Shipment_PrintFormat_ID
NUMBER (10, 0) |
| AD_PrintFormat |
|
Shipment_MailText_ID
NUMBER (10, 0) |
| R_MailText |
|
Remittance_PrintFormat_ID
NUMBER (10, 0) |
| AD_PrintFormat |
|
Remittance_MailText_ID
NUMBER (10, 0) |
| R_MailText |
|
Project_PrintFormat_ID
NUMBER (10, 0) |
| AD_PrintFormat |
|
Project_MailText_ID
NUMBER (10, 0) |
| R_MailText |
FOREIGN KEY ADClient_ADPrintForm: AD_Client_ID => AD_Client
ADPrintFormat_FormInvoice: Invoice_PrintFormat_ID => AD_PrintFormat
ADPrintFormat_FormOrder: Order_PrintFormat_ID => AD_PrintFormat
ADPrintFormat_FormProject: Project_PrintFormat_ID => AD_PrintFormat
ADPrintFormat_FormRemittance: Remittance_PrintFormat_ID => AD_PrintFormat
ADPrintFormat_FormShipment: Shipment_PrintFormat_ID => AD_PrintFormat
RMailText_InvoiceADPrintForm: Invoice_MailText_ID => R_MailText
RMailText_OrderADPrintForm: Order_MailText_ID => R_MailText
RMailText_ProjectADPrintForm: Project_MailText_ID => R_MailText
RMailText_RemitADPrintForm: Remittance_MailText_ID => R_MailText
RMailText_ShipADPrintForm: Shipment_MailText_ID => R_MailText
|