DBA Data[Home] [Help]

APPS.ECX_CODE_CONVERSION_PVT dependencies on ECX_UTILS

Line 22: p_tbl IN OUT NOCOPY ecx_utils.dtd_node_tbl,

18: p_return_status OUT NOCOPY VARCHAR2,
19: p_msg_count OUT NOCOPY PLS_INTEGER,
20: p_msg_data OUT NOCOPY VARCHAR2,
21: p_level IN PLS_INTEGER,
22: p_tbl IN OUT NOCOPY ecx_utils.dtd_node_tbl,
23: p_tp_id IN PLS_INTEGER) IS
24:
25: i_method_name varchar2(2000) := 'ecx_code_conversion_pvt.populate_plsql_tbl_with_extval';
26:

Line 92: i := ecx_utils.g_source_levels(p_level).file_start_pos;

88: WHEN OTHERS THEN
89: l_standard_id := -1;
90: END;
91:
92: i := ecx_utils.g_source_levels(p_level).file_start_pos;
93: LOOP
94: IF (ecx_utils.g_source(i).external_level = p_level) then
95: if(l_statementEnabled) then
96: ecx_debug.log(l_statement, 'Interface Column Name', p_tbl(i).attribute_name,i_method_name);

Line 94: IF (ecx_utils.g_source(i).external_level = p_level) then

90: END;
91:
92: i := ecx_utils.g_source_levels(p_level).file_start_pos;
93: LOOP
94: IF (ecx_utils.g_source(i).external_level = p_level) then
95: if(l_statementEnabled) then
96: ecx_debug.log(l_statement, 'Interface Column Name', p_tbl(i).attribute_name,i_method_name);
97: end if;
98:

Line 212: EXIT WHEN i= ecx_utils.g_source_levels(p_level).file_end_pos;

208: ecx_debug.log(l_statement, 'Code conversion return code:', p_tbl(i).xref_retcode,i_method_name);
209: end if;
210: END IF;
211: END IF;
212: EXIT WHEN i= ecx_utils.g_source_levels(p_level).file_end_pos;
213: i := ecx_utils.g_source.next(i);
214: END LOOP;
215:
216: if (l_procedureEnabled) then

Line 213: i := ecx_utils.g_source.next(i);

209: end if;
210: END IF;
211: END IF;
212: EXIT WHEN i= ecx_utils.g_source_levels(p_level).file_end_pos;
213: i := ecx_utils.g_source.next(i);
214: END LOOP;
215:
216: if (l_procedureEnabled) then
217: ecx_debug.pop(i_method_name);

Line 257: p_apps_tbl IN OUT NOCOPY ecx_utils.dtd_node_tbl,

253: p_return_status OUT NOCOPY VARCHAR2,
254: p_msg_count OUT NOCOPY PLS_INTEGER,
255: p_msg_data OUT NOCOPY VARCHAR2,
256: p_level IN PLS_INTEGER,
257: p_apps_tbl IN OUT NOCOPY ecx_utils.dtd_node_tbl,
258: p_tp_id IN PLS_INTEGER
259: ) IS
260:
261: i_method_name varchar2(2000) := 'ecx_code_conversion_pvt.populate_plsql_tbl_with_intval';

Line 291: j := ecx_utils.g_source_levels(p_level).file_start_pos;

287:
288: -- Initialize API return status to success
289: p_return_status := g_ret_sts_success;
290:
291: j := ecx_utils.g_source_levels(p_level).file_start_pos;
292: LOOP
293: IF (ecx_utils.g_source(j).external_level = p_level) THEN
294: if(l_statementEnabled) then
295: ecx_debug.log(l_statement,'Interface Column Name', p_apps_tbl(j).attribute_name,i_method_name);

Line 293: IF (ecx_utils.g_source(j).external_level = p_level) THEN

289: p_return_status := g_ret_sts_success;
290:
291: j := ecx_utils.g_source_levels(p_level).file_start_pos;
292: LOOP
293: IF (ecx_utils.g_source(j).external_level = p_level) THEN
294: if(l_statementEnabled) then
295: ecx_debug.log(l_statement,'Interface Column Name', p_apps_tbl(j).attribute_name,i_method_name);
296: ecx_debug.log(l_statement, 'Value before code conversion:', p_apps_tbl(j).value,i_method_name);
297: end if;

Line 345: EXIT WHEN j= ecx_utils.g_source_levels(p_level).file_end_pos;

341: ecx_debug.log(l_unexpected, 'Code conversion return code:', p_apps_tbl(j).xref_retcode,i_method_name);
342: end if;
343: END IF;
344:
345: EXIT WHEN j= ecx_utils.g_source_levels(p_level).file_end_pos;
346: j := ecx_utils.g_source.next(j);
347: END LOOP;
348:
349: -- *******************************************************

Line 346: j := ecx_utils.g_source.next(j);

342: end if;
343: END IF;
344:
345: EXIT WHEN j= ecx_utils.g_source_levels(p_level).file_end_pos;
346: j := ecx_utils.g_source.next(j);
347: END LOOP;
348:
349: -- *******************************************************
350: -- Standard check of p_simulate and p_commit parameters