DBA Data[Home] [Help]

APPS.ARP_UTIL dependencies on FND_API

Line 1385: p_return_status := FND_API.G_RET_STS_SUCCESS;

1381: BEGIN
1382: IF PG_DEBUG in ('Y', 'C') THEN
1383: debug( 'arp_util.Validate_Desc_Flexfield()+');
1384: END IF;
1385: p_return_status := FND_API.G_RET_STS_SUCCESS;
1386:
1387: OPEN desc_flex_exists;
1388: FETCH desc_flex_exists INTO l_flex_exists;
1389: IF desc_flex_exists%NOTFOUND THEN

Line 1391: p_return_status := FND_API.G_RET_STS_ERROR;

1387: OPEN desc_flex_exists;
1388: FETCH desc_flex_exists INTO l_flex_exists;
1389: IF desc_flex_exists%NOTFOUND THEN
1390: CLOSE desc_flex_exists;
1391: p_return_status := FND_API.G_RET_STS_ERROR;
1392: return;
1393: END IF;
1394: CLOSE desc_flex_exists;
1395: fnd_flex_descval.set_context_value(p_desc_flex_rec.attribute_category);

Line 1420: p_return_status := FND_API.G_RET_STS_ERROR;

1416:
1417: FND_MESSAGE.SET_NAME('AR', 'AR_RAPI_DESC_FLEX_INVALID');
1418: FND_MESSAGE.SET_TOKEN('DFF_NAME',p_desc_flex_name);
1419: FND_MSG_PUB.ADD ;
1420: p_return_status := FND_API.G_RET_STS_ERROR;
1421: END IF;
1422:
1423: l_count := fnd_flex_descval.segment_count;
1424: