DBA Data[Home] [Help]

APPS.PAY_AE_ARCHIVE dependencies on FF_USER_ENTITIES

Line 1719: FROM ff_user_entities u,

1715: IS
1716: /* Cursor to retrieve Defined Balance Id */
1717: CURSOR csr_def_bal_id(p_user_name VARCHAR2) IS
1718: SELECT u.creator_id
1719: FROM ff_user_entities u,
1720: ff_database_items d
1721: WHERE d.user_name = p_user_name
1722: AND u.user_entity_id = d.user_entity_id
1723: AND (u.legislation_code = 'AE' )

Line 1727: l_defined_balance_id ff_user_entities.user_entity_id%TYPE;

1723: AND (u.legislation_code = 'AE' )
1724: AND (u.business_group_id IS NULL )
1725: AND u.creator_type = 'B';
1726:
1727: l_defined_balance_id ff_user_entities.user_entity_id%TYPE;
1728:
1729: BEGIN
1730: IF g_debug THEN
1731: hr_utility.set_location(' Entering Function GET_DEFINED_BALANCE_ID',240);