DBA Data[Home] [Help]

APPS.OTA_TFH_API_BUSINESS_RULES2 dependencies on OTA_TFH_API_SHD

Line 16: Procedure update_finance_lines (p_rec in ota_tfh_api_shd.g_rec_type) is

12: -- ----------------------------------------------------------------------------
13: -- |--------------------------< update_finance_lines >--------------------|
14: -- ----------------------------------------------------------------------------
15: --
16: Procedure update_finance_lines (p_rec in ota_tfh_api_shd.g_rec_type) is
17: --
18: l_proc varchar2(72) := g_package||'update_finance_lines';
19: --
20: l_transfer_status_changed boolean

Line 21: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.transfer_status

17: --
18: l_proc varchar2(72) := g_package||'update_finance_lines';
19: --
20: l_transfer_status_changed boolean
21: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.transfer_status
22: , p_rec.transfer_status );
23: --
24: begin
25: hr_utility.set_location('Entering:'||l_proc, 5);

Line 34: ,ota_tfh_api_shd.g_old_rec.transfer_status);

30: if l_transfer_status_changed then
31: ota_tfl_api_business_rules2.change_line_for_header
32: (p_rec.finance_header_id
33: ,p_rec.transfer_status
34: ,ota_tfh_api_shd.g_old_rec.transfer_status);
35: end if;
36: --
37: hr_utility.set_location(' Leaving:'||l_proc, 10);
38: end update_finance_lines;