DBA Data[Home] [Help]

APPS.AD_TSPACE_UTIL dependencies on FND_APPLICATION

Line 26: FROM fnd_application

22:
23: begin
24: SELECT application_id
25: INTO l_appl_id
26: FROM fnd_application
27: WHERE UPPER(application_short_name) = UPPER(x_product_short_name);
28:
29: return(l_appl_id);
30:

Line 35: ||'" is not registered in FND_APPLICATION. ');

31: exception
32: when no_data_found then
33: raise_application_error(-20001,
34: 'Application short name "'||UPPER(x_product_short_name)
35: ||'" is not registered in FND_APPLICATION. ');
36:
37: end;
38:
39: function get_product_short_name(x_appl_id in number) return varchar2

Line 46: FROM fnd_application

42:
43: begin
44: SELECT application_short_name
45: INTO l_product_short_name
46: FROM fnd_application
47: WHERE application_id = x_appl_id;
48:
49: return(l_product_short_name);
50:

Line 55: ||'" is not registered in FND_APPLICATION. ');

51: exception
52: when no_data_found then
53: raise_application_error(-20001,
54: 'Application ID "'|| x_appl_id
55: ||'" is not registered in FND_APPLICATION. ');
56:
57: end get_product_short_name;
58:
59: