DBA Data[Home] [Help]

APPS.ECX_INBOUND_NEW dependencies on STANDARD

Line 90: p_standard_id IN pls_integer

86:
87: i_method_name varchar2(2000) := 'ecx_inbound_new.setDocLogsAttributes';
88: cursor get_attributes
89: (
90: p_standard_id IN pls_integer
91: )
92: is
93: select attribute_name,
94: element_tag_name

Line 95: from ecx_standard_attributes esa,

91: )
92: is
93: select attribute_name,
94: element_tag_name
95: from ecx_standard_attributes esa,
96: ecx_standards es
97: where es.standard_id = p_standard_id
98: and esa.standard_id = es.standard_id;
99:

Line 96: ecx_standards es

92: is
93: select attribute_name,
94: element_tag_name
95: from ecx_standard_attributes esa,
96: ecx_standards es
97: where es.standard_id = p_standard_id
98: and esa.standard_id = es.standard_id;
99:
100: i_string varchar2(2000) := ' update ecx_doclogs set ';

Line 97: where es.standard_id = p_standard_id

93: select attribute_name,
94: element_tag_name
95: from ecx_standard_attributes esa,
96: ecx_standards es
97: where es.standard_id = p_standard_id
98: and esa.standard_id = es.standard_id;
99:
100: i_string varchar2(2000) := ' update ecx_doclogs set ';
101: i_found boolean;

Line 98: and esa.standard_id = es.standard_id;

94: element_tag_name
95: from ecx_standard_attributes esa,
96: ecx_standards es
97: where es.standard_id = p_standard_id
98: and esa.standard_id = es.standard_id;
99:
100: i_string varchar2(2000) := ' update ecx_doclogs set ';
101: i_found boolean;
102: i_update boolean;

Line 113: if ecx_utils.g_standard_id is null

109: end if;
110: i_found := false;
111: i_update := false;
112:
113: if ecx_utils.g_standard_id is null
114: then
115: if (l_procedureEnabled) then
116: ecx_debug.pop(i_method_name);
117: end if;

Line 122: for c1 in get_Attributes(p_standard_id => ecx_utils.g_standard_id)

118: return true;
119: end if;
120:
121: /** Get all the Attributes and capture the value **/
122: for c1 in get_Attributes(p_standard_id => ecx_utils.g_standard_id)
123: loop
124: if (c1.attribute_name is not null and c1.element_tag_name is not null) then
125: get_element_value (p_nodeList, p_count, c1.element_tag_name, i_found, i_value);
126:

Line 601: p_standard_id => ecx_utils.g_standard_id

597: p_value => p_value,
598: p_category_id => l_cat_id,
599: p_snd_tp_id => ecx_utils.g_snd_tp_id,
600: p_rec_tp_id => ecx_utils.g_rec_tp_id ,
601: p_standard_id => ecx_utils.g_standard_id
602: );
603:
604: If l_return_status = 'X' OR l_return_status = 'R' Then
605: ecx_utils.g_source(p_int_col_pos).xref_retcode := 1;