DBA Data[Home] [Help]

APPS.FND_APP_SERVER_PKG dependencies on FND_CONCURRENT

Line 272: ** FND_CONCURRENT.REGISTER_NODE.

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: (
276: p_server_id IN OUT NOCOPY VARCHAR2,

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

318: WHERE server_address = p_address;
319:
320: -- If the current node_name is not a fully qualified hostname
321: IF INSTR(curr_node_name, '.') = 0 THEN
322: -- Insert the new node using fnd_concurrent.register_node
323: FND_CONCURRENT.REGISTER_NODE(
324: name => l_node_name,
325: platform_id => to_number(l_platform_code),
326: forms_tier => p_support_forms,

Line 323: FND_CONCURRENT.REGISTER_NODE(

319:
320: -- If the current node_name is not a fully qualified hostname
321: IF INSTR(curr_node_name, '.') = 0 THEN
322: -- Insert the new node using fnd_concurrent.register_node
323: FND_CONCURRENT.REGISTER_NODE(
324: name => l_node_name,
325: platform_id => to_number(l_platform_code),
326: forms_tier => p_support_forms,
327: cp_tier => p_support_cp,

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

346: INTO kount
347: FROM fnd_nodes
348: WHERE UPPER(node_name) = l_node_name;
349:
350: -- Since fnd_concurrent.register_node() does not handle
351: -- the hostname at this time, it will be manually inserted
352: -- using the update_server API IF the node was properly
353: -- inserted using fnd_concurrent.register_node().
354: IF kount > 0 THEN

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

349:
350: -- Since fnd_concurrent.register_node() does not handle
351: -- the hostname at this time, it will be manually inserted
352: -- using the update_server API IF the node was properly
353: -- inserted using fnd_concurrent.register_node().
354: IF kount > 0 THEN
355: -- If webhost was provided.
356: IF (p_webhost IS NOT NULL) THEN
357: update_server(p_server_id, p_address, p_description, p_webhost);

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

378: l_node_name := UPPER(SUBSTR(p_node_name, 0,
379: INSTR(p_node_name, '.') - 1));
380: END IF;
381:
382: -- Insert the node using fnd_concurrent.register_node
383: FND_CONCURRENT.REGISTER_NODE(
384: name => l_node_name,
385: platform_id => to_number(l_platform_code),
386: forms_tier => p_support_forms,

Line 383: FND_CONCURRENT.REGISTER_NODE(

379: INSTR(p_node_name, '.') - 1));
380: END IF;
381:
382: -- Insert the node using fnd_concurrent.register_node
383: FND_CONCURRENT.REGISTER_NODE(
384: name => l_node_name,
385: platform_id => to_number(l_platform_code),
386: forms_tier => p_support_forms,
387: cp_tier => p_support_cp,

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

397: INTO kount
398: FROM fnd_nodes
399: WHERE UPPER(node_name) = l_node_name;
400:
401: -- Since fnd_concurrent.register_node() does not handle the hostname
402: -- at this time, it will be manually inserted using the
403: -- update_server API IF the node was properly inserted using
404: -- fnd_concurrent.register_node().
405: IF kount > 0 THEN

Line 404: -- fnd_concurrent.register_node().

400:
401: -- Since fnd_concurrent.register_node() does not handle the hostname
402: -- at this time, it will be manually inserted using the
403: -- update_server API IF the node was properly inserted using
404: -- fnd_concurrent.register_node().
405: IF kount > 0 THEN
406: -- If webhost was provided, update only the servers, not desktop
407: -- nodes.
408: IF (p_webhost IS NOT NULL) AND (l_platform_code <> '100000') THEN

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

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
417: -- calling FND_CONCURRENT.REGISTER_NODE(), kount should still be
418: -- > 0.

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

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
417: -- calling FND_CONCURRENT.REGISTER_NODE(), kount should still be
418: -- > 0.
419: RAISE no_data_found;
420: END IF;
421: END IF; -- kount > 0

Line 708: -- Action: register desktop_node using FND_CONCURRENT.REGISTER_NODE

704: ELSE
705:
706: -- Case 1. node_name does not exist in FND_NODES
707: -- and server_address does not exist or is null.
708: -- Action: register desktop_node using FND_CONCURRENT.REGISTER_NODE
709: IF (NOT node_name_exists(l_node_name) AND ((p_address IS NOT NULL AND
710: NOT server_address_exists(p_address)) OR p_address IS NULL)) THEN
711: -- Insert the node using fnd_concurrent.register_node
712: FND_CONCURRENT.REGISTER_NODE(

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

707: -- and server_address does not exist or is null.
708: -- Action: register desktop_node using FND_CONCURRENT.REGISTER_NODE
709: IF (NOT node_name_exists(l_node_name) AND ((p_address IS NOT NULL AND
710: NOT server_address_exists(p_address)) OR p_address IS NULL)) THEN
711: -- Insert the node using fnd_concurrent.register_node
712: FND_CONCURRENT.REGISTER_NODE(
713: name => l_node_name,
714: platform_id => to_number(get_platform_code('Others')),
715: forms_tier => 'N',

Line 712: FND_CONCURRENT.REGISTER_NODE(

708: -- Action: register desktop_node using FND_CONCURRENT.REGISTER_NODE
709: IF (NOT node_name_exists(l_node_name) AND ((p_address IS NOT NULL AND
710: NOT server_address_exists(p_address)) OR p_address IS NULL)) THEN
711: -- Insert the node using fnd_concurrent.register_node
712: FND_CONCURRENT.REGISTER_NODE(
713: name => l_node_name,
714: platform_id => to_number(get_platform_code('Others')),
715: forms_tier => 'N',
716: cp_tier => 'N',