DBA Data[Home] [Help]

APPS.AR_PREPAYMENTS dependencies on ARP_STANDARD

Line 59: arp_standard.debug('ar_prepayments.check_rec_in_doubt()+ ');

55: x_rid_reason OUT NOCOPY VARCHAR2) IS
56: BEGIN
57: ---
58: IF PG_DEBUG in ('Y', 'C') THEN
59: arp_standard.debug('ar_prepayments.check_rec_in_doubt()+ ');
60: END IF;
61: ---
62: x_rec_in_doubt := 'N';
63: x_rid_reason := null;

Line 68: SELECT 'Y', arp_standard.fnd_message('AR_RID_NOT_REMITTED_OR_CLEARED')

64: ---
65: --- For CC receipts, receipt should be remitted
66: ---
67: BEGIN
68: SELECT 'Y', arp_standard.fnd_message('AR_RID_NOT_REMITTED_OR_CLEARED')
69: INTO x_rec_in_doubt, x_rid_reason
70: FROM dual
71: WHERE
72: (

Line 85: arp_standard.debug('Unexpected error '||sqlerrm||

81: EXCEPTION
82: WHEN NO_DATA_FOUND THEN
83: NULL;
84: WHEN OTHERS THEN
85: arp_standard.debug('Unexpected error '||sqlerrm||
86: ' occurred in ar_prepayments.check_rec_in_doubt');
87: RAISE;
88: END;
89:

Line 92: arp_standard.debug('After REFUND x_rec_in_doubt[x_rid_reason]: ' || x_rec_in_doubt ||

88: END;
89:
90: ---
91: IF PG_DEBUG in ('Y', 'C') THEN
92: arp_standard.debug('After REFUND x_rec_in_doubt[x_rid_reason]: ' || x_rec_in_doubt ||
93: '[' || x_rid_reason || ']');
94: END IF;
95: ---
96: ---

Line 100: SELECT 'Y', arp_standard.fnd_message('AR_RID_CLAIM_OR_CB_APP_EXISTS')

96: ---
97: --- There should not be any Claims Investigation or CB special application
98: ---
99: BEGIN
100: SELECT 'Y', arp_standard.fnd_message('AR_RID_CLAIM_OR_CB_APP_EXISTS')
101: INTO x_rec_in_doubt, x_rid_reason
102: FROM dual
103: WHERE
104: EXISTS

Line 116: arp_standard.debug('Unexpected error '||sqlerrm||

112: EXCEPTION
113: WHEN NO_DATA_FOUND THEN
114: NULL;
115: WHEN OTHERS THEN
116: arp_standard.debug('Unexpected error '||sqlerrm||
117: ' occurred in ar_prepayments.check_rec_in_doubt');
118: RAISE;
119: END;
120:

Line 123: arp_standard.debug('After CLAIMS x_rec_in_doubt[x_rid_reason]: ' ||

119: END;
120:
121: ---
122: IF PG_DEBUG in ('Y', 'C') THEN
123: arp_standard.debug('After CLAIMS x_rec_in_doubt[x_rid_reason]: ' ||
124: x_rec_in_doubt || '[' || x_rid_reason || ']');
125: END IF;
126: ---
127: ---

Line 131: SELECT 'Y', arp_standard.fnd_message('AR_RID_RECEIPT_REVERSED')

127: ---
128: --- Receipt should not be reversed
129: ---
130: BEGIN
131: SELECT 'Y', arp_standard.fnd_message('AR_RID_RECEIPT_REVERSED')
132: INTO x_rec_in_doubt, x_rid_reason
133: FROM dual
134: WHERE
135: EXISTS

Line 146: arp_standard.debug('Unexpected error '||sqlerrm||

142: EXCEPTION
143: WHEN NO_DATA_FOUND THEN
144: NULL;
145: WHEN OTHERS THEN
146: arp_standard.debug('Unexpected error '||sqlerrm||
147: ' occurred in ar_prepayments.check_rec_in_doubt');
148: RAISE;
149: END;
150:

Line 153: arp_standard.debug('After DM reverse x_rec_in_doubt[x_rid_reason]: ' ||

149: END;
150:
151: ---
152: IF PG_DEBUG in ('Y', 'C') THEN
153: arp_standard.debug('After DM reverse x_rec_in_doubt[x_rid_reason]: ' ||
154: x_rec_in_doubt || '[' || x_rid_reason || ']');
155: END IF;
156: ---
157: <>

Line 160: arp_standard.debug('ar_prepayments.check_rec_in_doubt()- ');

156: ---
157: <>
158: ---
159: IF PG_DEBUG in ('Y', 'C') THEN
160: arp_standard.debug('ar_prepayments.check_rec_in_doubt()- ');
161: END IF;
162: ---
163: EXCEPTION
164: WHEN OTHERS THEN

Line 165: arp_standard.debug('Unexpected error '||sqlerrm||

161: END IF;
162: ---
163: EXCEPTION
164: WHEN OTHERS THEN
165: arp_standard.debug('Unexpected error '||sqlerrm||
166: ' occurred in arp_process_returns.check_rec_in_doubt');
167: RAISE;
168: END check_rec_in_doubt;
169:

Line 810: arp_standard.debug('ar_prepayments.Create_Prepayment ()+');

806:
807: BEGIN
808:
809: IF PG_DEBUG in ('Y', 'C') THEN
810: arp_standard.debug('ar_prepayments.Create_Prepayment ()+');
811: END IF;
812:
813: /*--------------------------------------------------------------+
814: | Initialize message list if p_init_msg_list is set to TRUE |

Line 837: arp_standard.debug('ar_prepayments.Create_Prepayment ()+'|| p_org_id);

833: --get the value of receipt_number into local variable
834: l_receipt_number := p_receipt_number;
835:
836: IF PG_DEBUG in ('Y', 'C') THEN
837: arp_standard.debug('ar_prepayments.Create_Prepayment ()+'|| p_org_id);
838: arp_util.debug('Create_Prepayment: payment_trxn_extension_id' || to_char(p_payment_trxn_extension_id) );
839: END IF;
840:
841:

Line 1082: arp_standard.init_standard;

1078: /*-------------------------------------------------+
1079: | Initialize SOB/org dependent variables |
1080: +-------------------------------------------------*/
1081: arp_global.init_global;
1082: arp_standard.init_standard;
1083:
1084:
1085: --If receivable_application_id is NOT passed, get the id and details
1086: --and fetch the record and keep it in local variable before unapplying it