DBA Data[Home] [Help]

APPS.FND_FLEX_DSC_API dependencies on FND_FLEX_DSC_API

Line 1: PACKAGE BODY fnd_flex_dsc_api AS

1: PACKAGE BODY fnd_flex_dsc_api AS
2: /* $Header: AFFFDAIB.pls 120.8.12010000.1 2008/07/25 14:13:39 appldev ship $ */
3:
4:
5:

Line 2238: raise_application_error(-20204, 'FND_FLEX_DSC_API.UPDATE_CONTEXT raised exception: No language exist with language_code ='|| p_language, TRUE);

2234: select 1 into l_lang_exists from fnd_languages where
2235: language_code = p_language and installed_flag in ('B','I') and rownum < 2;
2236: exception
2237: when no_data_found then
2238: raise_application_error(-20204, 'FND_FLEX_DSC_API.UPDATE_CONTEXT raised exception: No language exist with language_code ='|| p_language, TRUE);
2239: end;
2240: /* Check if context exists */
2241: l_boolean_flag1 := context_exists(p_appl_short_name,
2242: p_flexfield_name,

Line 2553: 'FND_FLEX_DSC_API.IS_TABLE_USED is failed. ' || chr_newline ||

2549: RETURN(FALSE);
2550: EXCEPTION
2551: WHEN OTHERS THEN
2552: x_message :=
2553: 'FND_FLEX_DSC_API.IS_TABLE_USED is failed. ' || chr_newline ||
2554: 'SQLERRM : ' || Sqlerrm;
2555: RETURN(TRUE);
2556: END is_table_used;
2557:

Line 2631: 'FND_FLEX_DSC_API.IS_COLUMN_USED is failed. ' || chr_newline ||

2627: RETURN(FALSE);
2628: EXCEPTION
2629: WHEN OTHERS THEN
2630: x_message :=
2631: 'FND_FLEX_DSC_API.IS_COLUMN_USED is failed. ' || chr_newline ||
2632: 'SQLERRM : ' || Sqlerrm;
2633: RETURN(TRUE);
2634: END is_column_used;
2635:

Line 2870: RAISE_APPLICATION_ERROR(error_others, 'FND_FLEX_DSC_API.RENAME_DFF raised exception: ' || sqlerrm || ' errcode : ' || sqlcode, TRUE);

2866: WHERE application_id = l_new_application.application_id
2867: AND descriptive_flexfield_name = l_new_dff.descriptive_flexfield_name;
2868: EXCEPTION
2869: WHEN OTHERS THEN
2870: RAISE_APPLICATION_ERROR(error_others, 'FND_FLEX_DSC_API.RENAME_DFF raised exception: ' || sqlerrm || ' errcode : ' || sqlcode, TRUE);
2871: END rename_dff;
2872:
2873: -- This API makes the necessary updates to change the base table of a given DFF.
2874: -- The only requirement is that the new table must have the same column names,

Line 3042: RAISE_APPLICATION_ERROR(error_others, 'FND_FLEX_DSC_API.MIGRATE_DFF raised exception: ' || sqlerrm || ' errcode : ' || sqlcode, TRUE);

3038: END LOOP;
3039:
3040: EXCEPTION
3041: WHEN OTHERS THEN
3042: RAISE_APPLICATION_ERROR(error_others, 'FND_FLEX_DSC_API.MIGRATE_DFF raised exception: ' || sqlerrm || ' errcode : ' || sqlcode, TRUE);
3043: END migrate_dff;
3044:
3045: END fnd_flex_dsc_api;
3046: /* end package */

Line 3045: END fnd_flex_dsc_api;

3041: WHEN OTHERS THEN
3042: RAISE_APPLICATION_ERROR(error_others, 'FND_FLEX_DSC_API.MIGRATE_DFF raised exception: ' || sqlerrm || ' errcode : ' || sqlcode, TRUE);
3043: END migrate_dff;
3044:
3045: END fnd_flex_dsc_api;
3046: /* end package */