DBA Data[Home] [Help]

APPS.ECX_DEBUG dependencies on STANDARD

Line 141: l_standard_code ecx_standards.standard_code%type;

137: g_write_file_flag := FALSE;
138: -- END IF;
139: END disable_debug;
140: PROCEDURE module_enabled IS
141: l_standard_code ecx_standards.standard_code%type;
142: begin
143: g_v_module_name:=rtrim(g_v_module_name,'.');
144: select standard_code
145: into l_standard_code

Line 144: select standard_code

140: PROCEDURE module_enabled IS
141: l_standard_code ecx_standards.standard_code%type;
142: begin
143: g_v_module_name:=rtrim(g_v_module_name,'.');
144: select standard_code
145: into l_standard_code
146: from ecx_standards
147: where standard_id = ecx_utils.g_standard_id
148: and standard_type = 'XML';

Line 145: into l_standard_code

141: l_standard_code ecx_standards.standard_code%type;
142: begin
143: g_v_module_name:=rtrim(g_v_module_name,'.');
144: select standard_code
145: into l_standard_code
146: from ecx_standards
147: where standard_id = ecx_utils.g_standard_id
148: and standard_type = 'XML';
149: if l_standard_code is not null then

Line 146: from ecx_standards

142: begin
143: g_v_module_name:=rtrim(g_v_module_name,'.');
144: select standard_code
145: into l_standard_code
146: from ecx_standards
147: where standard_id = ecx_utils.g_standard_id
148: and standard_type = 'XML';
149: if l_standard_code is not null then
150: g_v_module_name:=g_v_module_name||'.'||l_standard_code;

Line 147: where standard_id = ecx_utils.g_standard_id

143: g_v_module_name:=rtrim(g_v_module_name,'.');
144: select standard_code
145: into l_standard_code
146: from ecx_standards
147: where standard_id = ecx_utils.g_standard_id
148: and standard_type = 'XML';
149: if l_standard_code is not null then
150: g_v_module_name:=g_v_module_name||'.'||l_standard_code;
151: end if;

Line 148: and standard_type = 'XML';

144: select standard_code
145: into l_standard_code
146: from ecx_standards
147: where standard_id = ecx_utils.g_standard_id
148: and standard_type = 'XML';
149: if l_standard_code is not null then
150: g_v_module_name:=g_v_module_name||'.'||l_standard_code;
151: end if;
152: if ecx_utils.g_direction is not null then

Line 149: if l_standard_code is not null then

145: into l_standard_code
146: from ecx_standards
147: where standard_id = ecx_utils.g_standard_id
148: and standard_type = 'XML';
149: if l_standard_code is not null then
150: g_v_module_name:=g_v_module_name||'.'||l_standard_code;
151: end if;
152: if ecx_utils.g_direction is not null then
153: g_v_module_name:=g_v_module_name||'.'||ecx_utils.g_direction;

Line 150: g_v_module_name:=g_v_module_name||'.'||l_standard_code;

146: from ecx_standards
147: where standard_id = ecx_utils.g_standard_id
148: and standard_type = 'XML';
149: if l_standard_code is not null then
150: g_v_module_name:=g_v_module_name||'.'||l_standard_code;
151: end if;
152: if ecx_utils.g_direction is not null then
153: g_v_module_name:=g_v_module_name||'.'||ecx_utils.g_direction;
154: end if;

Line 167: PROCEDURE module_enabled(p_message_standard IN VARCHAR2 ,p_transaction_type IN VARCHAR2,p_transaction_subtype IN VARCHAR2,p_document_id IN VARCHAR2) IS

163: end if;
164: end;
165:
166:
167: PROCEDURE module_enabled(p_message_standard IN VARCHAR2 ,p_transaction_type IN VARCHAR2,p_transaction_subtype IN VARCHAR2,p_document_id IN VARCHAR2) IS
168: begin
169: g_v_module_name:=rtrim(g_v_module_name,'.');
170: if p_message_standard is not null then
171: g_v_module_name:=g_v_module_name||'.'||p_message_standard;

Line 170: if p_message_standard is not null then

166:
167: PROCEDURE module_enabled(p_message_standard IN VARCHAR2 ,p_transaction_type IN VARCHAR2,p_transaction_subtype IN VARCHAR2,p_document_id IN VARCHAR2) IS
168: begin
169: g_v_module_name:=rtrim(g_v_module_name,'.');
170: if p_message_standard is not null then
171: g_v_module_name:=g_v_module_name||'.'||p_message_standard;
172: end if;
173: g_v_module_name :=g_v_module_name||'.'||'out';
174: if p_transaction_type is not null then

Line 171: g_v_module_name:=g_v_module_name||'.'||p_message_standard;

167: PROCEDURE module_enabled(p_message_standard IN VARCHAR2 ,p_transaction_type IN VARCHAR2,p_transaction_subtype IN VARCHAR2,p_document_id IN VARCHAR2) IS
168: begin
169: g_v_module_name:=rtrim(g_v_module_name,'.');
170: if p_message_standard is not null then
171: g_v_module_name:=g_v_module_name||'.'||p_message_standard;
172: end if;
173: g_v_module_name :=g_v_module_name||'.'||'out';
174: if p_transaction_type is not null then
175: g_v_module_name :=g_v_module_name||'.'||p_transaction_type;