Commit 7ef52661 authored by asikarwar's avatar asikarwar

Add returnable,fmode,tax_class and reason code column


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@91831 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 0833bdd5
...@@ -288,4 +288,37 @@ sysdate, ...@@ -288,4 +288,37 @@ sysdate,
'1' '1'
); );
-----added by akhilesh S on 27/AUG/12
alter table sordertype add returnable char(1);
alter table sordertype add reas_code char(5);
insert into POPHELP
(
field_name,
mod_name,
sql_str,
msg_title,
sql_input,
chg_date,
chg_user,
chg_term,
dist_opt
)
values
(
'REAS_CODE',
'W_SORDER_TYPE',
'select fld_value,descr from gencodes',
'REAS CODE',
NULL,
sysdate,
'BASE',
'BASE',
'1'
);
-- these two field not found in taro added by akhilesh on 27/AUG/12
alter table sordertype add fmode CHAR(1);
alter table sordertype add tax_class CHAR(5);
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