Commit 8020496f authored by dpawar's avatar dpawar

added item change sqls


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96060 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 8d7b540d
......@@ -63,7 +63,7 @@ CREATE TABLE MISC_VCH_EMPDET
SUNDRY_TYPE CHAR(1),
SUNDRY_CODE CHAR(10) NOT NULL,
EMP_CODE CHAR(10),
ACCT_CODE CHAR(10) NOT NULL,
ACCT_CODE CHAR(10,
CCTR_CODE CHAR(4),
ACCT_CODE__ADV CHAR(10) NOT NULL,
CCTR_CODE__ADV CHAR(4),
......@@ -413,10 +413,13 @@ insert into messages
values
('VMPAYACNF','payable A/c Not Found!','The payable A/c you have entered is not found in the accounts master.','E',sysdate,'BASE','BASE');
insert into messages
(msg_no,msg_str,msg_descr,msg_type,chg_date,chg_user,chg_term)
values
('VMACTADNF','Acct Code Adv. Not Found!','The Acct Code Adv. you have entered is not found in the accounts master.','E',sysdate,'BASE','BASE');
('VMACTADNF','Acct Code Adv. Not Found!','The Acct Code Adv/Exp. you have entered is not found in the accounts master.','E',sysdate,'BASE','BASE');
Insert into messages
......@@ -589,7 +592,7 @@ values( 'ACCT_CODE','W_MISC_VCH_EMP','SELECT ACCT_CODE, DESCR FROM ACCOUNTS','Ac
insert into pophelp(FIELD_NAME,MOD_NAME,SQL_STR,MSG_TITLE,WIDTH,HEIGHT,CHG_DATE,CHG_USER,CHG_TERM)
values( 'CCTR_CODE','W_MISC_VCH_EMP','SELECT CCTR_CODE,DESCR FROM COSTCTR','Cost Center Code',0,0,sysdate,'BASE','BASE');
--added on 2-AUG-2014
--added on 22-AUG-2014
insert into obj_itemchange (obj_name,form_no,field_name,mandatory)
values('misc_vch_emp','1','curr_code','Y');
......@@ -612,6 +615,20 @@ alter table misc_vch_emp add net_amt__bc number(14,3);
alter table misc_vch_emp add total_amount__bc number(14,3);
alter table misc_vch_empdet add tax_amt number(14,3);
--added on 25-AUG-2014
insert into messages
(msg_no,msg_str,msg_descr,msg_type,chg_date,chg_user,chg_term)
values
('VMADVENN','Mandatory field','Please enter Acct Code Adv/Exp','E',sysdate,'BASE','BASE');
insert into messages
(msg_no,msg_str,msg_descr,msg_type,chg_date,chg_user,chg_term)
values
('VMDUEDNN','Mandatory field','Due Date cannot be blank.Please enter Due Date','E',sysdate,'BASE','BASE');
insert into obj_itemchange (obj_name,form_no,field_name,mandatory)
values('misc_vch_emp','1','acct_code__adv','Y');
insert into obj_itemchange (obj_name,form_no,field_name,mandatory)
values('misc_vch_emp','1','cctr_code__adv','Y');
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