DBA Data[Home] [Help]

APPS.CSI_COUNTER_TEMPLATE_PVT dependencies on CSI_COUNTER_TEMPLATE_PVT

Line 1: PACKAGE BODY CSI_COUNTER_TEMPLATE_PVT AS

1: PACKAGE BODY CSI_COUNTER_TEMPLATE_PVT AS
2: /* $Header: csivcttb.pls 120.56.12020000.2 2012/07/05 06:06:44 sjawaji ship $ */
3:
4: -- --------------------------------------------------------
5: -- Define global variables

Line 8: G_PKG_NAME CONSTANT VARCHAR2(30):= 'CSI_COUNTER_TEMPLATE_PVT';

4: -- --------------------------------------------------------
5: -- Define global variables
6: -- --------------------------------------------------------
7:
8: G_PKG_NAME CONSTANT VARCHAR2(30):= 'CSI_COUNTER_TEMPLATE_PVT';
9: G_FILE_NAME CONSTANT VARCHAR2(12) := 'csivcttb.pls';
10:
11: PROCEDURE validate_counter_group
12: (

Line 5812: csi_ctr_gen_utility_pvt.put_line('Error from CSI_COUNTER_TEMPLATE_PVT.CREATE_DERIVED_FILTERS');

5808: WHILE l_msg_count > 0 LOOP
5809: x_msg_data := FND_MSG_PUB.GET
5810: (l_msg_index,
5811: FND_API.G_FALSE);
5812: csi_ctr_gen_utility_pvt.put_line('Error from CSI_COUNTER_TEMPLATE_PVT.CREATE_DERIVED_FILTERS');
5813: csi_ctr_gen_utility_pvt.put_line('MESSAGE DATA = '||x_msg_data);
5814: l_msg_index := l_msg_index + 1;
5815: l_msg_count := l_msg_count - 1;
5816: END LOOP;

Line 7556: CSI_COUNTER_TEMPLATE_PVT.CREATE_DERIVED_FILTERS

7552: l_ctr_derived_filters_tbl.creation_date := sysdate;
7553: l_ctr_derived_filters_tbl.created_by := FND_GLOBAL.user_id;
7554: l_ctr_derived_filters_tbl.last_update_login := FND_GLOBAL.user_id;
7555: */
7556: CSI_COUNTER_TEMPLATE_PVT.CREATE_DERIVED_FILTERS
7557: (
7558: p_api_version => p_api_version
7559: ,p_commit => p_commit
7560: ,p_init_msg_list => p_init_msg_list

Line 7576: csi_ctr_gen_utility_pvt.put_line( ' Error from CSI_COUNTER_TEMPLATE_PVT.CREATE_DERIVED_FILTERS');

7572: WHILE l_msg_count > 0 LOOP
7573: x_msg_data := FND_MSG_PUB.GET
7574: (l_msg_index,
7575: FND_API.G_FALSE );
7576: csi_ctr_gen_utility_pvt.put_line( ' Error from CSI_COUNTER_TEMPLATE_PVT.CREATE_DERIVED_FILTERS');
7577: csi_ctr_gen_utility_pvt.put_line('MESSAGE DATA = '||x_msg_data);
7578: l_msg_index := l_msg_index + 1;
7579: l_msg_count := l_msg_count - 1;
7580: END LOOP;

Line 7706: csi_counter_template_pvt.create_counter_relationship

7702: l_counter_relationships_rec.factor := ctr_formula_bvars_cur_rec.factor;
7703: l_counter_relationships_rec.active_start_date := ctr_formula_bvars_cur_rec.active_start_date;
7704: l_counter_relationships_rec.active_end_date := ctr_formula_bvars_cur_rec.active_end_date;
7705:
7706: csi_counter_template_pvt.create_counter_relationship
7707: (
7708: p_api_version => p_api_version
7709: ,p_commit => fnd_api.g_false
7710: ,p_init_msg_list => p_init_msg_list

Line 8170: csi_ctr_gen_utility_pvt.put_line('Error from CSI_COUNTER_TEMPLATE_PVT.CREATE_COUNTER_GROUP');

8166: WHILE l_msg_count > 0 LOOP
8167: x_msg_data := FND_MSG_PUB.GET
8168: (l_msg_index,
8169: FND_API.G_FALSE );
8170: csi_ctr_gen_utility_pvt.put_line('Error from CSI_COUNTER_TEMPLATE_PVT.CREATE_COUNTER_GROUP');
8171: csi_ctr_gen_utility_pvt.put_line('MESSAGE DATA = '||x_msg_data);
8172: l_msg_index := l_msg_index + 1;
8173: l_msg_count := l_msg_count - 1;
8174: END LOOP;

Line 8446: CSI_COUNTER_TEMPLATE_PVT.CREATE_DERIVED_FILTERS

8442: csi_ctr_prop_template_vl ctrprop
8443: WHERE ctrprop.counter_property_id = ctr_der_filter_cur_rec.counter_property_id
8444: AND ctrprop.counter_id = l_new_ctr_id;
8445:
8446: CSI_COUNTER_TEMPLATE_PVT.CREATE_DERIVED_FILTERS
8447: (
8448: p_api_version => p_api_version
8449: ,p_commit => p_commit
8450: ,p_init_msg_list => p_init_msg_list

Line 8466: csi_ctr_gen_utility_pvt.put_line( ' Error from CSI_COUNTER_TEMPLATE_PVT.CREATE_DERIVED_FILTERS');

8462: WHILE l_msg_count > 0 LOOP
8463: x_msg_data := FND_MSG_PUB.GET
8464: (l_msg_index,
8465: FND_API.G_FALSE );
8466: csi_ctr_gen_utility_pvt.put_line( ' Error from CSI_COUNTER_TEMPLATE_PVT.CREATE_DERIVED_FILTERS');
8467: csi_ctr_gen_utility_pvt.put_line('MESSAGE DATA = '||x_msg_data);
8468: l_msg_index := l_msg_index + 1;
8469: l_msg_count := l_msg_count - 1;
8470: END LOOP;

Line 8609: csi_counter_template_pvt.create_counter_relationship

8605: l_counter_relationships_rec.factor := ctr_formula_bvars_cur_rec.factor;
8606: l_counter_relationships_rec.active_start_date := ctr_formula_bvars_cur_rec.active_start_date;
8607: l_counter_relationships_rec.active_end_date := ctr_formula_bvars_cur_rec.active_end_date;
8608:
8609: csi_counter_template_pvt.create_counter_relationship
8610: (
8611: p_api_version => p_api_version
8612: ,p_commit => fnd_api.g_false
8613: ,p_init_msg_list => p_init_msg_list

Line 8874: END CSI_COUNTER_TEMPLATE_PVT;

8870: p_data => x_msg_data
8871: );
8872: END delete_item_association;
8873:
8874: END CSI_COUNTER_TEMPLATE_PVT;