DBA Data[Home] [Help]

APPS.AP_APXPAYSC_XMLP_PKG dependencies on GL_SETS_OF_BOOKS

Line 269: l_chart_of_accounts_id gl_sets_of_books.chart_of_accounts_id%TYPE;

265: END; return (TRUE);
266: end;
267:
268: FUNCTION get_company_name RETURN BOOLEAN IS
269: l_chart_of_accounts_id gl_sets_of_books.chart_of_accounts_id%TYPE;
270: l_name gl_sets_of_books.name%TYPE;
271: l_sob_id number;
272: BEGIN
273:

Line 270: l_name gl_sets_of_books.name%TYPE;

266: end;
267:
268: FUNCTION get_company_name RETURN BOOLEAN IS
269: l_chart_of_accounts_id gl_sets_of_books.chart_of_accounts_id%TYPE;
270: l_name gl_sets_of_books.name%TYPE;
271: l_sob_id number;
272: BEGIN
273:
274: if P_SET_OF_BOOKS_ID is not null then

Line 280: FROM gl_sets_of_books

276: SELECT name,
277: chart_of_accounts_id
278: INTO l_name,
279: l_chart_of_accounts_id
280: FROM gl_sets_of_books
281: WHERE set_of_books_id = l_sob_id;
282:
283: c_company_name_header := l_name;
284: c_chart_of_accounts_id := l_chart_of_accounts_id;