DBA Data[Home] [Help]

APPS.CS_CF_UPG_PKG dependencies on AK_REGIONS

Line 6: SELECT count(*) from ak_regions

2: /* $Header: cscfupgb.pls 120.1 2005/06/14 10:00:54 appldev $ */
3:
4: CURSOR does_region_already_exists (p_region_code VARCHAR2, p_region_application_id NUMBER)
5: IS
6: SELECT count(*) from ak_regions
7: where region_application_id = p_region_application_id
8: and region_code = p_region_code;
9:
10: PROCEDURE Upgrade_Main IS

Line 504: * of ak regions, based on the list of

500:
501:
502: /*
503: * Perform the actually cloning
504: * of ak regions, based on the list of
505: * profiles that are customized at the resp level
506: */
507: PROCEDURE Clone_Regions_For_Resp(p_ProfileTable IN CS_CF_UPG_UTL_PKG.ProfileTable,
508: p_respId IN FND_PROFILE_OPTION_VALUES.level_value%TYPE,

Line 3117: * of ak regions, based on the list of

3113:
3114:
3115: /*
3116: * Perform the actually cloning
3117: * of ak regions, based on the list of
3118: * profiles that are customized at the appl level
3119: */
3120: PROCEDURE Clone_Regions_For_Appl(p_ProfileTable IN CS_CF_UPG_UTL_PKG.ProfileTable,
3121: p_ApplId IN NUMBER)