Commit fa4653fc authored by vvengurlekar's avatar vvengurlekar

office-sql.sql - pophelp updated for affecting event


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@205444 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 3e812831
......@@ -205,3 +205,22 @@ null,null,null,null);
------------------------------ Added by Jaffar on 29th July 2019 [END] ---------------------------------------
------------------------------ Added by Varsha V on 19-AUG-2019 [START] --------------------------------------
update pophelp set sql_str = 'select a.emp_fname||'' ''||a.emp_mname||'' ''||a.emp_lname as Name, a.emp_code as Code, a.emp_fname as
emp_fname, a.emp_lname as emp_lname from employee a
where a.relieve_date is null and UPPER(trim(a.emp_fname)||'' ''||trim(a.emp_mname)||'' ''||trim(a.emp_lname)|| '' '' ||(a.emp_code))
like UPPER(TRIM(''%?%'')) and length(trim(''?'')) >= 3
union all select ''Please enter minimum 3 characters of employee name '' as Name, '' '' as Code , '' '' as
emp_fname, '' '' as emp_lname from dual where ''?'' is null or length(trim(''?'')) < 3',
sql_input='0:emp_code,0:emp_code,0:emp_code,0:emp_code',multi_opt = null, thumb_obj='EmpImages', thumb_image_col= 'emp_code', thumb_alt_col='emp_fname' where mod_name = 'W_EMPTRANPROM' and field_name = 'EMP_CODE';
update pophelp set sql_str='select ''Enter minimum three characters of station name'' as descr, '' '' as STAN_CODE,'' '' as state_code from dual where ''?''
is null or length(trim(''?'')) < 3 union all SELECT DESCR,STAN_CODE,state_code FROM STATION WHERE (upper(DESCR) LIKE UPPER(''%?%'') or
stan_code like ''%?%'') and length(trim(''?'')) >= 3 ' , sql_input=':stan_code,:stan_code,:stan_code,:stan_code,:stan_code', multi_opt = null,
help_option = 2, auto_fill_len = 3, thumb_obj = 'StationImages', thumb_image_col= 'stan_code', thumb_alt_col='descr', auto_min_length=3
where mod_name = 'W_EMPTRANPROM' and field_name = 'STAN_CODE';
------------------------------ Added by Varsha V on 19-AUG-2019 [END] --------------------------------------
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