DBA Data[Home] [Help]

APPS.ORACLENAVIGATE dependencies on FND_FUNCTION

Line 122: -- Bug 3575253 - Added the below to use fnd_function_id.test_id

118:
119:
120: begin
121:
122: -- Bug 3575253 - Added the below to use fnd_function_id.test_id
123:
124: if (FND_FUNCTION.G_ALREADY_FAST_COMPILED <> 'T') then
125: FND_FUNCTION.FAST_COMPILE;
126: end if;

Line 124: if (FND_FUNCTION.G_ALREADY_FAST_COMPILED <> 'T') then

120: begin
121:
122: -- Bug 3575253 - Added the below to use fnd_function_id.test_id
123:
124: if (FND_FUNCTION.G_ALREADY_FAST_COMPILED <> 'T') then
125: FND_FUNCTION.FAST_COMPILE;
126: end if;
127:
128:

Line 125: FND_FUNCTION.FAST_COMPILE;

121:
122: -- Bug 3575253 - Added the below to use fnd_function_id.test_id
123:
124: if (FND_FUNCTION.G_ALREADY_FAST_COMPILED <> 'T') then
125: FND_FUNCTION.FAST_COMPILE;
126: end if;
127:
128:
129:

Line 187: --Bug 3575253 used fnd_function_test_id

183: g_list(l_index).web_html_call := f.web_html_call;
184: g_list(l_index).level := p_object.level;
185:
186:
187: --Bug 3575253 used fnd_function_test_id
188:
189: if (f.prompt is not null) and (fnd_function.test_id(f.function_id))
190: then
191: g_list(l_index).prompt := f.prompt;

Line 189: if (f.prompt is not null) and (fnd_function.test_id(f.function_id))

185:
186:
187: --Bug 3575253 used fnd_function_test_id
188:
189: if (f.prompt is not null) and (fnd_function.test_id(f.function_id))
190: then
191: g_list(l_index).prompt := f.prompt;
192: if (f.description is not null) and (fnd_function.test_id(f.function_id))
193: then

Line 192: if (f.description is not null) and (fnd_function.test_id(f.function_id))

188:
189: if (f.prompt is not null) and (fnd_function.test_id(f.function_id))
190: then
191: g_list(l_index).prompt := f.prompt;
192: if (f.description is not null) and (fnd_function.test_id(f.function_id))
193: then
194: g_list(l_index).description := f.description;
195:
196: else if (fnd_function.test_id(f.function_id))

Line 196: else if (fnd_function.test_id(f.function_id))

192: if (f.description is not null) and (fnd_function.test_id(f.function_id))
193: then
194: g_list(l_index).description := f.description;
195:
196: else if (fnd_function.test_id(f.function_id))
197: then
198:
199: g_list(l_index).description := f.prompt;
200:

Line 201: else if (fnd_function.test_id(f.function_id))

197: then
198:
199: g_list(l_index).description := f.prompt;
200:
201: else if (fnd_function.test_id(f.function_id))
202:
203: then
204:
205: g_list(l_index).prompt := f.description;