CREATE OR REPLACE FUNCTION f_get_btp_status(vCustNbr varchar)
return number as
cnt number;
v_Count NUMBER;
v_count_rev number;
begin
select /*+ FIRST_ROWS(1)*/ count(0) INTO v_Count
from btp_tbl a, indolive.prospect b, indolive.customer_tbl c
where b.prospect_nbr = a.prospect_nbr and c.customer_id = b.ref_cust_id
and c.customer_nbr=vCustNbr;
select /*+ FIRST_ROWS(1)*/ count(0) INTO v_Count_rev
from btp_reverse a, indolive.prospect b, indolive.customer_tbl c
where b.prospect_nbr = a.prospect_nbr and c.customer_id = b.ref_cust_id
and c.customer_nbr=vCustNbr and a.prospect_pnrk in ('TDK ADA DI PNRK','BELUM DITARIK');
if (v_Count = 0 or v_Count_rev= 1 ) THEN
return 0;
else
select /*+ FIRST_ROWS(1)*/ count(0) INTO cnt
from btp_tbl a, indolive.prospect b, indolive.customer_tbl c
where b.prospect_nbr = a.prospect_nbr and c.customer_id = b.ref_cust_id
and a.btp_status_code in(4,12) and c.customer_nbr=vCustNbr and (reason_btp_code like '1%' or reason_btp_code = '3002') ;
if cnt > 0 THEN
return 1;
else
return 0;
end if;
END IF;
end;
{ border:false, frame:false, width: 225, margin: '5px 0px 10px 9px', items: [{ xtype : 'textfield', fieldLabel : 'Telephone', inputType :'password', id : 'telephone', inputId: 'item_telepon', width: 225, readOnly : true, fieldStyle :'background-image:none;background-color:#BDBDBD', },{ xtype : 'textfield', fieldLabel : 'Office no', inputType :'password', width: 225, id :'office_no', inputId: 'item_office_no', readOnly : true, fieldStyle :'background-image:none;background-color:#BDBDBD', },{ xtype : 'textfield', fieldLabel : 'Mobile no', inputType :'password', width: 225, id:'mobile_no', inputId: 'item_mobile_no', readOnly : true, fieldStyle :'back...
Komentar
Posting Komentar