DBA Data[Home] [Help]

APPS.IRC_COMMUNICATIONS_API dependencies on IRC_COMMUNICATIONS_API

Line 1: Package Body IRC_COMMUNICATIONS_API as

1: Package Body IRC_COMMUNICATIONS_API as
2: /* $Header: ircomapi.pkb 120.13 2011/10/20 14:23:00 ggkrishn ship $ */
3: --
4: -- Package Variables
5: --

Line 6: g_package varchar2(33) := 'IRC_COMMUNICATIONS_API.';

2: /* $Header: ircomapi.pkb 120.13 2011/10/20 14:23:00 ggkrishn ship $ */
3: --
4: -- Package Variables
5: --
6: g_package varchar2(33) := 'IRC_COMMUNICATIONS_API.';
7: --
8: -- ----------------------------------------------------------------------------
9: -- |-------------------------< DEFINE_COMM_PROPERTIES >-----------------------|
10: -- ----------------------------------------------------------------------------

Line 2301: irc_communications_api.create_communication

2297: close csrGetCommForAsg;
2298: --
2299: hr_utility.set_location(' Create Communication: ' || l_proc,20);
2300: --
2301: irc_communications_api.create_communication
2302: (p_effective_date => l_eff_date
2303: ,p_communication_property_id => l_comm_rec.communication_property_id
2304: ,p_object_type => l_comm_rec.object_type
2305: ,p_object_id => l_target_asgn_id

Line 2317: irc_communications_api.create_comm_topic

2313: LOOP
2314: --
2315: hr_utility.set_location(' Create topic : ' || l_proc,30);
2316: --
2317: irc_communications_api.create_comm_topic
2318: (p_effective_date => l_eff_date
2319: ,p_communication_id => l_comm_id
2320: ,p_subject => commTopicRec.subject
2321: ,p_status => commTopicRec.status

Line 2331: irc_communications_api.create_message

2327: Loop
2328: --
2329: hr_utility.set_location(' Create message : ' || l_proc,40);
2330: --
2331: irc_communications_api.create_message
2332: (p_effective_date => l_eff_date
2333: ,p_communication_topic_id => l_comm_topic_id
2334: ,p_parent_id => commMessageRec.parent_id
2335: ,p_message_subject => commMessageRec.message_subject

Line 2360: irc_communications_api.add_recipient

2356: end if;
2357: --
2358: hr_utility.set_location(' Create recipient : ' || l_proc,30);
2359: --
2360: irc_communications_api.add_recipient
2361: (p_effective_date => l_eff_date
2362: ,p_communication_object_type => commRecpRec.communication_object_type
2363: ,p_communication_object_id => l_comm_topic_id
2364: ,p_recipient_type => commRecpRec.recipient_type

Line 2381: end IRC_COMMUNICATIONS_API;

2377: exception
2378: when others then
2379: hr_utility.set_location(' Error : '||sqlErrm || l_proc,30);
2380: end copy_comm_to_apl_asg;
2381: end IRC_COMMUNICATIONS_API;