DBA Data[Home] [Help]

APPS.EGO_SECURITY_PUB dependencies on FND_API

Line 404: IF x_return_status = FND_API.G_TRUE AND l_grantee_type = 'COMPANY' THEN

400: x_success => x_return_status,
401: x_errorcode => x_errorcode
402: );
403: -- added for 5151106
404: IF x_return_status = FND_API.G_TRUE AND l_grantee_type = 'COMPANY' THEN
405: EGO_PARTY_PUB.setup_enterprise_user
406: (p_company_id => p_party_id
407: ,x_return_status => x_return_status
408: ,x_msg_count => l_msg_count

Line 411: IF x_return_status = FND_API.G_RET_STS_SUCCESS THEN

407: ,x_return_status => x_return_status
408: ,x_msg_count => l_msg_count
409: ,x_msg_data => l_msg_data
410: );
411: IF x_return_status = FND_API.G_RET_STS_SUCCESS THEN
412: x_return_status := FND_API.G_TRUE;
413: ELSE
414: x_return_status := FND_API.G_FALSE;
415: END IF;

Line 412: x_return_status := FND_API.G_TRUE;

408: ,x_msg_count => l_msg_count
409: ,x_msg_data => l_msg_data
410: );
411: IF x_return_status = FND_API.G_RET_STS_SUCCESS THEN
412: x_return_status := FND_API.G_TRUE;
413: ELSE
414: x_return_status := FND_API.G_FALSE;
415: END IF;
416: IF x_return_status = FND_API.G_FALSE THEN

Line 414: x_return_status := FND_API.G_FALSE;

410: );
411: IF x_return_status = FND_API.G_RET_STS_SUCCESS THEN
412: x_return_status := FND_API.G_TRUE;
413: ELSE
414: x_return_status := FND_API.G_FALSE;
415: END IF;
416: IF x_return_status = FND_API.G_FALSE THEN
417: -- add message to fnd_stack
418: fnd_message.Set_Name('EGO','EGO_GENERIC_MSG_TEXT');

Line 416: IF x_return_status = FND_API.G_FALSE THEN

412: x_return_status := FND_API.G_TRUE;
413: ELSE
414: x_return_status := FND_API.G_FALSE;
415: END IF;
416: IF x_return_status = FND_API.G_FALSE THEN
417: -- add message to fnd_stack
418: fnd_message.Set_Name('EGO','EGO_GENERIC_MSG_TEXT');
419: fnd_message.set_token('MESSAGE', l_msg_data);
420: fnd_msg_pub.Add;

Line 595: -- FND_API.G_TRUE privilege EXISTS

591: -- user for whom the privilege is checked
592: --
593: -- OUT :
594: -- RETURN
595: -- FND_API.G_TRUE privilege EXISTS
596: -- FND_API.G_FALSE NO privilege
597: -- FND_API.G_RET_STS_ERROR if error
598: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error
599: --

Line 596: -- FND_API.G_FALSE NO privilege

592: --
593: -- OUT :
594: -- RETURN
595: -- FND_API.G_TRUE privilege EXISTS
596: -- FND_API.G_FALSE NO privilege
597: -- FND_API.G_RET_STS_ERROR if error
598: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error
599: --
600:

Line 597: -- FND_API.G_RET_STS_ERROR if error

593: -- OUT :
594: -- RETURN
595: -- FND_API.G_TRUE privilege EXISTS
596: -- FND_API.G_FALSE NO privilege
597: -- FND_API.G_RET_STS_ERROR if error
598: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error
599: --
600:
601: -- Version: Current Version 0.1

Line 598: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error

594: -- RETURN
595: -- FND_API.G_TRUE privilege EXISTS
596: -- FND_API.G_FALSE NO privilege
597: -- FND_API.G_RET_STS_ERROR if error
598: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error
599: --
600:
601: -- Version: Current Version 0.1
602: -- Previous Version : None

Line 972: x_return_status := FND_API.G_RET_STS_SUCCESS;

968: x_object_string:=x_object_string || x_object_key_tbl(i) || p_delimiter;
969: END LOOP;
970: x_object_string := RTRIM(x_object_string,p_delimiter);
971: END IF;
972: x_return_status := FND_API.G_RET_STS_SUCCESS;
973:
974: END get_instances_with_privilege_d;
975: ----------------------------------------------------------------------------
976:

Line 1481: IF NOT FND_API.Compatible_API_Call (l_api_version,

1477:
1478:
1479:
1480: BEGIN
1481: IF NOT FND_API.Compatible_API_Call (l_api_version,
1482: p_api_version,
1483: l_api_name ,
1484: G_PKG_NAME)
1485: THEN

Line 1486: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

1482: p_api_version,
1483: l_api_name ,
1484: G_PKG_NAME)
1485: THEN
1486: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1487: END IF;
1488:
1489: -- Step 1.
1490: OPEN predicate_c (p_object_name, p_instance_set_id);

Line 1507: RETURN FND_API.G_FALSE;

1503: OPEN instance_sets_cur FOR l_dynamic_sql;
1504: FETCH instance_sets_cur INTO l_dummy;
1505: IF(instance_sets_cur%NOTFOUND) THEN
1506: CLOSE instance_sets_cur;
1507: RETURN FND_API.G_FALSE;
1508: ELSE
1509: CLOSE instance_sets_cur;
1510: RETURN FND_API.G_TRUE;
1511: END IF;

Line 1510: RETURN FND_API.G_TRUE;

1506: CLOSE instance_sets_cur;
1507: RETURN FND_API.G_FALSE;
1508: ELSE
1509: CLOSE instance_sets_cur;
1510: RETURN FND_API.G_TRUE;
1511: END IF;
1512: ELSE
1513: --no predicate for the set; universal set
1514: RETURN FND_API.G_TRUE;

Line 1514: RETURN FND_API.G_TRUE;

1510: RETURN FND_API.G_TRUE;
1511: END IF;
1512: ELSE
1513: --no predicate for the set; universal set
1514: RETURN FND_API.G_TRUE;
1515: END IF;
1516: EXCEPTION
1517: WHEN OTHERS THEN
1518: IF FND_MSG_PUB.Check_Msg_Level

Line 1526: RETURN FND_API.G_FALSE;

1522: ( G_PKG_NAME ,
1523: l_api_name
1524: );
1525: END IF;
1526: RETURN FND_API.G_FALSE;
1527:
1528: END check_instance_in_set;
1529: ---------------------------------------------------------
1530:

Line 1573: -- FND_API.G_TRUE IF this grant already exist (duplicate grant)

1569: -- End date
1570: --
1571: -- OUT :
1572: -- RETURN
1573: -- FND_API.G_TRUE IF this grant already exist (duplicate grant)
1574: -- FND_API.G_FALSE NO IF it is not Duplicate grant
1575: -- FND_API.G_RET_STS_ERROR if error
1576: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error
1577:

Line 1574: -- FND_API.G_FALSE NO IF it is not Duplicate grant

1570: --
1571: -- OUT :
1572: -- RETURN
1573: -- FND_API.G_TRUE IF this grant already exist (duplicate grant)
1574: -- FND_API.G_FALSE NO IF it is not Duplicate grant
1575: -- FND_API.G_RET_STS_ERROR if error
1576: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error
1577:
1578: -- Version: Current Version 0.1

Line 1575: -- FND_API.G_RET_STS_ERROR if error

1571: -- OUT :
1572: -- RETURN
1573: -- FND_API.G_TRUE IF this grant already exist (duplicate grant)
1574: -- FND_API.G_FALSE NO IF it is not Duplicate grant
1575: -- FND_API.G_RET_STS_ERROR if error
1576: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error
1577:
1578: -- Version: Current Version 0.1
1579: -- Previous Version : None

Line 1576: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error

1572: -- RETURN
1573: -- FND_API.G_TRUE IF this grant already exist (duplicate grant)
1574: -- FND_API.G_FALSE NO IF it is not Duplicate grant
1575: -- FND_API.G_RET_STS_ERROR if error
1576: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error
1577:
1578: -- Version: Current Version 0.1
1579: -- Previous Version : None
1580: -- Notes :

Line 1692: RETURN FND_API.G_FALSE;

1688: cp_end_date => p_end_date);
1689: FETCH check_for_duplicate INTO l_dummy;
1690: IF( check_for_duplicate%NOTFOUND) THEN
1691: CLOSE check_for_duplicate ;
1692: RETURN FND_API.G_FALSE;
1693: ELSE
1694: CLOSE check_for_duplicate ;
1695: RETURN FND_API.G_TRUE;
1696: END IF;

Line 1695: RETURN FND_API.G_TRUE;

1691: CLOSE check_for_duplicate ;
1692: RETURN FND_API.G_FALSE;
1693: ELSE
1694: CLOSE check_for_duplicate ;
1695: RETURN FND_API.G_TRUE;
1696: END IF;
1697:
1698: EXCEPTION
1699: WHEN OTHERS THEN

Line 1700: RETURN FND_API.G_RET_STS_ERROR;

1696: END IF;
1697:
1698: EXCEPTION
1699: WHEN OTHERS THEN
1700: RETURN FND_API.G_RET_STS_ERROR;
1701:
1702:
1703: END check_duplicate_grant;
1704: ---------------------------------------------------------

Line 1749: -- FND_API.G_TRUE IF this grant already exist (duplicate grant)

1745: -- End date
1746: --
1747: -- OUT :
1748: -- RETURN
1749: -- FND_API.G_TRUE IF this grant already exist (duplicate grant)
1750: -- FND_API.G_FALSE NO IF it is not Duplicate grant
1751: -- FND_API.G_RET_STS_ERROR if error
1752: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error
1753:

Line 1750: -- FND_API.G_FALSE NO IF it is not Duplicate grant

1746: --
1747: -- OUT :
1748: -- RETURN
1749: -- FND_API.G_TRUE IF this grant already exist (duplicate grant)
1750: -- FND_API.G_FALSE NO IF it is not Duplicate grant
1751: -- FND_API.G_RET_STS_ERROR if error
1752: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error
1753:
1754: -- Version: Current Version 0.1

Line 1751: -- FND_API.G_RET_STS_ERROR if error

1747: -- OUT :
1748: -- RETURN
1749: -- FND_API.G_TRUE IF this grant already exist (duplicate grant)
1750: -- FND_API.G_FALSE NO IF it is not Duplicate grant
1751: -- FND_API.G_RET_STS_ERROR if error
1752: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error
1753:
1754: -- Version: Current Version 0.1
1755: -- Previous Version : None

Line 1752: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error

1748: -- RETURN
1749: -- FND_API.G_TRUE IF this grant already exist (duplicate grant)
1750: -- FND_API.G_FALSE NO IF it is not Duplicate grant
1751: -- FND_API.G_RET_STS_ERROR if error
1752: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error
1753:
1754: -- Version: Current Version 0.1
1755: -- Previous Version : None
1756: -- Notes :

Line 1842: RETURN FND_API.G_FALSE;

1838: cp_end_date => p_end_date);
1839: FETCH check_for_duplicate INTO l_dummy;
1840: IF( check_for_duplicate%NOTFOUND) THEN
1841: CLOSE check_for_duplicate ;
1842: RETURN FND_API.G_FALSE;
1843: ELSE
1844: CLOSE check_for_duplicate ;
1845: RETURN FND_API.G_TRUE;
1846: END IF;

Line 1845: RETURN FND_API.G_TRUE;

1841: CLOSE check_for_duplicate ;
1842: RETURN FND_API.G_FALSE;
1843: ELSE
1844: CLOSE check_for_duplicate ;
1845: RETURN FND_API.G_TRUE;
1846: END IF;
1847:
1848: EXCEPTION
1849: WHEN OTHERS THEN

Line 1850: RETURN FND_API.G_RET_STS_ERROR;

1846: END IF;
1847:
1848: EXCEPTION
1849: WHEN OTHERS THEN
1850: RETURN FND_API.G_RET_STS_ERROR;
1851:
1852:
1853: END check_duplicate_item_grant;
1854: ---------------------------------------------------------