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.10 2011/12/12 15:31:39 hgeorgi ship $ */
3:
4:
5:

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

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

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

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

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

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

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

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

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

3039: END LOOP;
3040:
3041: EXCEPTION
3042: WHEN OTHERS THEN
3043: RAISE_APPLICATION_ERROR(error_others, 'FND_FLEX_DSC_API.MIGRATE_DFF raised exception: ' || sqlerrm || ' errcode : ' || sqlcode, TRUE);
3044: END migrate_dff;
3045:
3046: --
3047: -- Modify_segment_null_default only sets the default_type and default_value

Line 3169: END fnd_flex_dsc_api;

3165: message('modify_segment_null_default exception. SQLERRM : ' || Sqlerrm);
3166: RAISE;
3167: END modify_segment_null_default;
3168:
3169: END fnd_flex_dsc_api;
3170: /* end package */