Commit 9970117c authored by dpawar's avatar dpawar

added sql for dept_code


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@95727 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 90bcc5f8
...@@ -157,3 +157,21 @@ site',null, ...@@ -157,3 +157,21 @@ site',null,
insert into obj_itemchange (obj_name,form_no,field_name,mandatory) insert into obj_itemchange (obj_name,form_no,field_name,mandatory)
values('worder_route_alt','1','site_code',null); values('worder_route_alt','1','site_code',null);
--30/JUL/2014
alter table worder_route_alt add dept_code char(5);
insert into messages
(msg_no,msg_str,msg_descr,msg_type,chg_date,chg_user,chg_term)
values
('VMDEP1','Invalid department code','The department code entered does not exist in the dept. master. First you have to define it in the master','E',sysdate,'BASE','BASE');
insert into messages
(msg_no,msg_str,msg_descr,msg_type,chg_date,chg_user,chg_term)
values
('VTDEPTCNN','Dept. code empty','Please enter Dept. code','E',sysdate,'BASE','BASE');
Insert into pophelp
(FIELD_NAME,MOD_NAME,SQL_STR,DW_OBJECT,MSG_TITLE,WIDTH,HEIGHT,CHG_DATE,CHG_USER,CHG_TERM)
values ('DEPT_CODE','W_WORDER_ROUTE_ALT','SELECT DEPT_CODE,DESCR FROM DEPARTMENT',null,
'Dept. Code',null,null,sysdate,'BASE','BASE');
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment