DBA Data[Home] [Help]

APPS.PAY_SA_ARCHIVE dependencies on FF_USER_ENTITIES

Line 1599: FROM ff_user_entities u,

1595: IS
1596: /* Cursor to retrieve Defined Balance Id */
1597: CURSOR csr_def_bal_id(p_user_name VARCHAR2) IS
1598: SELECT u.creator_id
1599: FROM ff_user_entities u,
1600: ff_database_items d
1601: WHERE d.user_name = p_user_name
1602: AND u.user_entity_id = d.user_entity_id
1603: AND (u.legislation_code = 'SA' )

Line 1607: l_defined_balance_id ff_user_entities.user_entity_id%TYPE;

1603: AND (u.legislation_code = 'SA' )
1604: AND (u.business_group_id IS NULL )
1605: AND u.creator_type = 'B';
1606:
1607: l_defined_balance_id ff_user_entities.user_entity_id%TYPE;
1608:
1609: BEGIN
1610: IF g_debug THEN
1611: hr_utility.set_location(' Entering Function GET_DEFINED_BALANCE_ID',240);