DBA Data[Home] [Help]

APPS.PAY_EVENTS_WRAPPER dependencies on HR_UTILITY

Line 849: -- Log a message, either using fnd_file, or hr_utility.trace

845: END IF;
846: RETURN g_EVENT_GROUP_ID;
847: END get_event_group_id;
848: --
849: -- Log a message, either using fnd_file, or hr_utility.trace
850: PROCEDURE msg(p_text IN VARCHAR2) IS
851: l_pos NUMBER := 1;
852: l_txt VARCHAR2(255);
853: BEGIN

Line 867: hr_utility.trace(p_text);

863: EXIT WHEN l_pos > LENGTH(p_text);
864: END LOOP;
865: ELSE
866: -- Use the normal trace stuff
867: hr_utility.trace(p_text);
868: END IF;
869: END msg;
870: --
871: PROCEDURE dbg(p_text IN VARCHAR2) IS