DBA Data[Home] [Help]

APPS.ECX_DOCUMENT dependencies on ECX_HUB_USERS

Line 436: from ecx_hub_users */

432: end;
433: -- Bug #2449729
434: /* If the connection type is not DIRECT get the protocol_type,
435: protocol_address from ecx_hubs and username,password
436: from ecx_hub_users */
437: if (i_connection_type <> 'DIRECT')
438: then
439: begin
440: select protocol_type,

Line 455: from ecx_hub_users

451: password
452: into i_source_code,
453: i_username,
454: i_password
455: from ecx_hub_users
456: where hub_user_id = i_hub_user_id;
457:
458: end if;
459:

Line 1912: from ecx_hub_users */

1908: close c_tp_details;
1909:
1910: /* If the connection type is not DIRECT get the protocol_type,
1911: protocol_address from ecx_hubs and username,password
1912: from ecx_hub_users */
1913: if ((not l_use_old_info) AND (l_connection_type <> 'DIRECT')) then
1914: begin
1915: select protocol_type,
1916: protocol_address

Line 1927: from ecx_hub_users

1923: select username,
1924: password
1925: into l_username,
1926: l_password
1927: from ecx_hub_users
1928: where hub_user_id = l_hub_user_id;
1929: end if;
1930:
1931: exception