DBA Data[Home] [Help]

APPS.ARP_CASH_RECEIPT_HISTORY dependencies on STANDARD

Line 20: arp_standard.debug( 'Exception:arp_cash_receipt_history.GetCurrentId' );

16: -- handle NO_DATA_FOUND explicitly, because of bug 169136
17: WHEN NO_DATA_FOUND THEN
18: RAISE_APPLICATION_ERROR( -20000, 'Create Cash Receipt History Record before Application - consult support' );
19: WHEN OTHERS THEN
20: arp_standard.debug( 'Exception:arp_cash_receipt_history.GetCurrentId' );
21: arp_standard.debug( 'l_CashReceiptHistoryId:'||l_CashReceiptHistoryId );
22: RAISE;
23: END;
24: --

Line 21: arp_standard.debug( 'l_CashReceiptHistoryId:'||l_CashReceiptHistoryId );

17: WHEN NO_DATA_FOUND THEN
18: RAISE_APPLICATION_ERROR( -20000, 'Create Cash Receipt History Record before Application - consult support' );
19: WHEN OTHERS THEN
20: arp_standard.debug( 'Exception:arp_cash_receipt_history.GetCurrentId' );
21: arp_standard.debug( 'l_CashReceiptHistoryId:'||l_CashReceiptHistoryId );
22: RAISE;
23: END;
24: --
25: FUNCTION InsertRecord(amount NUMBER,

Line 158: arp_standard.sysparm.org_id);

154: last_update_login,
155: prv_stat_cash_rec_hist_id,
156: created_from,
157: reversal_created_from,
158: arp_standard.sysparm.org_id);
159:
160: /*-------------------------------------------+
161: | Call central MRC library for insertion |
162: | into MRC tables |

Line 176: arp_standard.debug( 'Exception:arp_cash_receipt_history.InsertRecord' );

172: RETURN(crh_id);
173: --
174: EXCEPTION
175: WHEN OTHERS THEN
176: arp_standard.debug( 'Exception:arp_cash_receipt_history.InsertRecord' );
177: arp_standard.debug( 'crh_id:'||crh_id );
178: RAISE;
179: END;
180: --

Line 177: arp_standard.debug( 'crh_id:'||crh_id );

173: --
174: EXCEPTION
175: WHEN OTHERS THEN
176: arp_standard.debug( 'Exception:arp_cash_receipt_history.InsertRecord' );
177: arp_standard.debug( 'crh_id:'||crh_id );
178: RAISE;
179: END;
180: --
181: --

Line 216: arp_standard.debug( 'Exception:arp_cash_receipt_history.Reverse' );

212:
213:
214: EXCEPTION
215: WHEN OTHERS THEN
216: arp_standard.debug( 'Exception:arp_cash_receipt_history.Reverse' );
217: RAISE;
218: END;
219: --
220: --

Line 250: arp_standard.debug( 'Exception:arp_cash_receipt_history.UpdateAcctdFactor' );

246:
247:
248: EXCEPTION
249: WHEN OTHERS THEN
250: arp_standard.debug( 'Exception:arp_cash_receipt_history.UpdateAcctdFactor' );
251: RAISE;
252: END;
253: --
254: --

Line 284: arp_standard.debug( 'Exception:arp_cash_receipt_history.UpdateAcctdAmount' );

280:
281:
282: EXCEPTION
283: WHEN OTHERS THEN
284: arp_standard.debug( 'Exception:arp_cash_receipt_history.UpdateAcctdAmount' );
285: RAISE;
286: END;
287: --
288: END ARP_CASH_RECEIPT_HISTORY;