DBA Data[Home] [Help]

APPS.PN_GL_TRANSFER dependencies on PNP_DEBUG_PKG

Line 37: pnp_debug_pkg.log('at the start :');

33: currency_code
34: FROM gl_sets_of_books
35: WHERE set_of_books_id =l_sob_id;
36: BEGIN
37: pnp_debug_pkg.log('at the start :');
38:
39: l_je_category(1) := p_journal_category;
40:
41: pnp_debug_pkg.log('Get Profile Information');

Line 41: pnp_debug_pkg.log('Get Profile Information');

37: pnp_debug_pkg.log('at the start :');
38:
39: l_je_category(1) := p_journal_category;
40:
41: pnp_debug_pkg.log('Get Profile Information');
42: l_request_id := FND_GLOBAL.conc_request_id;
43: l_appl_id := FND_GLOBAL.resp_appl_id;
44: l_user_id := FND_GLOBAL.user_id;
45: l_org_id := pn_mo_cache_utils.get_current_org_id;

Line 57: pnp_debug_pkg.log('Populating l_sob_list table');

53: l_sob_info(i).sob_name := rec.name;
54: END LOOP; /* c1 loop */
55:
56:
57: pnp_debug_pkg.log('Populating l_sob_list table');
58:
59: FOR i IN l_sob_info.first..l_sob_info.last LOOP
60: l_sob_list.EXTEND;
61: l_sob_list(i).sob_id := l_sob_info(i).sob_id;

Line 66: pnp_debug_pkg.log('Getting Organization Name');

62: l_sob_list(i).sob_name := l_sob_info(i).sob_name;
63: l_sob_list(i).sob_curr_code := l_sob_info(i).currency_code;
64: END LOOP;
65:
66: pnp_debug_pkg.log('Getting Organization Name');
67: IF l_org_id IS NOT NULL THEN
68: SELECT name
69: INTO l_org_code
70: FROM hr_operating_units

Line 80: pnp_debug_pkg.log('Calling Common Transfer API');

76: ELSE
77: l_desc := l_org_code || ' ' || p_batch_name;
78: END IF;
79:
80: pnp_debug_pkg.log('Calling Common Transfer API');
81:
82: xla_gl_transfer_pkg.xla_gl_transfer
83: (
84: p_application_id => l_appl_id,

Line 108: pnp_debug_pkg.log('Calling Common Transfer API at end');

104: p_je_line_desc => NULL,
105: p_debug_flag => p_debug_flag
106: );
107:
108: pnp_debug_pkg.log('Calling Common Transfer API at end');
109:
110: END gl_transfer;
111:
112: ------------------------------