DBA Data[Home] [Help]

APPS.CST_RECEIPTACCRUALPEREND_PVT dependencies on RCV_ACCOUNTING_EVENTS

Line 147: -- Create events in RCV_ACCOUNTING_EVENTS

143: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
144: END IF;
145:
146: -------------------------------------------------------------------------
147: -- Create events in RCV_ACCOUNTING_EVENTS
148: -------------------------------------------------------------------------
149: l_stmt_num := 50;
150: Seed_RcvAccountingEvents (
151: p_api_version => 1.0,

Line 162: l_msg_data := 'Failed creating event in RCV_ACCOUNTING_EVENTS' ;

158: p_sys_setup_rec => l_sys_setup_rec
159: );
160: -- If return status is not success, add message to the log
161: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS ) THEN
162: l_msg_data := 'Failed creating event in RCV_ACCOUNTING_EVENTS' ;
163: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
164: END IF;
165:
166: -------------------------------------------------------------------------

Line 285: -- DESCRIPTION : The procedure created events in RCV_ACCOUNTING_EVENTS table

281: END Start_Process;
282:
283: -----------------------------------------------------------------------------
284: -- PROCEDURE : Seed_RcvAccountingEvents
285: -- DESCRIPTION : The procedure created events in RCV_ACCOUNTING_EVENTS table
286: --
287: -- The procedure generates data and creates PL/SQL table for
288: -- RAE, which will be used for bulk inserting the data in
289: -- RAE

Line 485: -- Bulk insert the data in RCV_ACCOUNTING_EVENTS

481:
482: END LOOP;
483:
484: -------------------------------------------------------------------------
485: -- Bulk insert the data in RCV_ACCOUNTING_EVENTS
486: -------------------------------------------------------------------------
487: l_stmt_num := 60;
488: FORALL l_ctr IN g_rae_event_id_tbl.FIRST..g_rae_event_id_tbl.LAST
489: INSERT into RCV_ACCOUNTING_EVENTS (

Line 489: INSERT into RCV_ACCOUNTING_EVENTS (

485: -- Bulk insert the data in RCV_ACCOUNTING_EVENTS
486: -------------------------------------------------------------------------
487: l_stmt_num := 60;
488: FORALL l_ctr IN g_rae_event_id_tbl.FIRST..g_rae_event_id_tbl.LAST
489: INSERT into RCV_ACCOUNTING_EVENTS (
490: accounting_event_id,
491: last_update_date,
492: last_updated_by,
493: last_update_login,

Line 1165: 'RCV_ACCOUNTING_EVENTS',

1161: )
1162: VALUES (
1163: 707,
1164: p_sys_setup_rec.set_of_books_id,
1165: 'RCV_ACCOUNTING_EVENTS',
1166: 0,
1167: decode(g_rae_event_type_id_tbl(l_ctr),
1168: 13,g_rae_pnt_event_id_tbl(l_ctr),
1169: g_rae_event_id_tbl(l_ctr)),

Line 1200: p_entity_type_code => 'RCV_ACCOUNTING_EVENTS',

1196: /* Call XLA API to create event in bulk mode */
1197: l_stmt_num := 240;
1198: xla_events_pub_pkg.create_bulk_events(p_application_id => 707,
1199: p_ledger_id => p_sys_setup_rec.set_of_books_id,
1200: p_entity_type_code => 'RCV_ACCOUNTING_EVENTS',
1201: p_source_application_id => 201);
1202:
1203: /*Bug6987381 End */
1204: <>