DBA Data[Home] [Help]

APPS.PAYWSDYG_PKG dependencies on FND_APPLICATION

Line 412: fnd_application fa

408: CURSOR get_user(cp_appl IN VARCHAR2) IS
409: SELECT fou.oracle_username
410: FROM fnd_oracle_userid fou,
411: fnd_product_installations fpi,
412: fnd_application fa
413: WHERE fou.oracle_id = fpi.oracle_id
414: AND fpi.application_id = fa.application_id
415: AND fa.application_short_name = cp_appl;
416: --

Line 450: FROM fnd_application fa,

446: --
447: -- Get the application short name from the foundation tables
448: CURSOR get_table(cp_name IN VARCHAR2) IS
449: SELECT fa.application_short_name
450: FROM fnd_application fa,
451: fnd_tables ft
452: WHERE fa.application_id = ft.application_id
453: AND ft.table_name = cp_name;
454: --