DBA Data[Home] [Help]

APPS.IBE_PHYSICALMAP_GRP dependencies on IBE_DSPMGRVALIDATION_GRP

Line 91: l_deliverable_id := IBE_DSPMGRVALIDATION_GRP.check_attachment_deliverable(

87:
88: -- API body
89:
90: -- Check if the attachment id exists
91: l_deliverable_id := IBE_DSPMGRVALIDATION_GRP.check_attachment_deliverable(
92: p_attachment_id);
93: IF l_deliverable_id IS NULL THEN
94: RAISE FND_API.g_exc_error;
95: END IF;

Line 100: IF NOT IBE_DSPMGRVALIDATION_GRP.check_msite_exists(p_msite_id) THEN

96:
97: -- Check if the mini-site id exists
98: l_msite_id := p_msite_id;
99: IF p_msite_id IS NOT NULL THEN
100: IF NOT IBE_DSPMGRVALIDATION_GRP.check_msite_exists(p_msite_id) THEN
101: RAISE FND_API.g_exc_error;
102: END IF;
103:
104: -- Delete all the existing mappings

Line 113: l_msite_id := IBE_DSPMGRVALIDATION_GRP.check_master_msite_exists;

109: ELSE
110: l_msite_type := 'ALLSITES';
111: l_default_msite := g_yes;
112:
113: l_msite_id := IBE_DSPMGRVALIDATION_GRP.check_master_msite_exists;
114: IF l_msite_id IS NULL THEN
115: RAISE FND_API.g_exc_error;
116: END IF;
117:

Line 198: IF NOT IBE_DSPMGRVALIDATION_GRP.check_language_supported(

194: SAVEPOINT save_one_physicalmap_grp;
195:
196: -- Check if the language is supported at the given site
197: IF (l_msite_type = 'SITE') THEN
198: IF NOT IBE_DSPMGRVALIDATION_GRP.check_language_supported(
199: p_msite_id,
200: p_language_code_tbl(l_index)) THEN
201: RAISE FND_API.g_exc_error;
202: END IF;

Line 485: l_deliverable_id := IBE_DSPMGRVALIDATION_GRP.check_attachment_deliverable(

481:
482: END IF;
483:
484: -- Check if the attachment id exists
485: l_deliverable_id := IBE_DSPMGRVALIDATION_GRP.check_attachment_deliverable(
486: p_attachment_id);
487: IF l_deliverable_id IS NULL THEN
488: RAISE FND_API.g_exc_error;
489: END IF;

Line 672: IF NOT IBE_DSPMGRVALIDATION_GRP.check_physicalmap_exists(

668: FOR l_index IN 1..p_lgl_phys_map_id_tbl.COUNT LOOP
669: BEGIN
670:
671: -- Check if the physicalMap id exists
672: IF NOT IBE_DSPMGRVALIDATION_GRP.check_physicalmap_exists(
673: p_lgl_phys_map_id_tbl(l_index)) THEN
674: RAISE FND_API.g_exc_error;
675: END IF;
676:

Line 680: -- RAISE IBE_DSPMGRVALIDATION_GRP.physmap_not_exists_exception;

676:
677: DELETE FROM IBE_DSP_LGL_PHYS_MAP
678: WHERE lgl_phys_map_id = p_lgl_phys_map_id_tbl(l_index);
679: IF SQL%NOTFOUND THEN
680: -- RAISE IBE_DSPMGRVALIDATION_GRP.physmap_not_exists_exception;
681: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
682: FND_MESSAGE.set_name('IBE', 'IBE_DSP_PHYSMAP_NOT_EXISTS');
683: FND_MESSAGE.set_token(
684: 'ID',

Line 703: WHEN IBE_DSPMGRVALIDATION_GRP.physmap_not_exists_exception THEN

699: -- only warning; no error status
700: NULL;
701:
702: /*
703: WHEN IBE_DSPMGRVALIDATION_GRP.physmap_not_exists_exception THEN
704: -- only warning; no error
705: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
706: FND_MESSAGE.set_name('IBE', 'IBE_DSP_PHYSMAP_NOT_EXISTS');
707: FND_MESSAGE.set_token(

Line 1241: IF NOT IBE_DSPMGRVALIDATION_GRP.check_msite_exists

1237:
1238: -- Validate minisite id
1239: l_msite_id := p_msite_id;
1240: IF p_msite_id IS NOT NULL THEN
1241: IF NOT IBE_DSPMGRVALIDATION_GRP.check_msite_exists
1242: (p_msite_id) THEN
1243: RAISE FND_API.g_exc_error;
1244: END IF;
1245: ELSE

Line 1249: IBE_DSPMGRVALIDATION_GRP.check_master_msite_exists;

1245: ELSE
1246: l_msite_type := 'ALLSITES';
1247: l_default_msite := g_yes;
1248: l_msite_id :=
1249: IBE_DSPMGRVALIDATION_GRP.check_master_msite_exists;
1250: IF l_msite_id IS NULL THEN
1251: RAISE FND_API.g_exc_error;
1252: END IF;
1253: END IF;

Line 1357: IF NOT IBE_DSPMGRVALIDATION_GRP.check_language_supported

1353: ELSE
1354: IF (l_msite_type = 'SITE') THEN
1355: -- Check if the language is supported at the given site
1356: -- For OCM integration, this check is not necessary.
1357: IF NOT IBE_DSPMGRVALIDATION_GRP.check_language_supported
1358: (p_msite_id, p_language_code_tbl(l_index)) THEN
1359: RAISE FND_API.g_exc_error;
1360: END IF;
1361: END IF;