DBA Data[Home] [Help]

APPS.HZ_PURGE dependencies on FND_APPLICATION

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

1296:
1297: FUNCTION get_app_name(appid NUMBER) RETURN VARCHAR2 IS
1298: appname VARCHAR2(100);
1299: cursor app_name(app_id NUMBER) IS
1300: Select application_short_name from fnd_application where application_id=app_id;
1301: BEGIN
1302: open app_name(appid);
1303: fetch app_name into appname;
1304: close app_name;