/* ================================================================================ 档案代号:aps_ima 档案名称:APS 物料维护档 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table aps_ima ( pid varchar2(40) NOT NULL, /*料号 */ lot_rule number(4), /*批量开立规则 */ is_used number(4), /*是否为耗尽料 */ is_int number(4), /*是否为整数型式 */ max_lot number(16,4), /*最大采购量 */ is_ctl number(4), /*是否为关键物料 */ is_cons number(4), /*是否并批开单 */ mo_tol number(4), /*消耗后续制令之指定时间(天) */ po_tol number(4), /*消耗后续采购令之指定时间(天 */ is_feat number(4), /*是否为Feature件 */ con_type number(4), /*耗用方式 */ rel_refo number(4), /*多预测量是否作为需求的参数( */ lst_cmb number(4), /*是否合并尾批(0:否 1:是) */ lst_cblm number(16,4), /*是否并于前批单据之判断比率 */ is_cnsn number(4), /*是否为客供料(0:不是 1:是) */ sfx_lt number(16,4), /*关键料软性前置时间 */ sply_rid varchar2(32), /*供给法则编号 */ cons_bs number(4), /*并单周期 */ al_ratio number(16,4), /*以bom为主设定的替代比率 */ orip_id varchar2(32), /*生产地 */ pro_line_id varchar2(32), /*生产线代号 */ pro_line_nm varchar2(32), /*生产线名称 */ is_b_point number(4), /*是否为断阶点 */ is_phan_del number(4) /*是否虚拟删除 */ ); create unique index aps_ima_pk on aps_ima (pid); alter table aps_ima add constraint aps_ima_pk primary key (pid) enable validate; grant select on aps_ima to public; grant index on aps_ima to public; grant update on aps_ima to public; grant delete on aps_ima to public; grant insert on aps_ima to public; |