DBA Data[Home] [Help]

APPS.PV_CONTACT_USER_BATCH_PUB dependencies on JTF_UM_SUBSCRIPTIONS_B

Line 287: select a.subscription_id from JTF_UM_USERTYPE_SUBSCRIP a,JTF_UM_SUBSCRIPTIONS_B b,JTF_UM_USERTYPES_B c

283:
284:
285:
286: CURSOR enrollment_id (user_type VARCHAR2) IS
287: select a.subscription_id from JTF_UM_USERTYPE_SUBSCRIP a,JTF_UM_SUBSCRIPTIONS_B b,JTF_UM_USERTYPES_B c
288: where a.subscription_id=b.subscription_id
289: and c.usertype_key=user_type
290: and a.usertype_id=c.usertype_id;
291:

Line 1400: select a.subscription_id from JTF_UM_USERTYPE_SUBSCRIP a,JTF_UM_SUBSCRIPTIONS_B b,JTF_UM_USERTYPES_B c

1396: CURSOR user_type_id (user_type VARCHAR2) IS
1397: select usertype_id ,nvl(approval_id,-1) from JTF_UM_USERTYPES_B where usertype_key=user_type;
1398:
1399: CURSOR enrollment_id (user_type VARCHAR2) IS
1400: select a.subscription_id from JTF_UM_USERTYPE_SUBSCRIP a,JTF_UM_SUBSCRIPTIONS_B b,JTF_UM_USERTYPES_B c
1401: where a.subscription_id=b.subscription_id
1402: and c.usertype_key=user_type
1403: and a.usertype_id=c.usertype_id;
1404:

Line 2003: select a.subscription_id from JTF_UM_USERTYPE_SUBSCRIP a,JTF_UM_SUBSCRIPTIONS_B b,JTF_UM_USERTYPES_B c

1999: CURSOR get_user_id(l_user_name VARCHAR2) is
2000: select user_id from fnd_user where user_name=l_user_name;
2001:
2002: CURSOR enrollment_id (user_type VARCHAR2) IS
2003: select a.subscription_id from JTF_UM_USERTYPE_SUBSCRIP a,JTF_UM_SUBSCRIPTIONS_B b,JTF_UM_USERTYPES_B c
2004: where a.subscription_id=b.subscription_id
2005: and c.usertype_key=user_type
2006: and a.usertype_id=c.usertype_id;
2007: