Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
create or replace procedure getlastdgt
(cmpny_cd varchar2,ctgry_cd varchar2,STR out VARCHAR2) as
begin
str:='Select LST_DGT from EPAYPARAMETER where CMPNY_CD = ''' ||
cmpny_cd ||''' and ctgry_cd = ''' ||ctgry_cd || '''';
end;
/
Procedure created.
var whatever varchar2(200)
var company varchar2(10)
var category varchar2(10)
exec :company := 'ABC'
exec :category := 'XYZ'
exec getlastdgt(:company,:category,:whatever)
select :whatever from dual;
Select LST_DGT from EPAYPARAMETER where CMPNY_CD = 'ABC' and ctgry_cd = 'XYZ'