|
<< Click to Display Table of Contents >> Navigation: iVend Database Database > Tables > CfgReport Table |
Navigation: iVend Database Database > Tables >
iVend 6.6 Database Help
CfgReport Table
Collapse All Expand All
iVend Database Database : CfgReport Table |
Description
Used to store the data related to the iVend Reports
Properties
Creation Date |
4/13/2015 12:00 PM |
File Group |
PRIMARY |
Text File Group |
PRIMARY |
System Object |
|
Published for Replication |
|
Rows |
114 |
Data Space Used |
10,504.00 KB |
Index Space Used |
16.00 KB |
Columns
|
Column Name |
Description |
Datatype |
Length |
Allow Nulls |
Default |
Formula |
|
ReportKey |
Primary key for the Report |
VarWChar |
50 |
|
|
|
|
Id |
Value is the Id of the Report |
VarWChar |
50 |
|
|
|
|
Description |
Refers to the Report Description |
VarWChar |
100 |
|
|
|
|
ReportXML |
Stores the XML value for the Reports |
LongVarWChar |
16 |
|
|
|
|
ReportData |
Value in Binary Format for the Report |
LongVarBinary |
16 |
|
|
|
|
IsEnabled |
Value is True is the Report is enabled / Active else false |
Boolean |
1 |
|
|
|
|
Type |
Stores the Report Type. Valid Values are: System = 0, Custom = 1 |
Integer |
4 |
|
|
|
|
IsCustomized |
Value is True if the Report is customized else False |
Boolean |
1 |
|
|
|
|
CreatedBy |
Reference of user who has created this record. See also Security User |
VarWChar |
50 |
|
|
|
|
Created |
Date of creation of this record |
DBTimeStamp |
4 |
|
|
|
|
ModifiedBy |
Reference of user who has modified this record. See also Security User |
VarWChar |
50 |
|
|
|
|
Modified |
Date of last modification of this record |
DBTimeStamp |
4 |
|
|
|
|
IsDeleted |
Value is True if the record has been deleted from the system. Record is always Soft Deleted |
Boolean |
1 |
|
|
|
|
IsDocumentReport |
Value is True if it is document Report else False |
Boolean |
1 |
|
|
|
|
IsLabelReport |
Value is True if the report is Label report else False |
Boolean |
1 |
|
((0)) |
|
|
IsCouponReport |
Value is True if the report defined for Coupon |
Boolean |
1 |
|
((0)) |
|
|
ReportGroupType |
Value is the Group Type under which the Report exists |
Integer |
4 |
|
|
|
|
IsXtraReport |
Not in use |
Boolean |
1 |
|
((0)) |
|
|
IsiVendReport |
Value is True if the report is iVend report else False |
Boolean |
1 |
|
|
|
|
ShowInLoyaltyStandalone |
Value is true if Reports are available in Loyalty Standalone version |
Boolean |
1 |
|
((0)) |
|
|
IsNotificationReport |
Value is true is the report is for the Alert Notification |
Boolean |
1 |
|
((0)) |
|
Indexes
Index |
Description |
Primary |
Unique |
|
|
|
SQL
SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON CREATE TABLE [dbo].[CfgReport]( [ReportKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [Id] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [Description] [nvarchar](100) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [ReportXML] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [ReportData] [image] NOT NULL, [IsEnabled] [bit] NOT NULL, [Type] [int] NOT NULL, [IsCustomized] [bit] NOT NULL, [CreatedBy] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [Created] [datetime] NOT NULL, [ModifiedBy] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [Modified] [datetime] NOT NULL, [IsDeleted] [bit] NOT NULL, [IsDocumentReport] [bit] NOT NULL, [IsLabelReport] [bit] NOT NULL, [IsCouponReport] [bit] NOT NULL, [ReportGroupType] [int] NULL, [IsXtraReport] [bit] NULL, [IsiVendReport] [bit] NULL, [ShowInLoyaltyStandalone] [bit] NULL, [IsNotificationReport] [bit] NULL, CONSTRAINT [PK_CfgReport] PRIMARY KEY CLUSTERED ( [ReportKey] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] ALTER TABLE [dbo].[CfgReport] ADD CONSTRAINT [DF_CfgReport_IsLabelReoprt] DEFAULT ((0)) FOR [IsLabelReport] ALTER TABLE [dbo].[CfgReport] ADD CONSTRAINT [DF_CfgReport_IsCouponReport] DEFAULT ((0)) FOR [IsCouponReport] ALTER TABLE [dbo].[CfgReport] ADD CONSTRAINT [DF_CfgReport_IsXtraReport] DEFAULT ((0)) FOR [IsXtraReport] ALTER TABLE [dbo].[CfgReport] ADD CONSTRAINT [DF_CfgReport_ShowInLoyaltyStandalone] DEFAULT ((0)) FOR [ShowInLoyaltyStandalone] ALTER TABLE [dbo].[CfgReport] ADD CONSTRAINT [DF__CfgReport__IsNot__3A6282ED] DEFAULT ((0)) FOR [IsNotificationReport] |
See Also
© 2019 All Rights Reserved.
Send comments on this topic.