DBA Data[Home] [Help]

APPS.FARX_RP dependencies on FA_MASS_RECLASS_PKG

Line 342: IF NOT FA_MASS_RECLASS_PKG.Check_Trans_Date(

338: Check if reclass transaction date for the mass reclass record from
339: mass reclass form is in the current corporate book period.
340: (No prior period reclass is allowed.)
341: =========================================================================*/
342: IF NOT FA_MASS_RECLASS_PKG.Check_Trans_Date(
343: X_Corp_Book => mr_rec.book_type_code,
344: X_Trans_Date => mr_rec.trans_date_entered) THEN
345: RAISE mrcl_failure;
346: END IF;

Line 402: IF FA_MASS_RECLASS_PKG.Check_Criteria(

398: -- Save the asset id for the next loop.
399: h_last_asset := a_tbl(a_index).asset_id;
400:
401: -- Check if the asset meets the additional user criteria.
402: IF FA_MASS_RECLASS_PKG.Check_Criteria(
403: X_Asset_Id => a_tbl(a_index).asset_id,
404: X_Fully_Rsvd_Flag => mr_rec.fully_rsvd_flag) THEN
405:
406: if (g_print_debug) then

Line 455: END IF; /* IF FA_MASS_RECLASS_PKG.Check_Criteria */

451: a_tbl(a_index).asset_id );
452: end if;
453: -- Invalid asset record.
454: a_index := a_index - 1;
455: END IF; /* IF FA_MASS_RECLASS_PKG.Check_Criteria */
456: ELSE /* a_tbl(a_index).asset_id = h_last_asset */
457: -- This asset has already been validated. Decrementing index count
458: -- to avoid records with duplicate asset id's in a_tbl.
459: a_index := a_index - 1;

Line 752: FA_MASS_RECLASS_PKG.Check_Trans_Date(called in Preview_Reclass())

748: Transaction_date_entered values are validated in reclass/redefault
749: engines, as the values required for the validation are all
750: calculated in the transaction engine. Here, we separate this
751: logic out nocopy for redefault.
752: FA_MASS_RECLASS_PKG.Check_Trans_Date(called in Preview_Reclass())
753: performs an equivalent validation for transaction_date_entered
754: for the reclass part. */
755: THEN
756: -- Validation for redefault succeeded in this book.