DBA Data[Home] [Help]

APPS.FV_UTILITY dependencies on GL_LEDGERS_PUBLIC_V

Line 176: l_ledger_name gl_ledgers_public_v.name%type;

172: p_coa_id out nocopy varchar2,
173: p_currency out nocopy varchar2,
174: p_status out nocopy varchar2) is
175:
176: l_ledger_name gl_ledgers_public_v.name%type;
177:
178: BEGIN
179:
180: iF (p_org_id IS NOT NULL) THEN

Line 186: from gl_ledgers_public_v

182: mo_utils.get_ledger_info(p_org_id,p_ledger_id,l_ledger_name);
183:
184: if (p_ledger_id is not null) then
185: select chart_of_accounts_id,currency_code into p_coa_id , p_currency
186: from gl_ledgers_public_v
187: where ledger_id = p_ledger_id;
188: p_status := 0;
189: End if;
190: else