DBA Data[Home] [Help]

APPS.IBC_CITEM_RUNTIME_PVT dependencies on IBC_VALIDATE_PVT

Line 273: IF (Ibc_Validate_Pvt.isValidLabel(p_label_code) = FND_API.g_false) THEN

269: FETCH Get_Citem_Ver_By_Label INTO l_citem_version_id;
270: -- Label doesn't exist for this content item id
271: IF (Get_Citem_Ver_By_Label%NOTFOUND) THEN
272: -- Validate Label
273: IF (Ibc_Validate_Pvt.isValidLabel(p_label_code) = FND_API.g_false) THEN
274: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) THEN
275: FND_MESSAGE.Set_Name('IBC', 'INVALID_LABEL_CODE');
276: FND_MESSAGE.Set_token('LABEL_CODE', p_label_code);
277: FND_MSG_PUB.ADD;

Line 468: IF (Ibc_Validate_Pvt.isValidLabel(p_label_code) = FND_API.g_false) THEN

464: FETCH Get_Citem_Ver_By_Label INTO l_citem_version_id;
465: -- Label doesn't exist for this content item id
466: IF (Get_Citem_Ver_By_Label%NOTFOUND) THEN
467: -- Validate Label
468: IF (Ibc_Validate_Pvt.isValidLabel(p_label_code) = FND_API.g_false) THEN
469: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) THEN
470: FND_MESSAGE.Set_Name('IBC', 'INVALID_LABEL_CODE');
471: FND_MESSAGE.Set_token('LABEL_CODE', p_label_code);
472: FND_MSG_PUB.ADD;

Line 904: IF (Ibc_Validate_Pvt.isValidLabel(p_label_code) = FND_API.g_false) THEN

900: FETCH Get_Citem_Ver_By_Label INTO l_citem_version_id;
901: -- Label doesn't exist for this content item id
902: IF (Get_Citem_Ver_By_Label%NOTFOUND) THEN
903: -- Validate Label
904: IF (Ibc_Validate_Pvt.isValidLabel(p_label_code) = FND_API.g_false) THEN
905: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) THEN
906: FND_MESSAGE.Set_Name('IBC', 'INVALID_LABEL_CODE');
907: FND_MESSAGE.Set_token('LABEL_CODE', p_label_code);
908: FND_MSG_PUB.ADD;

Line 990: IF (Ibc_Validate_Pvt.isValidAssocType(p_association_type_code) = FND_API.g_false) THEN

986: END LOOP;
987:
988: -- If no matches, check if p_association_type_code is valid
989: IF (l_citem_count = 1) THEN
990: IF (Ibc_Validate_Pvt.isValidAssocType(p_association_type_code) = FND_API.g_false) THEN
991: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) THEN
992: FND_MESSAGE.Set_Name('IBC', 'INVALID_ASSOC_TYPE_CODE');
993: FND_MESSAGE.Set_token('ASSOC_TYPE_CODE', p_association_type_code);
994: FND_MSG_PUB.ADD;