DBA Data[Home] [Help]

APPS.PAY_SE_PAYSLIP_ARCHIVE dependencies on FF_USER_ENTITIES

Line 1353: FROM ff_user_entities u,

1349: IS
1350: /* Cursor to retrieve Defined Balance Id */
1351: CURSOR csr_def_bal_id(p_user_name VARCHAR2) IS
1352: SELECT u.creator_id
1353: FROM ff_user_entities u,
1354: ff_database_items d
1355: WHERE d.user_name = p_user_name
1356: AND u.user_entity_id = d.user_entity_id
1357: AND (u.legislation_code = 'SE' )

Line 1360: l_defined_balance_id ff_user_entities.user_entity_id%TYPE;

1356: AND u.user_entity_id = d.user_entity_id
1357: AND (u.legislation_code = 'SE' )
1358: AND (u.business_group_id IS NULL )
1359: AND u.creator_type = 'B';
1360: l_defined_balance_id ff_user_entities.user_entity_id%TYPE;
1361: BEGIN
1362: IF g_debug THEN
1363: hr_utility.set_location(' Entering Function GET_DEFINED_BALANCE_ID',240);
1364: END IF;