DBA Data[Home] [Help]

APPS.CN_COMP_PLAN_XMLCOPY_PVT dependencies on STANDARD

Line 51: -- Standard Start of API savepoint

47: fnd_file.put_line(fnd_file.log, '**************************************************************');
48: fnd_file.put_line(fnd_file.log, '******************* START - PLAN COPY IMPORT *****************');
49: fnd_file.put_line(fnd_file.log, '**************************************************************');
50:
51: -- Standard Start of API savepoint
52: SAVEPOINT Import_PlanCopy;
53: retcode := 0;
54:
55: -- Get Prefix and Date Information

Line 334: /* Standard API Checks */

330: AND r.org_id = p_org_id;
331:
332: BEGIN
333: /**********************************************************************/
334: /* Standard API Checks */
335: /**********************************************************************/
336: -- Standard Start of API savepoint
337: -- SAVEPOINT Parse_XML;
338: -- Standard call to check for call compatibility.

Line 336: -- Standard Start of API savepoint

332: BEGIN
333: /**********************************************************************/
334: /* Standard API Checks */
335: /**********************************************************************/
336: -- Standard Start of API savepoint
337: -- SAVEPOINT Parse_XML;
338: -- Standard call to check for call compatibility.
339: IF NOT fnd_api.Compatible_API_Call(l_api_version,p_api_version,l_api_name,G_PKG_NAME )THEN
340: RAISE fnd_api.g_exc_unexpected_error;

Line 338: -- Standard call to check for call compatibility.

334: /* Standard API Checks */
335: /**********************************************************************/
336: -- Standard Start of API savepoint
337: -- SAVEPOINT Parse_XML;
338: -- Standard call to check for call compatibility.
339: IF NOT fnd_api.Compatible_API_Call(l_api_version,p_api_version,l_api_name,G_PKG_NAME )THEN
340: RAISE fnd_api.g_exc_unexpected_error;
341: END IF;
342:

Line 1859: -- If Payment Group does not exists, Set it to 'STANDARD'

1855: FROM cn_lookups
1856: WHERE lookup_type = 'PAYMENT_GROUP_CODE'
1857: AND lookup_code = v_plan_element_rec.payment_group_code;
1858:
1859: -- If Payment Group does not exists, Set it to 'STANDARD'
1860: IF l_pmt_group_code = 0 THEN
1861: fnd_message.set_name ('CN' , 'CN_COPY_PE_PMT_GRP_DFLT');
1862: fnd_message.set_token('PLAN_ELEMENT_NAME',v_name_node_value_new);
1863: fnd_message.set_token('PAYMENT_GROUP_CODE_NAME',v_plan_element_rec.payment_group_code);

Line 1865: v_plan_element_rec.payment_group_code := 'STANDARD';

1861: fnd_message.set_name ('CN' , 'CN_COPY_PE_PMT_GRP_DFLT');
1862: fnd_message.set_token('PLAN_ELEMENT_NAME',v_name_node_value_new);
1863: fnd_message.set_token('PAYMENT_GROUP_CODE_NAME',v_plan_element_rec.payment_group_code);
1864: fnd_file.put_line(fnd_file.log, fnd_message.get);
1865: v_plan_element_rec.payment_group_code := 'STANDARD';
1866: END IF;
1867:
1868: -- Check if Start Date and End Date values are passed for change.
1869: IF p_start_date IS NULL THEN

Line 2960: -- Standard call to get message count

2956: ELSE
2957: x_import_status := 'FAILED';
2958: END IF;
2959: END IF;
2960: -- Standard call to get message count
2961: FND_MSG_PUB.Count_And_Get(
2962: p_count => x_msg_count,
2963: p_data => x_msg_data,
2964: p_encoded => FND_API.G_FALSE);