DBA Data[Home] [Help]

APPS.AR_CREDIT_MEMO_API_PUB dependencies on ARW_CMREQ_COVER

Line 44: p_attribute_rec IN arw_cmreq_cover.pq_attribute_rec_type DEFAULT attribute_rec_const,

40: p_batch_source_name IN VARCHAR2 DEFAULT NULL,
41: p_org_id IN NUMBER DEFAULT NULL,
42: x_request_id OUT NOCOPY VARCHAR2,
43: /*4606558*/
44: p_attribute_rec IN arw_cmreq_cover.pq_attribute_rec_type DEFAULT attribute_rec_const,
45: p_interface_attribute_rec IN arw_cmreq_cover.pq_interface_rec_type DEFAULT
46: interface_rec_const,
47: p_global_attribute_rec IN arw_cmreq_cover.pq_global_attribute_rec_type DEFAULT
48: global_attribute_rec_const,

Line 45: p_interface_attribute_rec IN arw_cmreq_cover.pq_interface_rec_type DEFAULT

41: p_org_id IN NUMBER DEFAULT NULL,
42: x_request_id OUT NOCOPY VARCHAR2,
43: /*4606558*/
44: p_attribute_rec IN arw_cmreq_cover.pq_attribute_rec_type DEFAULT attribute_rec_const,
45: p_interface_attribute_rec IN arw_cmreq_cover.pq_interface_rec_type DEFAULT
46: interface_rec_const,
47: p_global_attribute_rec IN arw_cmreq_cover.pq_global_attribute_rec_type DEFAULT
48: global_attribute_rec_const,
49: p_dispute_date IN DATE DEFAULT NULL ,-- Bug 6358930

Line 47: p_global_attribute_rec IN arw_cmreq_cover.pq_global_attribute_rec_type DEFAULT

43: /*4606558*/
44: p_attribute_rec IN arw_cmreq_cover.pq_attribute_rec_type DEFAULT attribute_rec_const,
45: p_interface_attribute_rec IN arw_cmreq_cover.pq_interface_rec_type DEFAULT
46: interface_rec_const,
47: p_global_attribute_rec IN arw_cmreq_cover.pq_global_attribute_rec_type DEFAULT
48: global_attribute_rec_const,
49: p_dispute_date IN DATE DEFAULT NULL ,-- Bug 6358930
50: p_internal_comment IN VARCHAR2 DEFAULT NULL,
51: p_trx_number IN ra_customer_trx.trx_number%type DEFAULT NULL,

Line 58: l_attribute_rec arw_cmreq_cover.pq_attribute_rec_type ;

54: IS
55:
56: -- Local Variables
57: /*4606558*/
58: l_attribute_rec arw_cmreq_cover.pq_attribute_rec_type ;
59: l_interface_attribute_rec arw_cmreq_cover.pq_interface_rec_type;
60: l_global_attribute_rec arw_cmreq_cover.pq_global_attribute_rec_type;
61: l_cm_line_tbl arw_cmreq_cover.Cm_Line_Tbl_Type_Cover;
62:

Line 59: l_interface_attribute_rec arw_cmreq_cover.pq_interface_rec_type;

55:
56: -- Local Variables
57: /*4606558*/
58: l_attribute_rec arw_cmreq_cover.pq_attribute_rec_type ;
59: l_interface_attribute_rec arw_cmreq_cover.pq_interface_rec_type;
60: l_global_attribute_rec arw_cmreq_cover.pq_global_attribute_rec_type;
61: l_cm_line_tbl arw_cmreq_cover.Cm_Line_Tbl_Type_Cover;
62:
63:

Line 60: l_global_attribute_rec arw_cmreq_cover.pq_global_attribute_rec_type;

56: -- Local Variables
57: /*4606558*/
58: l_attribute_rec arw_cmreq_cover.pq_attribute_rec_type ;
59: l_interface_attribute_rec arw_cmreq_cover.pq_interface_rec_type;
60: l_global_attribute_rec arw_cmreq_cover.pq_global_attribute_rec_type;
61: l_cm_line_tbl arw_cmreq_cover.Cm_Line_Tbl_Type_Cover;
62:
63:
64: l_api_name CONSTANT VARCHAR2(20) := 'Create Request';

Line 61: l_cm_line_tbl arw_cmreq_cover.Cm_Line_Tbl_Type_Cover;

57: /*4606558*/
58: l_attribute_rec arw_cmreq_cover.pq_attribute_rec_type ;
59: l_interface_attribute_rec arw_cmreq_cover.pq_interface_rec_type;
60: l_global_attribute_rec arw_cmreq_cover.pq_global_attribute_rec_type;
61: l_cm_line_tbl arw_cmreq_cover.Cm_Line_Tbl_Type_Cover;
62:
63:
64: l_api_name CONSTANT VARCHAR2(20) := 'Create Request';
65: l_api_version CONSTANT NUMBER := 1.0;

Line 210: arp_util.debug ( 'will call arw_cmreq_cover.ar_request_cm');

206: raise validation_failed;
207: ELSE
208: -- call the entity handler
209: IF PG_DEBUG in ('Y', 'C') THEN
210: arp_util.debug ( 'will call arw_cmreq_cover.ar_request_cm');
211: END IF;
212:
213: x_request_id := arw_cmreq_cover.ar_request_cm(
214: p_customer_trx_id => p_customer_trx_id,

Line 213: x_request_id := arw_cmreq_cover.ar_request_cm(

209: IF PG_DEBUG in ('Y', 'C') THEN
210: arp_util.debug ( 'will call arw_cmreq_cover.ar_request_cm');
211: END IF;
212:
213: x_request_id := arw_cmreq_cover.ar_request_cm(
214: p_customer_trx_id => p_customer_trx_id,
215: p_line_credits_flag => p_line_credit_flag,
216: p_line_amount => p_line_amount,
217: p_tax_amount => p_tax_amount,

Line 241: -- bug 2290738 : arw_cmreq_cover.ar_request_cm will pass -1 if any error is encountered

237: p_internal_comment => p_internal_comment, /*7367350*/
238: p_gl_date => p_gl_date /*Bug 9536019*/
239: );
240:
241: -- bug 2290738 : arw_cmreq_cover.ar_request_cm will pass -1 if any error is encountered
242: if x_request_id = '-1' then
243: FND_MESSAGE.SET_NAME ('AR','GENERIC_MESSAGE');
244: FND_MESSAGE.SET_TOKEN('GENERIC_TEXT','Failure encountered in AR_CREDIT_MEMO_API_PUB.Create_request' ||
245: ' call to arw_cmreq_cover.ar_request_cm');

Line 245: ' call to arw_cmreq_cover.ar_request_cm');

241: -- bug 2290738 : arw_cmreq_cover.ar_request_cm will pass -1 if any error is encountered
242: if x_request_id = '-1' then
243: FND_MESSAGE.SET_NAME ('AR','GENERIC_MESSAGE');
244: FND_MESSAGE.SET_TOKEN('GENERIC_TEXT','Failure encountered in AR_CREDIT_MEMO_API_PUB.Create_request' ||
245: ' call to arw_cmreq_cover.ar_request_cm');
246: FND_MSG_PUB.Add;
247: raise creation_failed;
248: end if;
249:

Line 251: arp_util.debug ( 'Done with arw_cmreq_cover.ar_request_cm');

247: raise creation_failed;
248: end if;
249:
250: IF PG_DEBUG in ('Y', 'C') THEN
251: arp_util.debug ( 'Done with arw_cmreq_cover.ar_request_cm');
252: END IF;
253:
254: END IF;
255: END IF;

Line 1085: p_attribute_rec IN OUT NOCOPY arw_cmreq_cover.pq_attribute_rec_type,

1081: /*4556000*/
1082: p_skip_workflow_flag IN VARCHAR2,
1083: p_batch_source_name IN VARCHAR2,
1084: p_trx_number IN ra_customer_trx.trx_number%type DEFAULT NULL,
1085: p_attribute_rec IN OUT NOCOPY arw_cmreq_cover.pq_attribute_rec_type,
1086: p_interface_attribute_rec IN OUT NOCOPY arw_cmreq_cover.pq_interface_rec_type,
1087: p_global_attribute_rec IN OUT NOCOPY arw_cmreq_cover.pq_global_attribute_rec_type,
1088: p_dispute_date IN DATE DEFAULT NULL) -- Bug 6358930
1089: IS

Line 1086: p_interface_attribute_rec IN OUT NOCOPY arw_cmreq_cover.pq_interface_rec_type,

1082: p_skip_workflow_flag IN VARCHAR2,
1083: p_batch_source_name IN VARCHAR2,
1084: p_trx_number IN ra_customer_trx.trx_number%type DEFAULT NULL,
1085: p_attribute_rec IN OUT NOCOPY arw_cmreq_cover.pq_attribute_rec_type,
1086: p_interface_attribute_rec IN OUT NOCOPY arw_cmreq_cover.pq_interface_rec_type,
1087: p_global_attribute_rec IN OUT NOCOPY arw_cmreq_cover.pq_global_attribute_rec_type,
1088: p_dispute_date IN DATE DEFAULT NULL) -- Bug 6358930
1089: IS
1090:

Line 1087: p_global_attribute_rec IN OUT NOCOPY arw_cmreq_cover.pq_global_attribute_rec_type,

1083: p_batch_source_name IN VARCHAR2,
1084: p_trx_number IN ra_customer_trx.trx_number%type DEFAULT NULL,
1085: p_attribute_rec IN OUT NOCOPY arw_cmreq_cover.pq_attribute_rec_type,
1086: p_interface_attribute_rec IN OUT NOCOPY arw_cmreq_cover.pq_interface_rec_type,
1087: p_global_attribute_rec IN OUT NOCOPY arw_cmreq_cover.pq_global_attribute_rec_type,
1088: p_dispute_date IN DATE DEFAULT NULL) -- Bug 6358930
1089: IS
1090:
1091: -- Local Variables

Line 1415: p_desc_flex_rec IN OUT NOCOPY arw_cmreq_cover.pq_interface_rec_type,

1411: END validate_request_parameters;
1412:
1413: /*4556000*/
1414: PROCEDURE Validate_Int_Desc_Flex(
1415: p_desc_flex_rec IN OUT NOCOPY arw_cmreq_cover.pq_interface_rec_type,
1416: p_desc_flex_name IN VARCHAR2,
1417: p_return_status IN OUT NOCOPY varchar2
1418: ) IS
1419: