22 lines
561 B
Plaintext
22 lines
561 B
Plaintext
create or replace package efnow230$ is
|
|
|
|
procedure Startup
|
|
;
|
|
procedure FirstPage(Z_DIRECT_CALL in boolean
|
|
|
|
);
|
|
procedure ShowAbout;
|
|
procedure TemplateHeader(Z_DIRECT_CALL in boolean,
|
|
Z_TEMPLATE_ID in number);
|
|
function GetRef return WSGOC.MODULE_REF;
|
|
function get_int_code (p_int_id IN interruptions.int_id%TYPE) RETURN VARCHAR2;
|
|
|
|
function get_int_start (p_int_id IN interruptions.int_id%TYPE) RETURN VARCHAR2;
|
|
|
|
function get_int_end (p_int_id IN interruptions.int_id%TYPE) RETURN VARCHAR2;
|
|
|
|
|
|
end;
|
|
/
|
|
|