DBA Data[Home] [Help]

PACKAGE: APPS.PQH_BDGT_REALLOC_LOG_PKG

Source


1 PACKAGE pqh_bdgt_realloc_log_pkg AUTHID CURRENT_USER AS
2 /* $Header: pqbpllog.pkh 115.0 2003/02/06 15:23:29 kgowripe noship $ */
3 --
4 -- Start Log for a given entity (Folder/Transaction/Transaction Entity)
5 --
6 PROCEDURE  start_log(p_folder_id IN Number Default Null
7                     ,p_transaction_id IN Number Default Null
8                     ,p_entity_id IN Number Default Null
9                     ,p_txn_entity_type IN varchar2 -- T/R/D
10                     ,p_bdgt_entity_type IN varchar2 Default Null);
11 
12 PROCEDURE log_rule_for_entity(p_folder_id IN NUMBER
13                              ,p_transaction_id IN NUMBER
14                              ,p_txn_entity_type IN varchar2 --(D/R)
15                              ,p_bdgt_entity_type IN varchar2 Default Null
16                              ,p_entity_id IN NUMBER  Default NULL
17                              ,p_budget_period_id IN NUMBER Default NULL
18                              ,p_rule_name IN varchar2  Default NULL
19                              ,p_rule_level IN varchar2
20                              ,p_rule_msg_cd IN Varchar2 );
21 PROCEDURE end_log(p_txn_entity_type IN varchar2
22                  ,p_folder_id IN NUMBER DEFAULT NULL
23                  ,p_transaction_id IN NUMBER DEFAULT NULL
24                  ,p_entity_id IN NUMBER DEFAULT NULL);
25 
26 END pqh_bdgt_realloc_log_pkg;