Commit eef90d21 authored by mjadhav's avatar mjadhav

added validation messages for quantity


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@98661 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 33b547f3
...@@ -453,7 +453,7 @@ VALUES ('VTINVEDI', 'Transaction can not be edited','Transaction can not be edit ...@@ -453,7 +453,7 @@ VALUES ('VTINVEDI', 'Transaction can not be edited','Transaction can not be edit
/*------------------changes on date 02-OCT-2015 -------------------------------------*/ /*------------------changes done on date 02-OCT-2015 -------------------------------------*/
alter table CUST_STOCK_DET add PURC_RCP__REPL NUMBER(14,3); alter table CUST_STOCK_DET add PURC_RCP__REPL NUMBER(14,3);
alter table CUST_STOCK_DET add PURC_RCP__FREE NUMBER(14,3); alter table CUST_STOCK_DET add PURC_RCP__FREE NUMBER(14,3);
...@@ -481,6 +481,32 @@ Insert into POPHELP (FIELD_NAME,MOD_NAME,SQL_STR,DW_OBJECT,MSG_TITLE,WIDTH,HEIGH ...@@ -481,6 +481,32 @@ Insert into POPHELP (FIELD_NAME,MOD_NAME,SQL_STR,DW_OBJECT,MSG_TITLE,WIDTH,HEIGH
/*------------------changes done on date 07-OCT-2015 -------------------------------------*/
INSERT INTO MESSAGES (msg_no , msg_str , msg_descr , msg_type , msg_opt , chg_date , chg_user , chg_term )
VALUES ('VTOPSTVLD', 'Invalid Opening Stock','Invalid Opening Stock', '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 ('VTRCPTVLD', 'Invalid Receipt Quantity','Invalid Receipt Quantity', '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 ('VTSALTVLD', 'Invalid Secondary Sales','Invalid Secondary Sales', '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 ('VTRETVLD', 'Invalid Return Quantity','Invalid Receipt Quantity', '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 ('VTPRISVLD', 'Invalid Primary Sales','Invalid Primary Sales', '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