DBA Data[Home] [Help]

APPS.PAY_EVENTS_WRAPPER dependencies on HR_UTILITY

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

827: END IF;
828: RETURN g_EVENT_GROUP_ID;
829: END get_event_group_id;
830: --
831: -- Log a message, either using fnd_file, or hr_utility.trace
832: PROCEDURE msg(p_text IN VARCHAR2) IS
833: l_pos NUMBER := 1;
834: l_txt VARCHAR2(255);
835: BEGIN

Line 849: hr_utility.trace(p_text);

845: EXIT WHEN l_pos > LENGTH(p_text);
846: END LOOP;
847: ELSE
848: -- Use the normal trace stuff
849: hr_utility.trace(p_text);
850: END IF;
851: END msg;
852: --
853: PROCEDURE dbg(p_text IN VARCHAR2) IS