DBA Data[Home] [Help]

APPS.EDR_ERES_EVENT_PUB dependencies on EDR_EVENT_RELATIONSHIP_PUB

Line 1121: EDR_EVENT_RELATIONSHIP_PUB.CREATE_RELATIONSHIP

1117: --no need to do validation in the called proc as we
1118: --have already done validation
1119: /* SKARIMIS . Added condition to post relation only if l_parent_erecord_id in > 0 */
1120: IF nvl(l_parent_erecord_id,-1) > 0 THEN
1121: EDR_EVENT_RELATIONSHIP_PUB.CREATE_RELATIONSHIP
1122: ( p_api_version => 1.0 ,
1123: p_init_msg_list => FND_API.G_FALSE ,
1124: p_commit => FND_API.G_FALSE ,
1125: p_validation_level => FND_API.G_VALID_LEVEL_NONE ,

Line 1182: EDR_EVENT_RELATIONSHIP_PUB.CREATE_RELATIONSHIP

1178: -- no need to do validation as the above call to get the child
1179: -- event details would have done that.
1180: -- no need for validation of parent as its anyhow valid
1181:
1182: EDR_EVENT_RELATIONSHIP_PUB.CREATE_RELATIONSHIP
1183: ( p_api_version => 1.0 ,
1184: p_init_msg_list => FND_API.G_FALSE ,
1185: p_commit => FND_API.G_FALSE ,
1186: p_validation_level => FND_API.G_VALID_LEVEL_NONE ,

Line 1484: EDR_EVENT_RELATIONSHIP_PUB.INTER_EVENT_TBL_TYPE;

1480: l_api_version CONSTANT NUMBER := 1.0;
1481:
1482: l_child BOOLEAN := FALSE;
1483: l_inter_event_tbl
1484: EDR_EVENT_RELATIONSHIP_PUB.INTER_EVENT_TBL_TYPE;
1485: rel_number pls_integer := 1;
1486:
1487: l_relationship_id NUMBER;
1488:

Line 1725: EDR_EVENT_RELATIONSHIP_PUB.CREATE_RELATIONSHIP

1721: -- Call create relationship only when both parent and child eRecords are valid
1722: -- add if condition to resolve bug 3129588
1723: IF NVL(l_inter_event_tbl(i).child_erecord_id, -1) <> -1 AND
1724: NVL(l_inter_event_tbl(i).parent_erecord_id, -1) <> -1 THEN
1725: EDR_EVENT_RELATIONSHIP_PUB.CREATE_RELATIONSHIP
1726: (p_api_version => 1.0 ,
1727: p_init_msg_list => FND_API.G_FALSE ,
1728: p_commit => FND_API.G_FALSE ,
1729: p_validation_level => FND_API.G_VALID_LEVEL_FULL ,