DBA Data[Home] [Help]

APPS.OKC_CURRENCY_API dependencies on OKX_SET_OF_BOOKS_V

Line 32: from okx_set_of_books_v gl,

28: bug# 5030628
29:
30: select gl.currency_code
31: into l_curr_code
32: from okx_set_of_books_v gl,
33: okx_organization_defs_v ou
34: where ou.id1 = l_org_id
35: and ou.organization_type = 'OPERATING_UNIT'
36: and ou.information_type = 'Operating Unit Information'

Line 78: from okx_set_of_books_v

74: BEGIN
75:
76: select currency_code
77: into l_curr_code
78: from okx_set_of_books_v
79: where set_of_books_id = p_sob_id;
80:
81: Return l_curr_code;
82: EXCEPTION

Line 166: okx_set_of_books_v gl

162:
163: select gl.name
164: into l_sob_name
165: from okx_organization_defs_v ou,
166: okx_set_of_books_v gl
167: where ou.id1 = l_org_id
168: and ou.organization_type = 'OPERATING_UNIT'
169: and ou.information_type = 'Operating Unit Information'
170: and gl.set_of_books_id = ou.set_of_books_id;