DBA Data[Home] [Help]

APPS.FND_FLEX_APIS dependencies on FND_FLEX_APIS

Line 1: PACKAGE BODY FND_FLEX_APIS AS

1: PACKAGE BODY FND_FLEX_APIS AS
2: /* $Header: AFFFAPIB.pls 120.3 2010/05/25 17:13:54 tebarnes ship $ */
3:
4: -- ------------------------------------------------------------------------
5: -- Gets the segment number corresponding to the **UNIQUE** qualifier

Line 284: if(fnd_flex_apis.is_descr_setup(x_application_id,

280: enabled_flag OUT nocopy VARCHAR2,
281: required_flag OUT nocopy VARCHAR2)
282: IS
283: BEGIN
284: if(fnd_flex_apis.is_descr_setup(x_application_id,
285: x_desc_flex_name)) then
286: enabled_flag := 'Y';
287: else
288: enabled_flag := 'N';

Line 290: if(fnd_flex_apis.is_descr_required(x_application_id,

286: enabled_flag := 'Y';
287: else
288: enabled_flag := 'N';
289: end if;
290: if(fnd_flex_apis.is_descr_required(x_application_id,
291: x_desc_flex_name)) then
292: required_flag := 'Y';
293: else
294: required_flag := 'N';

Line 307: if(fnd_flex_apis.is_descr_setup(x_application_id,

303: enabled_flag OUT nocopy VARCHAR2,
304: required_flag OUT nocopy VARCHAR2)
305: IS
306: BEGIN
307: if(fnd_flex_apis.is_descr_setup(x_application_id,
308: x_desc_flex_name)) then
309: enabled_flag := 'Y';
310: else
311: enabled_flag := 'N';

Line 313: if(fnd_flex_apis.gbl_is_descr_required(x_application_id,

309: enabled_flag := 'Y';
310: else
311: enabled_flag := 'N';
312: end if;
313: if(fnd_flex_apis.gbl_is_descr_required(x_application_id,
314: x_desc_flex_name)) then
315: required_flag := 'Y';
316: else
317: required_flag := 'N';

Line 400: END FND_FLEX_APIS;

396: x_context_req_segs_info);
397:
398: END get_dff_context_req_segs_info;
399:
400: END FND_FLEX_APIS;