DBA Data[Home] [Help]

APPS.CSI_ASSET_VLD_PVT dependencies on FA_BOOKS

Line 290: /* id exists in fa_books */

286:
287: /*-----------------------------------------------------------*/
288: /* Procedure name: Is_Asset_Comb_Valid */
289: /* Description : Check if the instance asset id and location */
290: /* id exists in fa_books */
291: /*-----------------------------------------------------------*/
292:
293: FUNCTION Is_Asset_Comb_Valid
294: ( p_asset_id IN NUMBER,

Line 303: FROM fa_books

299: l_return_value BOOLEAN := TRUE;
300:
301: CURSOR C1 IS
302: SELECT 'x'
303: FROM fa_books
304: WHERE asset_id = p_asset_id
305: and book_type_code = p_book_type_code
306: and rownum = 1 ;
307: