DBA Data[Home] [Help]

APPS.FA_DEPRN_ROLLBACK_PUB dependencies on FA_API_TYPES

Line 9: g_log_level_rec fa_api_types.log_level_rec_type; -- Bug:5475024

5: G_PKG_NAME CONSTANT varchar2(30) := 'FA_DEPRN_ROLLBACK_PUB';
6: G_API_NAME CONSTANT varchar2(30) := 'Depreciation Rollback API';
7: G_API_VERSION CONSTANT number := 1.0;
8:
9: g_log_level_rec fa_api_types.log_level_rec_type; -- Bug:5475024
10:
11: --*********************** Private functions ******************************--
12:
13: FUNCTION do_all_books

Line 14: (px_asset_hdr_rec IN OUT NOCOPY FA_API_TYPES.asset_hdr_rec_type,

10:
11: --*********************** Private functions ******************************--
12:
13: FUNCTION do_all_books
14: (px_asset_hdr_rec IN OUT NOCOPY FA_API_TYPES.asset_hdr_rec_type,
15: p_log_level_rec IN FA_API_TYPES.log_level_rec_type default null) RETURN BOOLEAN; -- Bug:5475024
16:
17: --*********************** Public procedures ******************************--
18: procedure do_rollback (

Line 15: p_log_level_rec IN FA_API_TYPES.log_level_rec_type default null) RETURN BOOLEAN; -- Bug:5475024

11: --*********************** Private functions ******************************--
12:
13: FUNCTION do_all_books
14: (px_asset_hdr_rec IN OUT NOCOPY FA_API_TYPES.asset_hdr_rec_type,
15: p_log_level_rec IN FA_API_TYPES.log_level_rec_type default null) RETURN BOOLEAN; -- Bug:5475024
16:
17: --*********************** Public procedures ******************************--
18: procedure do_rollback (
19: -- Standard Parameters --

Line 29: px_asset_hdr_rec IN OUT NOCOPY fa_api_types.asset_hdr_rec_type

25: x_msg_count OUT NOCOPY NUMBER,
26: x_msg_data OUT NOCOPY VARCHAR2,
27: p_calling_fn IN VARCHAR2,
28: -- Asset Object --
29: px_asset_hdr_rec IN OUT NOCOPY fa_api_types.asset_hdr_rec_type
30: ) as
31:
32: l_asset_type_rec fa_api_types.asset_type_rec_type;
33: l_asset_hdr_rec fa_api_types.asset_hdr_rec_type;

Line 32: l_asset_type_rec fa_api_types.asset_type_rec_type;

28: -- Asset Object --
29: px_asset_hdr_rec IN OUT NOCOPY fa_api_types.asset_hdr_rec_type
30: ) as
31:
32: l_asset_type_rec fa_api_types.asset_type_rec_type;
33: l_asset_hdr_rec fa_api_types.asset_hdr_rec_type;
34: l_group_asset_id number;
35: l_tracking_method varchar2(30);
36:

Line 33: l_asset_hdr_rec fa_api_types.asset_hdr_rec_type;

29: px_asset_hdr_rec IN OUT NOCOPY fa_api_types.asset_hdr_rec_type
30: ) as
31:
32: l_asset_type_rec fa_api_types.asset_type_rec_type;
33: l_asset_hdr_rec fa_api_types.asset_hdr_rec_type;
34: l_group_asset_id number;
35: l_tracking_method varchar2(30);
36:
37: -- used to store original sob info upon entry into api

Line 258: (px_asset_hdr_rec IN OUT NOCOPY FA_API_TYPES.asset_hdr_rec_type,

254: -- book calling the private api for each.
255:
256:
257: FUNCTION do_all_books
258: (px_asset_hdr_rec IN OUT NOCOPY FA_API_TYPES.asset_hdr_rec_type,
259: p_log_level_rec IN FA_API_TYPES.log_level_rec_type default null) RETURN BOOLEAN IS -- Bug:5475024
260:
261: l_mrc_asset_hdr_rec FA_API_TYPES.asset_hdr_rec_type;
262: l_period_rec fa_api_types.period_rec_type;

Line 259: p_log_level_rec IN FA_API_TYPES.log_level_rec_type default null) RETURN BOOLEAN IS -- Bug:5475024

255:
256:
257: FUNCTION do_all_books
258: (px_asset_hdr_rec IN OUT NOCOPY FA_API_TYPES.asset_hdr_rec_type,
259: p_log_level_rec IN FA_API_TYPES.log_level_rec_type default null) RETURN BOOLEAN IS -- Bug:5475024
260:
261: l_mrc_asset_hdr_rec FA_API_TYPES.asset_hdr_rec_type;
262: l_period_rec fa_api_types.period_rec_type;
263: l_rsob_tbl fa_cache_pkg.fazcrsob_sob_tbl_type;

Line 261: l_mrc_asset_hdr_rec FA_API_TYPES.asset_hdr_rec_type;

257: FUNCTION do_all_books
258: (px_asset_hdr_rec IN OUT NOCOPY FA_API_TYPES.asset_hdr_rec_type,
259: p_log_level_rec IN FA_API_TYPES.log_level_rec_type default null) RETURN BOOLEAN IS -- Bug:5475024
260:
261: l_mrc_asset_hdr_rec FA_API_TYPES.asset_hdr_rec_type;
262: l_period_rec fa_api_types.period_rec_type;
263: l_rsob_tbl fa_cache_pkg.fazcrsob_sob_tbl_type;
264: l_mrc_sob_type_code varchar2(1);
265:

Line 262: l_period_rec fa_api_types.period_rec_type;

258: (px_asset_hdr_rec IN OUT NOCOPY FA_API_TYPES.asset_hdr_rec_type,
259: p_log_level_rec IN FA_API_TYPES.log_level_rec_type default null) RETURN BOOLEAN IS -- Bug:5475024
260:
261: l_mrc_asset_hdr_rec FA_API_TYPES.asset_hdr_rec_type;
262: l_period_rec fa_api_types.period_rec_type;
263: l_rsob_tbl fa_cache_pkg.fazcrsob_sob_tbl_type;
264: l_mrc_sob_type_code varchar2(1);
265:
266: l_deprn_source_info XLA_EVENTS_PUB_PKG.t_event_source_info;