Commit b6e2794f authored by caluka's avatar caluka

sql updated for entry_start_dt,entry_end_dt columns added for period_tbl [D15KSUN014]


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@100375 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 4f918784
ALTER TABLE PERIOD_TBL ADD ENTRY_START_DT DATE;
ALTER TABLE PERIOD_TBL ADD ENTRY_END_DT DATE;
INSERT into MESSAGES (msg_no , msg_str , msg_descr , msg_type , msg_opt , chg_date , chg_user , chg_term )
VALUES ('VTSTDTNULL', 'Invalid entry start date.','Entry start date Should not be blank ', 'E', 'Y', SYSDATE, 'BASE', 'BASE');
INSERT into MESSAGES (msg_no , msg_str , msg_descr , msg_type , msg_opt , chg_date , chg_user , chg_term )
VALUES ('INVSTDT1', 'Invalid entry start date.','Entry start date should be in proper format', 'E', 'Y', SYSDATE, 'BASE', 'BASE');
INSERT into MESSAGES (msg_no , msg_str , msg_descr , msg_type , msg_opt , chg_date , chg_user , chg_term )
VALUES ('VTENDTNULL', 'Invalid entry end date.','Entry end date Should not be blank ', 'E', 'Y', SYSDATE, 'BASE', 'BASE');
INSERT into MESSAGES (msg_no , msg_str , msg_descr , msg_type , msg_opt , chg_date , chg_user , chg_term )
VALUES ('INVENDDT1', 'Invalid entry end date.','Entry end date should be in proper format', 'E', 'Y', SYSDATE, 'BASE', 'BASE');
INSERT into MESSAGES (msg_no , msg_str , msg_descr , msg_type , msg_opt , chg_date , chg_user , chg_term )
VALUES ('INVENDDT2', 'Invalid entry end date.','Entry end date Should be greater than Entry start date ', 'E', 'Y', SYSDATE, 'BASE', 'BASE');
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