DBA Data[Home] [Help]

APPS.CSI_INSTANCE_PARTIES_VLD_PVT dependencies on FA_BOOKS

Line 1635: /* id exists in fa_books */

1631:
1632: /*-----------------------------------------------------------*/
1633: /* Procedure name: Is_Asset_Comb_Valid */
1634: /* Description : Check if the instance asset id and location */
1635: /* id exists in fa_books */
1636: /*-----------------------------------------------------------*/
1637:
1638: FUNCTION Is_Asset_Comb_Valid
1639: ( p_asset_id IN NUMBER,

Line 1648: FROM fa_books

1644: l_return_value BOOLEAN := TRUE;
1645: BEGIN
1646: SELECT 'x'
1647: INTO l_dummy
1648: FROM fa_books
1649: WHERE asset_id = p_asset_id
1650: and book_type_code = p_book_type_code;
1651:
1652: RETURN l_return_value;