DBA Data[Home] [Help]

APPS.CSI_INSTANCE_PARTIES_VLD_PVT dependencies on FA_BOOKS

Line 1631: /* id exists in fa_books */

1627:
1628: /*-----------------------------------------------------------*/
1629: /* Procedure name: Is_Asset_Comb_Valid */
1630: /* Description : Check if the instance asset id and location */
1631: /* id exists in fa_books */
1632: /*-----------------------------------------------------------*/
1633:
1634: FUNCTION Is_Asset_Comb_Valid
1635: ( p_asset_id IN NUMBER,

Line 1644: FROM fa_books

1640: l_return_value BOOLEAN := TRUE;
1641: BEGIN
1642: SELECT 'x'
1643: INTO l_dummy
1644: FROM fa_books
1645: WHERE asset_id = p_asset_id
1646: and book_type_code = p_book_type_code;
1647:
1648: RETURN l_return_value;