Current packages

This commit is contained in:
Jan Kvetina 2022-07-04 05:03:16 +02:00
parent 0787c15d8a
commit d38b5763c1
6 changed files with 14 additions and 7 deletions

View File

@ -47,4 +47,6 @@ CREATE OR REPLACE PACKAGE a770 AS
PROCEDURE exit_session;
END;
/

View File

@ -160,3 +160,4 @@ CREATE OR REPLACE PACKAGE BODY a770 AS
END;
/

View File

@ -1640,3 +1640,4 @@ CREATE OR REPLACE PACKAGE app AS
END;
/

View File

@ -1155,7 +1155,7 @@ CREATE OR REPLACE PACKAGE BODY app AS
p_request IN VARCHAR2 DEFAULT NULL,
p_debug IN VARCHAR2 DEFAULT NULL,
p_printer_friendly IN VARCHAR2 DEFAULT NULL,
p_trace IN VARCHAR2 DEFAULT NULL,
p_trace IN VARCHAR2 DEFAULT NULL,
p_triggering_element IN VARCHAR2 DEFAULT 'this',
p_plain_url IN BOOLEAN DEFAULT FALSE
*/
@ -3885,7 +3885,7 @@ CREATE OR REPLACE PACKAGE BODY app AS
in_operation => rec.operation
)
);
-- remove from DML ERR table
IF dml_log_id IS NOT NULL THEN
EXECUTE IMMEDIATE
@ -4366,3 +4366,4 @@ BEGIN
app.init_map();
END;
/

View File

@ -523,3 +523,4 @@ CREATE OR REPLACE PACKAGE app_actions AS
END;
/

View File

@ -411,7 +411,7 @@ CREATE OR REPLACE PACKAGE BODY app_actions AS
app.log_debug('SET_ITEM', c.item_name, c.item_value);
END IF;
END LOOP;
-- show page comment in footer
BEGIN
SELECT p.page_comment INTO v_footer
@ -650,7 +650,7 @@ CREATE OR REPLACE PACKAGE BODY app_actions AS
in_limit NUMBER := NULL
)
AS
v_translated translated_items.value_en%TYPE;
v_translated translated_items.value_en%TYPE;
BEGIN
app.log_module(in_app_id, in_page_id, in_lang_id);
--
@ -701,7 +701,7 @@ CREATE OR REPLACE PACKAGE BODY app_actions AS
in_limit NUMBER := NULL
)
AS
v_translated translated_items.value_en%TYPE;
v_translated translated_items.value_en%TYPE;
BEGIN
app.log_module(in_app_id, in_lang_id);
--
@ -1303,7 +1303,7 @@ CREATE OR REPLACE PACKAGE BODY app_actions AS
rec.setting_group := in_c002;
rec.updated_by := app.get_user_id();
rec.updated_at := SYSDATE;
-- cleanup setting
DELETE FROM settings s
WHERE s.app_id = rec.app_id
@ -1619,7 +1619,7 @@ CREATE OR REPLACE PACKAGE BODY app_actions AS
'ALTER TABLE ' || in_table_name ||
' MODIFY ' || in_column_name_old || ' NOT NULL';
END IF;
-- update column comments
IF NVL(c.comments, '^!^') != NVL(in_comments, '^!^') THEN
app.log_result('UPDATING COMMENTS');
@ -1935,3 +1935,4 @@ CREATE OR REPLACE PACKAGE BODY app_actions AS
END;
/