DBA Data[Home] [Help]

APPS.FND_APP_SERVER_PKG dependencies on FND_CONCURRENT

Line 112: ** FND_CONCURRENT.REGISTER_NODE.

108: ** create_server_id must be called to generate a valid id prior to
109: ** calling this api. This is called by AdminAppServer.changeServerInDB().
110: **
111: ** FND_APP_SERVER_PKG.INSERT_SERVER is a wrapper to
112: ** FND_CONCURRENT.REGISTER_NODE.
113: */
114: PROCEDURE insert_server (
115: p_server_id IN VARCHAR2,
116: p_address IN VARCHAR2,

Line 159: -- Insert the node using fnd_concurrent.register_node

155: IF kount > 0 THEN
156: update_desktop_server(l_node_name, p_server_id,p_address,
157: p_description);
158: ELSE
159: -- Insert the node using fnd_concurrent.register_node
160: FND_CONCURRENT.REGISTER_NODE(
161: name => l_node_name,
162: platform_id => to_number(l_platform_code),
163: forms_tier => p_support_forms,

Line 160: FND_CONCURRENT.REGISTER_NODE(

156: update_desktop_server(l_node_name, p_server_id,p_address,
157: p_description);
158: ELSE
159: -- Insert the node using fnd_concurrent.register_node
160: FND_CONCURRENT.REGISTER_NODE(
161: name => l_node_name,
162: platform_id => to_number(l_platform_code),
163: forms_tier => p_support_forms,
164: cp_tier => p_support_cp,

Line 202: -- Insert the new node using fnd_concurrent.register_node

198:
199: -- If the current node_name is not a fully qualified hostname
200: IF INSTR(curr_node_name, '.') = 0 THEN
201:
202: -- Insert the new node using fnd_concurrent.register_node
203: FND_CONCURRENT.REGISTER_NODE(
204: name => l_node_name,
205: platform_id => to_number(l_platform_code),
206: forms_tier => p_support_forms,

Line 203: FND_CONCURRENT.REGISTER_NODE(

199: -- If the current node_name is not a fully qualified hostname
200: IF INSTR(curr_node_name, '.') = 0 THEN
201:
202: -- Insert the new node using fnd_concurrent.register_node
203: FND_CONCURRENT.REGISTER_NODE(
204: name => l_node_name,
205: platform_id => to_number(l_platform_code),
206: forms_tier => p_support_forms,
207: cp_tier => p_support_cp,

Line 229: -- Since fnd_concurrent.register_node() does not handle

225: select count(*) into kount
226: from fnd_nodes
227: where UPPER(node_name) = l_node_name;
228:
229: -- Since fnd_concurrent.register_node() does not handle
230: -- the hostname at this time, it will be manually inserted
231: -- using the update_server API IF the node was properly
232: -- inserted using fnd_concurrent.register_node().
233: if kount > 0 then

Line 232: -- inserted using fnd_concurrent.register_node().

228:
229: -- Since fnd_concurrent.register_node() does not handle
230: -- the hostname at this time, it will be manually inserted
231: -- using the update_server API IF the node was properly
232: -- inserted using fnd_concurrent.register_node().
233: if kount > 0 then
234: -- If webhost was provided.
235: if (p_webhost is not null) then
236: update_server(p_server_id, p_address, p_description,

Line 261: -- Insert the node using fnd_concurrent.register_node

257: -- UPPERCASE.
258: l_node_name := UPPER(SUBSTR(p_node_name, 0,
259: INSTR(p_node_name, '.') - 1));
260: end if;
261: -- Insert the node using fnd_concurrent.register_node
262: FND_CONCURRENT.REGISTER_NODE(
263: name => l_node_name,
264: platform_id => to_number(l_platform_code),
265: forms_tier => p_support_forms,

Line 262: FND_CONCURRENT.REGISTER_NODE(

258: l_node_name := UPPER(SUBSTR(p_node_name, 0,
259: INSTR(p_node_name, '.') - 1));
260: end if;
261: -- Insert the node using fnd_concurrent.register_node
262: FND_CONCURRENT.REGISTER_NODE(
263: name => l_node_name,
264: platform_id => to_number(l_platform_code),
265: forms_tier => p_support_forms,
266: cp_tier => p_support_cp,

Line 279: -- Since fnd_concurrent.register_node() does not handle the hostname

275: select count(*) into kount
276: from fnd_nodes
277: where UPPER(node_name) = l_node_name;
278:
279: -- Since fnd_concurrent.register_node() does not handle the hostname
280: -- at this time, it will be manually inserted using the
281: -- update_server API IF the node was properly inserted using
282: -- fnd_concurrent.register_node().
283: IF kount > 0 THEN

Line 282: -- fnd_concurrent.register_node().

278:
279: -- Since fnd_concurrent.register_node() does not handle the hostname
280: -- at this time, it will be manually inserted using the
281: -- update_server API IF the node was properly inserted using
282: -- fnd_concurrent.register_node().
283: IF kount > 0 THEN
284: -- If webhost was provided, update only the servers, not desktop
285: -- nodes.
286: IF (p_webhost IS NOT NULL) and (l_platform_code <> '100000') THEN

Line 293: -- If for any reason that the FND_CONCURRENT.REGISTER_NODE() fails

289: END IF;
290: ELSE -- kount = 0
291: -- Bug 5279502: DESKTOP NODE SUPPORT IN FND_APP_SERVER_PKG
292: -- Added this for better error handling.
293: -- If for any reason that the FND_CONCURRENT.REGISTER_NODE() fails
294: -- to add the node, no_data_found should be raised to signal the
295: -- failure to add the node_name. If the node existed prior to
296: -- calling FND_CONCURRENT.REGISTER_NODE(), kount should still be
297: -- >0.

Line 296: -- calling FND_CONCURRENT.REGISTER_NODE(), kount should still be

292: -- Added this for better error handling.
293: -- If for any reason that the FND_CONCURRENT.REGISTER_NODE() fails
294: -- to add the node, no_data_found should be raised to signal the
295: -- failure to add the node_name. If the node existed prior to
296: -- calling FND_CONCURRENT.REGISTER_NODE(), kount should still be
297: -- >0.
298: RAISE no_data_found;
299: END IF;
300: