DBA Data[Home] [Help]

APPS.PQH_DOCUMENTS_WRAPPER dependencies on HR_GENERAL

Line 54: and effective_end_date <> hr_general.end_of_time;

50: Cursor csr_future_versions IS
51: Select 'PRESENT' from pqh_documents_f
52: where document_id =p_document_id
53: and p_effective_date between effective_start_date and effective_end_date
54: and effective_end_date <> hr_general.end_of_time;
55: --
56: --
57: Cursor csr_future_eff_child_recs IS
58: Select max(effective_start_date) from

Line 77: AND p_effective_date < decode(effective_end_date , hr_general.end_of_time,p_effective_date-1,effective_end_date)

73: Select *
74: From pqh_document_attributes_f
75: Where document_id = p_document_id
76: And p_effective_date between effective_start_date and effective_end_date
77: AND p_effective_date < decode(effective_end_date , hr_general.end_of_time,p_effective_date-1,effective_end_date)
78: );
79: --
80: -- Variables for API Boolean parameters
81: l_validate boolean;

Line 235: set t.effective_end_date = hr_general.end_of_time

231: For docAttributeCursor in CurRetrieveChildRecord
232: loop
233:
234: update pqh_document_attributes_f t
235: set t.effective_end_date = hr_general.end_of_time
236: where t.document_attribute_id = docAttributeCursor.document_attribute_id
237: and effective_end_date = p_effective_date
238: and effective_start_date = docAttributeCursor.effective_start_date;
239: