DBA Data[Home] [Help]

APPS.JTF_DELIVERABLE_GRP dependencies on JTF_DSPMGRVALIDATION_GRP

Line 754: IF NOT JTF_DSPMGRVALIDATION_GRP.check_deliverable_accessname(

750: l_item_rec.description := p_deliverable_rec.description;
751: l_item_rec.object_version_number
752: := p_deliverable_rec.object_version_number;
753:
754: IF NOT JTF_DSPMGRVALIDATION_GRP.check_deliverable_accessname(
755: l_item_rec.item_id, l_item_rec.access_name) THEN
756: RAISE FND_API.g_exc_error;
757: END IF;
758:

Line 1199: l_attachment_id := JTF_DSPMGRVALIDATION_GRP.check_attachment_exists(

1195: -- and create the new attachment with all-site and all-lang
1196: -- mappings
1197:
1198: --modified by G. Zhang 05/23/01 10:57AM
1199: l_attachment_id := JTF_DSPMGRVALIDATION_GRP.check_attachment_exists(
1200: p_dlv_ath_rec.deliverable_id,p_dlv_ath_rec.ath_file_id,p_dlv_ath_rec.ath_file_name);
1201:
1202: IF l_attachment_id IS NOT NULL THEN
1203: -- existing attachment

Line 1206: --IF NOT JTF_DSPMGRVALIDATION_GRP.check_attachment_deliverable(

1202: IF l_attachment_id IS NOT NULL THEN
1203: -- existing attachment
1204: -- validate it!
1205: --modified by G. Zhang 05/23/01 10:57AM
1206: --IF NOT JTF_DSPMGRVALIDATION_GRP.check_attachment_deliverable(
1207: -- l_attachment_id, p_dlv_ath_rec.deliverable_id) THEN
1208: -- -- invalid attachment for the given deliverable
1209: -- RAISE FND_API.g_exc_error;
1210: --END IF;

Line 1212: IF NOT JTF_DSPMGRVALIDATION_GRP.check_default_attachment(

1208: -- -- invalid attachment for the given deliverable
1209: -- RAISE FND_API.g_exc_error;
1210: --END IF;
1211:
1212: IF NOT JTF_DSPMGRVALIDATION_GRP.check_default_attachment(
1213: l_attachment_id) THEN
1214: l_delete_mapping := FND_API.g_true;
1215: l_create_mapping := FND_API.g_true;
1216: END IF;

Line 1570: IF NOT JTF_DSPMGRVALIDATION_GRP.check_deliverable_exists(

1566:
1567: -- Standard start of API savepoint
1568: SAVEPOINT delete_one_deliverable_grp;
1569:
1570: IF NOT JTF_DSPMGRVALIDATION_GRP.check_deliverable_exists(
1571: p_dlv_id_ver_tbl(l_index).deliverable_id,
1572: p_dlv_id_ver_tbl(l_index).object_version_number) THEN
1573: RAISE FND_API.g_exc_error;
1574: END IF;