DBA Data[Home] [Help]

APPS.GL_FLEX_INSERT_PKG dependencies on FND_PROFILE

Line 248: /* FND_PROFILE */

244: /* */
245: /* External Packages which are being invoked include : */
246: /* */
247: /* FND_GLOBAL */
248: /* FND_PROFILE */
249: /* FND_INSTALLATION */
250: /* FND_MESSAGE */
251: /* */
252: /* GL Tables which are being used include : */

Line 964: -- FND_PROFILE.GET_SPECIFIC : Get Profile Value

960:
961:
962: -- Called Routines :
963:
964: -- FND_PROFILE.GET_SPECIFIC : Get Profile Value
965:
966: -- FND_INSTALLATION.GET : Get Product Installation Info
967:
968: -- message_token : Add Token and Value to the Message Token array

Line 978: l_industry fnd_profile_option_values.profile_option_value%type;

974:
975: dep_appl_id fnd_application.application_id%TYPE;
976: status fnd_product_installations.status%TYPE;
977: l_temp_industry fnd_product_installations.industry%TYPE;
978: l_industry fnd_profile_option_values.profile_option_value%type;
979:
980: l_defined BOOLEAN;
981:
982: cursor cnt_lgr(coaid NUMBER) IS

Line 1014: FND_PROFILE.GET_SPECIFIC('INDUSTRY',

1010:
1011: -- Get GL Installation Status
1012: -- The installation info is now implemented as a profile option (INDUSTRY).
1013:
1014: FND_PROFILE.GET_SPECIFIC('INDUSTRY',
1015: user_id,
1016: user_resp_id,
1017: dep_appl_id,
1018: l_industry,

Line 3383: -- FND_PROFILE.GET_SPECIFIC : Get Profile Value

3379:
3380:
3381: -- Called Routines :
3382:
3383: -- FND_PROFILE.GET_SPECIFIC : Get Profile Value
3384:
3385: -- glfupd : Update Segment Attributes in the Code Combinations table
3386:
3387: -- message_token : Add Token and Value to the Message Token array

Line 3401: value fnd_profile_option_values.profile_option_value%TYPE;

3397: from gl_dynamic_summ_combinations
3398: where dynamic_group_id = grp_id
3399: and code_combination_id >= min_ccid;
3400:
3401: value fnd_profile_option_values.profile_option_value%TYPE;
3402: defined BOOLEAN;
3403:
3404: -- ========================= FND LOG ===========================
3405: l_full_path VARCHAR2(100) := g_path || 'glgfdi.';

Line 3426: FND_PROFILE.GET_SPECIFIC('ATTRIBUTE_REPORTING',

3422:
3423:
3424: -- Check Reporting Attribute profile
3425:
3426: FND_PROFILE.GET_SPECIFIC('ATTRIBUTE_REPORTING',
3427: user_id,
3428: user_resp_id,
3429: 101,
3430: value,