Files
mip/Data/BulkLoad/EFT/Nominations/plsql/efnow120_1$js$conf.bdy

35 lines
976 B
Plaintext

create or replace package body eft_nom.efnow120_1$js$conf is
--------------------------------------------------------------------------------
-- Name: efnow120_1$js$conf.CreateListJavaScript
--
-- Description:
--
-- Parameters:
--
--------------------------------------------------------------------------------
procedure CreateListJavaScript (
RL_BODY_ATTRIBUTES in varchar2)
is
begin
if not caco_security.security_check('efnow120_1$conf') then
return;
end if;
htp.p(WSGJSL.OpenScript);
htp.p('var FormType = "List";');
htp.p( 'var P_0 = new Array();' );
htp.p(WSGJSL.CloseScript);
exception
when others then
WSGL.DisplayMessage(WSGL.MESS_EXCEPTION, SQLERRM, 'View Commercial Confirmations'||' : '||'View Conf',
RL_BODY_ATTRIBUTES, 'efnow120_1$js$conf.CreateListJavaScript');
end;
end;
/