DBA Data[Home] [Help]

PACKAGE: APPS.OTA_TFH_API_BUSINESS_RULES2

Source


1 Package ota_tfh_api_business_rules2 AUTHID CURRENT_USER as
2 /* $Header: ottfh03t.pkh 115.0 99/07/16 00:55:20 porting ship $ */
3 /*
4 -- ----------------------------------------------------------------------------
5 -- |-------------------------< check_tfl_memo_flag >--------------------------|
6 -- ----------------------------------------------------------------------------
7 --
8 -- NO MORE PUBLIC
9 -- Description:
10 -- If Header's memo flag is set to 'Y', all finance lines must have their
11 -- memo flag set to 'Y'
12 --
13 Procedure check_tfl_memo_flag (
14 	 p_finance_header_id in number
15 	,p_memo_flag         in varchar2
16   );
17 --
18 */
19 -- ----------------------------------------------------------------------------
20 -- |----------------------------< update_finance_lines>------------------|
21 -- ----------------------------------------------------------------------------
22 --
23 -- Description:
24 -- Called after post_update.
25 -- This procedure call various procedures updating finance lines
26 -- according to the changes made on the header.
27 --
28 procedure update_finance_lines (p_rec	in  ota_tfh_api_shd.g_rec_type );
29 --
30 -- ----------------------------------------------------------------------------
31 -- |----------------------------< invoice_full_amount >------------------|
32 -- ----------------------------------------------------------------------------
33 --
34 Function invoice_full_amount (
35 		p_finance_header_id in varchar2
36 		,p_currency_code in varchar2)
37 return varchar2;
38 pragma restrict_references (invoice_full_amount, WNPS,WNDS);
39 --
40 end ota_tfh_api_business_rules2;