数据表:T_BD_FLEXITEMDETAILV(核算维度数据表)

T_BD_FLEXITEMDETAILV(核算维度数据表):描述

名称

T_BD_FLEXITEMDETAILV(核算维度数据表)

代码

T_BD_FLEXITEMDETAILV

注释

 

模型

BOS

主键

PK_BD_FLEXITEMDETAILV


T_BD_FLEXITEMDETAILV(核算维度数据表):列规格定义

名称

代码

数据类型

长度

强制

注释

主键

FID

int

 

TRUE

 

快速输入码

FOPCODE

nvarchar(10)

10

FALSE

 

预设维度数据供应商

FFLEX4

int

 

TRUE

 

预设维度数据部门

FFLEX5

int

 

TRUE

 

预设维度数据客户

FFLEX6

int

 

TRUE

 

预设维度数据员工

FFLEX7

int

 

TRUE

 

预设维度数据物料

FFLEX8

int

 

TRUE

 

预置维度数据费用项目

FFLEX9

int

 

FALSE

 

预置维度数据资产类别

FFLEX10

int

 

FALSE

 


T_BD_FLEXITEMDETAILV(核算维度数据表):脚本代码

if exists (select 1
from sysindexes
where id = object_id('T_BD_FLEXITEMDETAILV')
and name = 'IDX_BD_FLEXITEMDET_FOPCODE'
and indid > 0
and indid < 255)
drop index T_BD_FLEXITEMDETAILV.IDX_BD_FLEXITEMDET_FOPCODE
go

if exists (select 1
from sysobjects
where id = object_id('T_BD_FLEXITEMDETAILV')
and type = 'U')
drop table T_BD_FLEXITEMDETAILV
go

/*==============================================================*/
/* Table: T_BD_FLEXITEMDETAILV */
/*==============================================================*/
create table T_BD_FLEXITEMDETAILV (
FID int not null,
FOPCODE nvarchar(10) null default '',
FFLEX4 int not null default 0,
FFLEX5 int not null default 0,
FFLEX6 int not null default 0,
FFLEX7 int not null default 0,
FFLEX8 int not null default 0,
FFLEX9 int null default 0,
FFLEX10 int null default 0,
constraint PK_BD_FLEXITEMDETAILV primary key (FID)
)
go

/*==============================================================*/
/* Index: IDX_BD_FLEXITEMDET_FOPCODE */
/*==============================================================*/
create index IDX_BD_FLEXITEMDET_FOPCODE on T_BD_FLEXITEMDETAILV (
FOPCODE ASC
)
go


T_BD_FLEXITEMDETAILV(核算维度数据表):键值定义

名称

代码

主要的

PK_BD_FLEXITEMDETAILV

PK_BD_FLEXITEMDETAILV

TRUE


T_BD_FLEXITEMDETAILV(核算维度数据表):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_BD_FLEXITEMDET_FOPCODE

IDX_BD_FLEXITEMDET_FOPCODE

FALSE

FALSE

FALSE

FALSE

FALSE

T_BD_FLEXITEMDETAILV(核算维度数据表)