DBA Data[Home] [Help]

APPS.RCV_ACCEVENTS_PVT dependencies on RCV_ACCOUNTING_EVENTS

Line 31: -- in RCV_ACCOUNTING_EVENTS. For online accruals, it also generates

27: -- Version :
28: -- Initial version 1.0
29: --
30: -- Notes : This API creates all accounting events for receiving transactions
31: -- in RCV_ACCOUNTING_EVENTS. For online accruals, it also generates
32: -- the accounting entries for the event.
33: --
34: -- End of comments
35: -------------------------------------------------------------------------------

Line 368: -- in RCV_ACCOUNTING_EVENTS. For online accruals, it also generates

364: -- Version :
365: -- Initial version 1.0
366: --
367: -- Notes : This API creates all accounting events for retroactive price adjustments
368: -- in RCV_ACCOUNTING_EVENTS. For online accruals, it also generates
369: -- the accounting entries for the event.
370: --
371: -- End of comments
372: -------------------------------------------------------------------------------

Line 559: FROM rcv_accounting_events

555: l_stmt_num := 50;
556:
557: SELECT count(*)
558: INTO l_rae_count
559: FROM rcv_accounting_events
560: WHERE rcv_transaction_id = c_par_txn.transaction_id;
561:
562: IF l_rae_count > 0 THEN
563:

Line 571: FROM rcv_accounting_events RAE,

567: l_stmt_num := 60;
568:
569: SELECT RAE.organization_id, RAE.trx_flow_header_id, NVL(RT.dropship_type_code,3)
570: INTO l_organization_id, l_trx_flow_header_id,l_drop_ship_flag
571: FROM rcv_accounting_events RAE,
572: rcv_transactions RT
573: WHERE RAE.rcv_transaction_id = c_par_txn.transaction_id
574: AND RT.transaction_id = RAE.rcv_transaction_id
575: AND RAE.procurement_org_flag = 'Y'

Line 750: -- Insert events into RCV_Accounting_Events

746: END LOOP; -- C_PAR_TXNS
747:
748:
749: IF (l_rcv_events_tbl.count > 0) THEN
750: -- Insert events into RCV_Accounting_Events
751: l_stmt_num := 110;
752: RCV_SeedEvents_PVT.Insert_RAEEvents(
753: p_api_version => 1.0,
754: x_return_status => l_return_status,

Line 848: -- in RCV_ACCOUNTING_EVENTS.

844: -- Version :
845: -- Initial version 1.0
846: --
847: -- Notes : This API creates inter-company accounting events for AP line matches
848: -- in RCV_ACCOUNTING_EVENTS.
849: --
850: -- End of comments
851: -------------------------------------------------------------------------------
852: PROCEDURE Create_ICEvents(

Line 1013: -- in RCV_ACCOUNTING_EVENTS.

1009: -- Version :
1010: -- Initial version 1.0
1011: --
1012: -- Notes : This API creates all accounting events for RECEIVE transactions
1013: -- in RCV_ACCOUNTING_EVENTS.
1014: --
1015: -- End of comments
1016: -------------------------------------------------------------------------------
1017: PROCEDURE Create_ReceiveEvents(

Line 1718: -- in RCV_ACCOUNTING_EVENTS.

1714: -- Initial version 1.0
1715: --
1716: --
1717: -- Notes : This API creates all accounting events for DELIVER transactions
1718: -- in RCV_ACCOUNTING_EVENTS.
1719: --
1720: -- End of comments
1721: -------------------------------------------------------------------------------
1722: PROCEDURE Create_DeliverEvents(

Line 2266: -- in RCV_ACCOUNTING_EVENTS.

2262: -- Initial version 1.0
2263: --
2264: --
2265: -- Notes : This API creates all accounting events for RETURN TO RECEIVING transactions
2266: -- in RCV_ACCOUNTING_EVENTS.
2267: --
2268: -- End of comments
2269: PROCEDURE Create_RTREvents(
2270: p_api_version IN NUMBER,

Line 2802: -- in RCV_ACCOUNTING_EVENTS.

2798: -- Initial version 1.0
2799: --
2800: --
2801: -- Notes : This API creates all accounting events for RETURN TO VENDOR transactions
2802: -- in RCV_ACCOUNTING_EVENTS.
2803: --
2804: -- End of comments
2805: PROCEDURE Create_RTVEvents(
2806: p_api_version IN NUMBER,