DBA Data[Home] [Help]

APPS.EDR_ERES_EVENT_PUB dependencies on EDR_ERES_EVENT_PVT

Line 111: l_sub_guid := EDR_ERES_EVENT_PVT.GET_SUBSCRIPTION_GUID

107: l_sub_guid RAW(16) ;
108: l_relationship VARCHAR2(200) ;
109: BEGIN
110: --get the guid of the parent event
111: l_sub_guid := EDR_ERES_EVENT_PVT.GET_SUBSCRIPTION_GUID
112: (p_event_name => p_parent_event_name);
113:
114: l_relationship :=
115: EDR_INDEXED_XML_UTIL.GET_WF_PARAMS

Line 1012: EDR_ERES_EVENT_PVT.CREATE_PAYLOAD

1008: end if;
1009:
1010: --If the child e-record IDs were set then create a payload parameter list.
1011: if l_child_erecord_ids is not null then
1012: EDR_ERES_EVENT_PVT.CREATE_PAYLOAD
1013: ( p_event => x_event,
1014: p_starting_position => 4,
1015: x_payload => l_parameter_list
1016: );

Line 1031: EDR_ERES_EVENT_PVT.RAISE_EVENT

1027: l_parameter_list(j+1).param_name := EDR_CONSTANTS_GRP.G_CHILD_ERECORD_IDS;
1028: l_parameter_list(j+1).param_value := l_child_erecord_ids;
1029:
1030: --Call raise event with the parameter list as the argument.
1031: EDR_ERES_EVENT_PVT.RAISE_EVENT
1032: ( p_api_version => 1.0,
1033: p_init_msg_list => FND_API.G_FALSE,
1034: p_validation_level => p_validation_level,
1035: x_return_status => l_return_status,

Line 1046: EDR_ERES_EVENT_PVT.RAISE_EVENT

1042: );
1043: else
1044:
1045: -- raise the event
1046: EDR_ERES_EVENT_PVT.RAISE_EVENT
1047: ( p_api_version => 1.0,
1048: p_init_msg_list => FND_API.G_FALSE,
1049: p_validation_level => p_validation_level,
1050: x_return_status => l_return_status,

Line 1080: EDR_ERES_EVENT_PVT.CREATE_PAYLOAD

1076: --Bug 3136403: Start
1077: --Copy the individual parameters to a structure
1078: --of type fnd_wf_event.param_table
1079:
1080: EDR_ERES_EVENT_PVT.CREATE_PAYLOAD
1081: ( p_event => x_event ,
1082: p_starting_position => 1 ,
1083: x_payload => l_parameter_list
1084: );

Line 1393: EDR_ERES_EVENT_PVT.CREATE_PAYLOAD

1389: --Iterate through each event in the list raised prior to the current event.
1390: WHILE j is not null and j < p_index loop
1391: if p_events(j).erecord_id is not null and p_events(j).erecord_id > 0 then
1392: --Create the payload parameter list for each event
1393: EDR_ERES_EVENT_PVT.CREATE_PAYLOAD
1394: ( p_event => p_events(j),
1395: p_starting_position => 1,
1396: x_payload => l_parameter_list
1397: );

Line 1528: EDR_ERES_EVENT_PVT.CREATE_PAYLOAD

1524: i := x_events.FIRST;
1525: while i is not null loop
1526:
1527: --Bug 3136403: Start
1528: EDR_ERES_EVENT_PVT.CREATE_PAYLOAD
1529: ( p_event => x_events(i) ,
1530: p_starting_position => 1 ,
1531: x_payload => l_parameter_list
1532: );

Line 1581: EDR_ERES_EVENT_PVT.CREATE_PAYLOAD

1577: while i is not null loop
1578:
1579: --Bug 4122622: Start
1580: --Create the event payload parameter list.
1581: EDR_ERES_EVENT_PVT.CREATE_PAYLOAD
1582: ( p_event => x_events(i),
1583: p_starting_position => 4,
1584: x_payload => l_parameter_list
1585: );

Line 1597: EDR_ERES_EVENT_PVT.RAISE_EVENT

1593: -- raise the event
1594: --since we have already done the validation set
1595: --the validation level to none
1596:
1597: EDR_ERES_EVENT_PVT.RAISE_EVENT
1598: ( p_api_version => 1.0 ,
1599: p_init_msg_list => FND_API.G_FALSE ,
1600: p_validation_level => FND_API.G_VALID_LEVEL_NONE ,
1601: x_return_status => l_return_status ,

Line 1626: EDR_ERES_EVENT_PVT.CREATE_PAYLOAD

1622:
1623: if(l_child = TRUE AND x_events(i).erecord_id is not null) then
1624:
1625: --Bug 3136403: Start
1626: EDR_ERES_EVENT_PVT.CREATE_PAYLOAD
1627: ( p_event => x_events(i) ,
1628: p_starting_position => 1 ,
1629: x_payload => l_parameter_list
1630: );