DBA Data[Home] [Help]

APPS.AP_APXINVTC_XMLP_PKG dependencies on GL_SETS_OF_BOOKS

Line 284: l_chart_of_accounts_id gl_sets_of_books.chart_of_accounts_id%TYPE;

280: END; return (TRUE);
281: end;
282:
283: FUNCTION get_company_name RETURN BOOLEAN IS
284: l_chart_of_accounts_id gl_sets_of_books.chart_of_accounts_id%TYPE;
285: l_name gl_sets_of_books.name%TYPE;
286: l_sob_id number;
287: BEGIN
288:

Line 285: l_name gl_sets_of_books.name%TYPE;

281: end;
282:
283: FUNCTION get_company_name RETURN BOOLEAN IS
284: l_chart_of_accounts_id gl_sets_of_books.chart_of_accounts_id%TYPE;
285: l_name gl_sets_of_books.name%TYPE;
286: l_sob_id number;
287: BEGIN
288:
289: if P_SET_OF_BOOKS_ID is not null then

Line 295: FROM gl_sets_of_books

291: SELECT name,
292: chart_of_accounts_id
293: INTO l_name,
294: l_chart_of_accounts_id
295: FROM gl_sets_of_books
296: WHERE set_of_books_id = l_sob_id;
297:
298: c_company_name_header := l_name;
299: c_chart_of_accounts_id := l_chart_of_accounts_id;