DBA Data[Home] [Help]

APPS.FARX_RP dependencies on FA_MASS_RECLASS_PKG

Line 361: IF NOT FA_MASS_RECLASS_PKG.Check_Trans_Date(

357: Check if reclass transaction date for the mass reclass record from
358: mass reclass form is in the current corporate book period.
359: (No prior period reclass is allowed.)
360: =========================================================================*/
361: IF NOT FA_MASS_RECLASS_PKG.Check_Trans_Date(
362: X_Corp_Book => mr_rec.book_type_code,
363: X_Trans_Date => mr_rec.trans_date_entered) THEN
364: RAISE mrcl_failure;
365: END IF;

Line 422: IF FA_MASS_RECLASS_PKG.Check_Criteria(

418: -- Save the asset id for the next loop.
419: h_last_asset := a_tbl(a_index).asset_id;
420:
421: -- Check if the asset meets the additional user criteria.
422: IF FA_MASS_RECLASS_PKG.Check_Criteria(
423: X_Asset_Id => a_tbl(a_index).asset_id,
424: X_Fully_Rsvd_Flag => mr_rec.fully_rsvd_flag) THEN
425:
426: if (g_print_debug) then

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

472: a_tbl(a_index).asset_id );
473: end if;
474: -- Invalid asset record.
475: a_index := a_index - 1;
476: END IF; /* IF FA_MASS_RECLASS_PKG.Check_Criteria */
477: ELSE /* a_tbl(a_index).asset_id = h_last_asset */
478: -- This asset has already been validated. Decrementing index count
479: -- to avoid records with duplicate asset id's in a_tbl.
480: a_index := a_index - 1;

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

773: Transaction_date_entered values are validated in reclass/redefault
774: engines, as the values required for the validation are all
775: calculated in the transaction engine. Here, we separate this
776: logic out nocopy for redefault.
777: FA_MASS_RECLASS_PKG.Check_Trans_Date(called in Preview_Reclass())
778: performs an equivalent validation for transaction_date_entered
779: for the reclass part. */
780: THEN
781: -- Validation for redefault succeeded in this book.