DBA Data[Home] [Help]

APPS.ARP_UTIL dependencies on FND_API

Line 1326: p_return_status := FND_API.G_RET_STS_SUCCESS;

1322: BEGIN
1323: IF PG_DEBUG in ('Y', 'C') THEN
1324: debug( 'arp_util.Validate_Desc_Flexfield()+');
1325: END IF;
1326: p_return_status := FND_API.G_RET_STS_SUCCESS;
1327:
1328: OPEN desc_flex_exists;
1329: FETCH desc_flex_exists INTO l_flex_exists;
1330: IF desc_flex_exists%NOTFOUND THEN

Line 1332: p_return_status := FND_API.G_RET_STS_ERROR;

1328: OPEN desc_flex_exists;
1329: FETCH desc_flex_exists INTO l_flex_exists;
1330: IF desc_flex_exists%NOTFOUND THEN
1331: CLOSE desc_flex_exists;
1332: p_return_status := FND_API.G_RET_STS_ERROR;
1333: return;
1334: END IF;
1335: CLOSE desc_flex_exists;
1336: fnd_flex_descval.set_context_value(p_desc_flex_rec.attribute_category);

Line 1361: p_return_status := FND_API.G_RET_STS_ERROR;

1357:
1358: FND_MESSAGE.SET_NAME('AR', 'AR_RAPI_DESC_FLEX_INVALID');
1359: FND_MESSAGE.SET_TOKEN('DFF_NAME',p_desc_flex_name);
1360: FND_MSG_PUB.ADD ;
1361: p_return_status := FND_API.G_RET_STS_ERROR;
1362: END IF;
1363:
1364: l_count := fnd_flex_descval.segment_count;
1365: