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 1189: 'RCV_ACCOUNTING_EVENTS',

1185: )
1186: VALUES (
1187: 707,
1188: p_sys_setup_rec.set_of_books_id,
1189: 'RCV_ACCOUNTING_EVENTS',
1190: 0,
1191: decode(g_rae_event_type_id_tbl(l_ctr),
1192: 13,g_rae_pnt_event_id_tbl(l_ctr),
1193: g_rae_event_id_tbl(l_ctr)),

Line 1222: p_entity_type_code => 'RCV_ACCOUNTING_EVENTS',

1218: /* Call XLA API to create event in bulk mode */
1219: l_stmt_num := 240;
1220: xla_events_pub_pkg.create_bulk_events(p_application_id => 707,
1221: p_ledger_id => p_sys_setup_rec.set_of_books_id,
1222: p_entity_type_code => 'RCV_ACCOUNTING_EVENTS',
1223: p_source_application_id => 201);
1224: l_stmt_num := 260;
1225: /* Check to see if Encumbrance is enabled */
1226:

Line 1243: AND xte.entity_code = 'RCV_ACCOUNTING_EVENTS'

1239: AND nvl(xegt.budgetary_control_flag,'N') = 'N'
1240: AND nvl(xe.budgetary_control_flag,'N') = 'N'
1241: AND xte.ledger_id = p_sys_setup_rec.set_of_books_id
1242: AND xte.application_id = 707
1243: AND xte.entity_code = 'RCV_ACCOUNTING_EVENTS'
1244: AND nvl(xte.source_id_int_1,-99) = xegt.source_id_int_1
1245: AND nvl(xte.source_id_int_2,-99) = xegt.source_id_int_2
1246: AND nvl(xte.source_id_int_3,-99) = xegt.source_id_int_3;
1247: /* Call create accounting in Bulk mode */

Line 1279: AND xte.entity_code = 'RCV_ACCOUNTING_EVENTS'

1275: AND nvl(xegt.budgetary_control_flag,'N') = 'Y'
1276: AND nvl(xe.budgetary_control_flag,'N') = 'Y'
1277: AND xte.ledger_id = p_sys_setup_rec.set_of_books_id
1278: AND xte.application_id = 707
1279: AND xte.entity_code = 'RCV_ACCOUNTING_EVENTS'
1280: AND nvl(xte.source_id_int_1,-99) = xegt.source_id_int_1
1281: AND nvl(xte.source_id_int_2,-99) = xegt.source_id_int_2
1282: AND nvl(xte.source_id_int_3,-99) = xegt.source_id_int_3;
1283: l_stmt_num := 360;