DBA Data[Home] [Help]

APPS.CSD_OM_INTERFACE_PVT dependencies on STANDARD

Line 19: /* STANDARD PARAMETERS */

15: /* Function name: DEBUG */
16: /* Description : Logs the debug message */
17: /* Called from : Called from Update API */
18: /* */
19: /* STANDARD PARAMETERS */
20: /* In Parameters : */
21: /* p_message Required Debug message that needs to be logged */
22: /* p_mod_name Required Module name */
23: /* p_severity_level Required Severity level */

Line 25: /* NON-STANDARD PARAMETERS */

21: /* p_message Required Debug message that needs to be logged */
22: /* p_mod_name Required Module name */
23: /* p_severity_level Required Severity level */
24: /* Output Parameters: */
25: /* NON-STANDARD PARAMETERS */
26: /* In Parameters */
27: /* Out parameters */
28: /* Change Hist : */
29: /* 09/20/03 vlakaman Initial Creation. */

Line 84: /* STANDARD PARAMETERS */

80: /* Procedure name: Get_Party_site_id */
81: /* Description : Get the bill to/ship to party site use id */
82: /* Called from : Called from Process_Rma */
83: /* */
84: /* STANDARD PARAMETERS */
85: /* In Parameters : */
86: /* p_site_use_type Required Site Use Type */
87: /* p_cust_site_use_id Required Cust site use */
88: /* Output Parameters: */

Line 90: /* NON-STANDARD PARAMETERS */

86: /* p_site_use_type Required Site Use Type */
87: /* p_cust_site_use_id Required Cust site use */
88: /* Output Parameters: */
89: /* x_return_status Return Status */
90: /* NON-STANDARD PARAMETERS */
91: /* In Parameters */
92: /* Out parameters */
93: /* x_party_site_use_id Party Site Use Id */
94: /* Change Hist : */

Line 200: /* STANDARD PARAMETERS */

196: /* Procedure name: PROCESS_RMA */
197: /* Description : Creates SR/RO against RMA */
198: /* Called from : Called from Concurrent Program */
199: /* */
200: /* STANDARD PARAMETERS */
201: /* In Parameters : */
202: /* p_inventory_org_id Required Warehouse */
203: /* p_subinventory_name Required Received Subinventory */
204: /* Output Parameters: */

Line 207: /* NON-STANDARD PARAMETERS */

203: /* p_subinventory_name Required Received Subinventory */
204: /* Output Parameters: */
205: /* errbuf Error Buffer */
206: /* retcode Return Code */
207: /* NON-STANDARD PARAMETERS */
208: /* In Parameters */
209: /* Out parameters */
210: /* Change Hist : */
211: /* 01/26/04 vlakaman Initial Creation. */

Line 341: -- Standard Start of API savepoint

337: l_mod_name varchar2(2000) := 'csd.plsql.csd_om_interface_pvt.process_rma';
338:
339: BEGIN
340:
341: -- Standard Start of API savepoint
342: SAVEPOINT process_rma;
343:
344: --
345: -- MOAC initialization

Line 409: Debug( 'Getting Repair Type Id and mode for standard repair',l_mod_name,1);

405: Debug( 'One of the profile for SR default values is not set',l_mod_name,1);
406: Raise FND_API.G_EXC_ERROR ;
407: END IF;
408:
409: Debug( 'Getting Repair Type Id and mode for standard repair',l_mod_name,1);
410:
411: -- Get the repair type and repair mode
412: -- for standard repair type
413: Begin

Line 412: -- for standard repair type

408:
409: Debug( 'Getting Repair Type Id and mode for standard repair',l_mod_name,1);
410:
411: -- Get the repair type and repair mode
412: -- for standard repair type
413: Begin
414: Select repair_type_id,
415: repair_mode
416: into l_repair_type_id,

Line 430: Debug( 'Standard Repair Type not found',l_mod_name,1);

426: ELSE
427: fnd_message.set_name('CSD','CSD_STD_REP_TYPE_MISSING');
428: fnd_msg_pub.add;
429: END IF;
430: Debug( 'Standard Repair Type not found',l_mod_name,1);
431: Raise FND_API.G_EXC_ERROR ;
432: When TOO_MANY_ROWS then
433: IF ( l_error_level >= G_debug_level) THEN
434: fnd_message.set_name('CSD','CSD_STD_REP_TYPE_MISSING');

Line 440: Debug( 'Too many Standard Repair Types found',l_mod_name,1);

436: ELSE
437: fnd_message.set_name('CSD','CSD_STD_REP_TYPE_MISSING');
438: fnd_msg_pub.add;
439: END IF;
440: Debug( 'Too many Standard Repair Types found',l_mod_name,1);
441: Raise FND_API.G_EXC_ERROR ;
442: End;
443:
444: Debug( 'Validating the Inv Org',l_mod_name,1);

Line 521: -- Standard Start of API savepoint

517: FOR C1 in Get_rcv_lines (p_inventory_org_id, p_subinventory_name )
518: LOOP
519: BEGIN
520:
521: -- Standard Start of API savepoint
522: SAVEPOINT rcv_lines;
523:
524: Debug( 'Inside FOR LOOP....',l_mod_name,1);
525: Debug( 'Order Header Id ='||to_char(c1.rma_header_id),l_mod_name,1);

Line 1083: /* STANDARD PARAMETERS */

1079: /* Procedure name: GET_SR_CONTACTS */
1080: /* Description : Creates SR/RO against RMA */
1081: /* Called from : Called from Concurrent Program */
1082: /* */
1083: /* STANDARD PARAMETERS */
1084: /* In Parameters : */
1085: /* p_contact_id Required Contact Id */
1086: /* Output Parameters: */
1087: /* NON-STANDARD PARAMETERS */

Line 1087: /* NON-STANDARD PARAMETERS */

1083: /* STANDARD PARAMETERS */
1084: /* In Parameters : */
1085: /* p_contact_id Required Contact Id */
1086: /* Output Parameters: */
1087: /* NON-STANDARD PARAMETERS */
1088: /* In Parameters */
1089: /* Out parameters */
1090: /* Change Hist : */
1091: /* vparvath Initial creation */