DBA Data[Home] [Help]

APPS.PA_CAPITAL_PROJECT_UTILS dependencies on FA_MASS_ADD_VALIDATE

Line 174: -- is adjustable in FA. By calling the fa_mass_add_validate.can_add_to_asset

170: -- FUNCTION
171: -- Is_Asset_Adj_Allowed
172: -- PURPOSE
173: -- Given the Fa_Asset_Id/Book_Type_Code, check if the fa_asset_id
174: -- is adjustable in FA. By calling the fa_mass_add_validate.can_add_to_asset
175: -- Returns 1 if adjustment allowed
176: -- Returns 0 if adjustment not allowed
177: -- In the calling API, FA asset cannot be adjusted then raise the error : PA_FA_ASSET_RETIRED
178: -----------------------------------------------------------------------------------

Line 187: l_Adj_allowed := fa_mass_add_validate.can_add_to_asset(

183: l_Adj_allowed Number;
184:
185: Begin
186:
187: l_Adj_allowed := fa_mass_add_validate.can_add_to_asset(
188: x_asset_id => P_Fa_Asset_Id,
189: x_book_type_code => P_Book_Type_Code);
190:
191: Return l_Adj_allowed;