DBA Data[Home] [Help]

APPS.AMS_EVENTHEADER_PVT dependencies on AMS_EVHRULES_PVT

Line 204: AMS_EvhRules_PVT.Convert_Evnt_Currency(

200: -- functional currency.
201: -- ==========================================================
202:
203: IF (l_evh_rec.event_level = 'MAIN' AND l_evh_rec.fund_amount_tc IS NOT NULL )THEN
204: AMS_EvhRules_PVT.Convert_Evnt_Currency(
205: p_tc_curr => l_evh_rec.currency_code_tc,
206: p_tc_amt => l_evh_rec.fund_amount_tc,
207: x_fc_curr => l_evh_rec.currency_code_fc,
208: x_fc_amt => l_evh_rec.fund_amount_fc

Line 564: AMS_EvhRules_PVT.push_source_code(

560: -- added by murali on may/2001
561: -- create obj attributes for newly created master event
562: -- Should do it only for 'MAIN' event level
563: IF l_evh_rec.event_level = 'MAIN' THEN
564: AMS_EvhRules_PVT.push_source_code(
565: l_evh_rec.source_code,
566: 'EVEH',
567: l_evh_rec.event_header_id
568: );

Line 592: AMS_EvhRules_PVT.Add_Update_Access_record(p_object_type => 'EVEH',

588: IF (AMS_DEBUG_HIGH_ON) THEN
589:
590: AMS_Utility_PVT.debug_message('Before Add_Update_Access_record');
591: END IF;
592: AMS_EvhRules_PVT.Add_Update_Access_record(p_object_type => 'EVEH',
593: p_object_id => l_evh_rec.event_header_id,
594: p_Owner_user_id => l_evh_rec.owner_user_id,
595: x_return_status => l_return_status,
596: x_msg_count => x_msg_count,

Line 1138: AMS_EvhRules_PVT.check_evh_update(

1134: AMS_Utility_PVT.debug_message(l_full_name ||':before Rules_EVH_Update');
1135:
1136: END IF;
1137:
1138: AMS_EvhRules_PVT.check_evh_update(
1139: p_evh_rec => p_evh_rec,
1140: x_return_status => l_return_status
1141: );
1142:

Line 1277: -- Ravi fixed the AMS_EvhRules_PVT.handle_evh_status.

1273: -- commented out this call as it gives AMS_EVH_BAD_USER_STATUS
1274: -- error.
1275: -- Anyway, this is not doing anything currently.
1276: -- 01/25/2000 : gdeodhar
1277: -- Ravi fixed the AMS_EvhRules_PVT.handle_evh_status.
1278: -- Testing again.
1279: -- Well, it does not compile.
1280: -- SO COMMENTED IT AGAIN.
1281: -- 03/29/00 sugupta Corrected handle_evh_status .. uncommenting call to handle_evh_status

Line 1286: -- AMS_EvhRules_PVT.handle_evh_status(

1282: -- 07/18/2000 sugupta check for statuses done in check_evh_update..
1283: -- the api call to handle_evh_status below is redundant ..
1284:
1285:
1286: -- AMS_EvhRules_PVT.handle_evh_status(
1287: -- l_evh_rec.user_status_id,
1288: -- l_evh_rec.system_status_code,
1289: -- l_return_status
1290: -- );

Line 1328: AMS_EvhRules_PVT.update_evh_source_code(

1324: END IF;
1325:
1326: -- extracting out source code modified by soagrawa
1327: -- 21-jan-2003 bug# 2761612
1328: AMS_EvhRules_PVT.update_evh_source_code(
1329: l_evh_rec.event_header_id,
1330: l_evh_rec.source_code,
1331: l_evh_rec.global_flag,
1332: l_dummy_source_code,

Line 1369: AMS_EvhRules_PVT.update_evh_source_code(

1365: --( OR l_evh_rec.system_status_code = 'PLANNING') since the source code canbe update only in new status
1366: THEN
1367: -- extracting out source code modified by soagrawa
1368: -- 21-jan-2003 bug# 2761612
1369: AMS_EvhRules_PVT.update_evh_source_code(
1370: l_evh_rec.event_header_id,
1371: l_evh_rec.source_code,
1372: l_evh_rec.global_flag,
1373: l_dummy_source_code,

Line 1423: AMS_EvhRules_PVT.Convert_Evnt_Currency(

1419: -- functional currency.
1420: -- ==========================================================
1421: IF p_evh_rec.fund_amount_tc IS NOT NULL THEN
1422: IF p_evh_rec.fund_amount_tc <> FND_API.g_miss_num THEN
1423: AMS_EvhRules_PVT.Convert_Evnt_Currency(
1424: p_tc_curr => l_evh_rec.currency_code_tc,
1425: p_tc_amt => l_evh_rec.fund_amount_tc,
1426: x_fc_curr => l_evh_rec.currency_code_fc,
1427: x_fc_amt => l_evh_rec.fund_amount_fc

Line 1481: /* If the owner user id cahnges call AMS_EvhRules_PVT.Update_Owner */

1477: RAISE Fnd_Api.g_exc_error;
1478: END IF;
1479:
1480:
1481: /* If the owner user id cahnges call AMS_EvhRules_PVT.Update_Owner */
1482: -- Change the owner in Access table if the owner is changed.
1483:
1484: IF p_evh_rec.owner_user_id <> FND_API.g_miss_num
1485: THEN

Line 1486: AMS_EvhRules_PVT.Update_Owner(

1482: -- Change the owner in Access table if the owner is changed.
1483:
1484: IF p_evh_rec.owner_user_id <> FND_API.g_miss_num
1485: THEN
1486: AMS_EvhRules_PVT.Update_Owner(
1487: p_api_version => p_api_version,
1488: p_init_msg_list => p_init_msg_list,
1489: p_commit => p_commit,
1490: p_validation_level => p_validation_level,

Line 1750: AMS_EvhRules_PVT.update_event_status(

1746: ---murali call "update_event_status 09/26/00 S
1747: -- GDEODHAR : Added a condition. (Sept. 26th 2000)
1748:
1749: IF l_evh_rec.event_level = 'MAIN' THEN
1750: AMS_EvhRules_PVT.update_event_status(
1751: p_event_id => l_evh_rec.event_header_id,
1752: p_event_activity_type => 'EVEH',
1753: p_user_status_id => l_evh_rec.user_status_id,
1754: p_fund_amount_tc => l_evh_rec.fund_amount_tc,

Line 1761: AMS_EvhRules_PVT.Add_Update_Access_record(p_object_type => 'EVEH',

1757: IF (AMS_DEBUG_HIGH_ON) THEN
1758:
1759: AMS_Utility_PVT.debug_message('calling before Add_Update_Access_record');
1760: END IF;
1761: AMS_EvhRules_PVT.Add_Update_Access_record(p_object_type => 'EVEH',
1762: p_object_id => l_evh_rec.event_header_id,
1763: p_Owner_user_id => l_evh_rec.owner_user_id,
1764: x_return_status => l_return_status,
1765: x_msg_count => x_msg_count,

Line 3245: AMS_EvhRules_PVT.check_evh_fund_source(

3241: -- no need to check for event_level=MAIN
3242: IF p_evh_rec.fund_source_type_code <> FND_API.g_miss_char
3243: OR p_evh_rec.fund_source_id <> FND_API.g_miss_num
3244: THEN
3245: AMS_EvhRules_PVT.check_evh_fund_source(
3246: p_complete_rec.fund_source_type_code,
3247: p_complete_rec.fund_source_id,
3248: l_return_status
3249: );

Line 3274: AMS_EvhRules_PVT.check_evh_calendar(

3270: OR p_evh_rec.end_period_name <> FND_API.g_miss_char
3271: OR p_evh_rec.active_from_date <> FND_API.g_miss_date
3272: OR p_evh_rec.active_to_date <> FND_API.g_miss_date
3273: THEN
3274: AMS_EvhRules_PVT.check_evh_calendar(
3275: p_complete_rec.event_calendar,
3276: p_complete_rec.start_period_name,
3277: p_complete_rec.end_period_name,
3278: p_complete_rec.active_from_date,