DBA Data[Home] [Help]

APPS.FND_APP_SERVER_PKG dependencies on FND_APP_SERVER_PKG

Line 1: PACKAGE BODY fnd_app_server_pkg AS

1: PACKAGE BODY fnd_app_server_pkg AS
2: /* $Header: AFSCASRB.pls 120.11 2010/05/21 17:38:28 pdeluna ship $ */
3:
4: /* create_server_id
5: **

Line 46: FND_APP_SERVER_PKG.get_platform_code('Solaris'));

42: ** Testcase to test API:
43: set serverout on
44: begin
45: dbms_output.put_line('Solaris = '||
46: FND_APP_SERVER_PKG.get_platform_code('Solaris'));
47: dbms_output.put_line('HP-UX = '||
48: FND_APP_SERVER_PKG.get_platform_code('HP-UX'));
49: dbms_output.put_line('UNIX Alpha = '||
50: FND_APP_SERVER_PKG.get_platform_code('UNIX Alpha'));

Line 48: FND_APP_SERVER_PKG.get_platform_code('HP-UX'));

44: begin
45: dbms_output.put_line('Solaris = '||
46: FND_APP_SERVER_PKG.get_platform_code('Solaris'));
47: dbms_output.put_line('HP-UX = '||
48: FND_APP_SERVER_PKG.get_platform_code('HP-UX'));
49: dbms_output.put_line('UNIX Alpha = '||
50: FND_APP_SERVER_PKG.get_platform_code('UNIX Alpha'));
51: dbms_output.put_line('IBM AIX = '||
52: FND_APP_SERVER_PKG.get_platform_code('IBM AIX'));

Line 50: FND_APP_SERVER_PKG.get_platform_code('UNIX Alpha'));

46: FND_APP_SERVER_PKG.get_platform_code('Solaris'));
47: dbms_output.put_line('HP-UX = '||
48: FND_APP_SERVER_PKG.get_platform_code('HP-UX'));
49: dbms_output.put_line('UNIX Alpha = '||
50: FND_APP_SERVER_PKG.get_platform_code('UNIX Alpha'));
51: dbms_output.put_line('IBM AIX = '||
52: FND_APP_SERVER_PKG.get_platform_code('IBM AIX'));
53: dbms_output.put_line('Intel_Solaris = '||
54: FND_APP_SERVER_PKG.get_platform_code('Intel_Solaris'));

Line 52: FND_APP_SERVER_PKG.get_platform_code('IBM AIX'));

48: FND_APP_SERVER_PKG.get_platform_code('HP-UX'));
49: dbms_output.put_line('UNIX Alpha = '||
50: FND_APP_SERVER_PKG.get_platform_code('UNIX Alpha'));
51: dbms_output.put_line('IBM AIX = '||
52: FND_APP_SERVER_PKG.get_platform_code('IBM AIX'));
53: dbms_output.put_line('Intel_Solaris = '||
54: FND_APP_SERVER_PKG.get_platform_code('Intel_Solaris'));
55: dbms_output.put_line('Linux = '||
56: FND_APP_SERVER_PKG.get_platform_code('Linux'));

Line 54: FND_APP_SERVER_PKG.get_platform_code('Intel_Solaris'));

50: FND_APP_SERVER_PKG.get_platform_code('UNIX Alpha'));
51: dbms_output.put_line('IBM AIX = '||
52: FND_APP_SERVER_PKG.get_platform_code('IBM AIX'));
53: dbms_output.put_line('Intel_Solaris = '||
54: FND_APP_SERVER_PKG.get_platform_code('Intel_Solaris'));
55: dbms_output.put_line('Linux = '||
56: FND_APP_SERVER_PKG.get_platform_code('Linux'));
57: dbms_output.put_line('Windows NT = '||
58: FND_APP_SERVER_PKG.get_platform_code('Windows NT'));

Line 56: FND_APP_SERVER_PKG.get_platform_code('Linux'));

52: FND_APP_SERVER_PKG.get_platform_code('IBM AIX'));
53: dbms_output.put_line('Intel_Solaris = '||
54: FND_APP_SERVER_PKG.get_platform_code('Intel_Solaris'));
55: dbms_output.put_line('Linux = '||
56: FND_APP_SERVER_PKG.get_platform_code('Linux'));
57: dbms_output.put_line('Windows NT = '||
58: FND_APP_SERVER_PKG.get_platform_code('Windows NT'));
59: dbms_output.put_line('Others = '||
60: FND_APP_SERVER_PKG.get_platform_code('Others'));

Line 58: FND_APP_SERVER_PKG.get_platform_code('Windows NT'));

54: FND_APP_SERVER_PKG.get_platform_code('Intel_Solaris'));
55: dbms_output.put_line('Linux = '||
56: FND_APP_SERVER_PKG.get_platform_code('Linux'));
57: dbms_output.put_line('Windows NT = '||
58: FND_APP_SERVER_PKG.get_platform_code('Windows NT'));
59: dbms_output.put_line('Others = '||
60: FND_APP_SERVER_PKG.get_platform_code('Others'));
61: -- R12 only
62: dbms_output.put_line('Others = '||

Line 60: FND_APP_SERVER_PKG.get_platform_code('Others'));

56: FND_APP_SERVER_PKG.get_platform_code('Linux'));
57: dbms_output.put_line('Windows NT = '||
58: FND_APP_SERVER_PKG.get_platform_code('Windows NT'));
59: dbms_output.put_line('Others = '||
60: FND_APP_SERVER_PKG.get_platform_code('Others'));
61: -- R12 only
62: dbms_output.put_line('Others = '||
63: FND_APP_SERVER_PKG.get_platform_code('LINUX_X86-64'));
64: end;

Line 63: FND_APP_SERVER_PKG.get_platform_code('LINUX_X86-64'));

59: dbms_output.put_line('Others = '||
60: FND_APP_SERVER_PKG.get_platform_code('Others'));
61: -- R12 only
62: dbms_output.put_line('Others = '||
63: FND_APP_SERVER_PKG.get_platform_code('LINUX_X86-64'));
64: end;
65:
66: Output should be similar to this:
67:

Line 271: ** FND_APP_SERVER_PKG.INSERT_SERVER is a wrapper to

267: ** Inserts information for a new Application Server. The function
268: ** create_server_id must be called to generate a valid id prior to
269: ** calling this api. This is called by AdminAppServer.changeServerInDB().
270: **
271: ** FND_APP_SERVER_PKG.INSERT_SERVER is a wrapper to
272: ** FND_CONCURRENT.REGISTER_NODE.
273: */
274: PROCEDURE insert_server
275: (

Line 412: -- Bug 5279502: DESKTOP NODE SUPPORT IN FND_APP_SERVER_PKG

408: IF (p_webhost IS NOT NULL) AND (l_platform_code <> '100000') THEN
409: update_server(p_server_id, p_address, p_description, p_webhost);
410: END IF;
411: ELSE -- kount = 0
412: -- Bug 5279502: DESKTOP NODE SUPPORT IN FND_APP_SERVER_PKG
413: -- Added this for better error handling.
414: -- If for any reason that the FND_CONCURRENT.REGISTER_NODE() fails
415: -- to add the node, no_data_found should be raised to signal the
416: -- failure to add the node_name. If the node existed prior to

Line 470: /* Bug 5279502: DESKTOP NODE SUPPORT IN FND_APP_SERVER_PKG */

466: l_platform VARCHAR2(30);
467: l_platform2 VARCHAR2(30);
468:
469: BEGIN
470: /* Bug 5279502: DESKTOP NODE SUPPORT IN FND_APP_SERVER_PKG */
471: -- The API should not allow updates of Desktop Nodes. This query obtains
472: -- the value of columns that determines a Desktop Node.
473:
474: SELECT NODE_NAME,

Line 531: -- only AdminAppServer calls FND_APP_SERVER_PKG, then if a platform is

527: WHERE server_address = p_address;
528: END IF;
529:
530: -- Added for Bug 3736714. Since AdminAppServer derives the platform and
531: -- only AdminAppServer calls FND_APP_SERVER_PKG, then if a platform is
532: -- passed in, the platform_code is likely correct and the platform_code
533: -- for the node needs to be updated.
534: IF (p_platform IS NOT NULL) THEN
535: l_platform2 := get_platform_code(p_platform);

Line 696: /* Bug 5279502: DESKTOP NODE SUPPORT IN FND_APP_SERVER_PKG */

692: l_node_name_from_address fnd_nodes.node_name%TYPE := NULL;
693: l_server_id fnd_nodes.server_id%TYPE := NULL;
694: l_server_address fnd_nodes.server_address%TYPE;
695: BEGIN
696: /* Bug 5279502: DESKTOP NODE SUPPORT IN FND_APP_SERVER_PKG */
697: /*===============+
698: | Desktop Node |
699: ================*/
700: -- If the node_name is used by a desktop node, then just update the

Line 720: FND_APP_SERVER_PKG.CREATE_SERVER_ID),

716: cp_tier => 'N',
717: web_tier => 'N',
718: admin_tier => 'N',
719: p_server_id => NVL(insert_desktop_server.p_server_id,
720: FND_APP_SERVER_PKG.CREATE_SERVER_ID),
721: p_address => insert_desktop_server.p_address,
722: p_description => NVL(insert_desktop_server.p_description,
723: 'Desktop Node'),
724: db_tier => 'N');

Line 912: END fnd_app_server_pkg;

908: OR SERVER_ADDRESS IS NULL);
909: END IF;
910: END delete_desktop_server;
911:
912: END fnd_app_server_pkg;