DBA Data[Home] [Help]

APPS.HZ_PURGE dependencies on FND_APPLICATION

Line 1283: Select application_short_name from fnd_application where application_id=app_id;

1279:
1280: FUNCTION get_app_name(appid NUMBER) RETURN VARCHAR2 IS
1281: appname VARCHAR2(100);
1282: cursor app_name(app_id NUMBER) IS
1283: Select application_short_name from fnd_application where application_id=app_id;
1284: BEGIN
1285: open app_name(appid);
1286: fetch app_name into appname;
1287: close app_name;