DBA Data[Home] [Help]

APPS.AP_APXT7VEE_XMLP_PKG dependencies on GL_SETS_OF_BOOKS

Line 277: l_chart_of_accounts_id gl_sets_of_books.chart_of_accounts_id%TYPE;

273: END; return (TRUE);
274: end;
275:
276: FUNCTION get_company_name RETURN BOOLEAN IS
277: l_chart_of_accounts_id gl_sets_of_books.chart_of_accounts_id%TYPE;
278: l_name gl_sets_of_books.name%TYPE;
279: l_sob_id number;
280: BEGIN
281:

Line 278: l_name gl_sets_of_books.name%TYPE;

274: end;
275:
276: FUNCTION get_company_name RETURN BOOLEAN IS
277: l_chart_of_accounts_id gl_sets_of_books.chart_of_accounts_id%TYPE;
278: l_name gl_sets_of_books.name%TYPE;
279: l_sob_id number;
280: BEGIN
281:
282: if P_SET_OF_BOOKS_ID is not null then

Line 288: FROM gl_sets_of_books

284: SELECT name,
285: chart_of_accounts_id
286: INTO l_name,
287: l_chart_of_accounts_id
288: FROM gl_sets_of_books
289: WHERE set_of_books_id = l_sob_id;
290:
291: c_company_name_header := l_name;
292: c_chart_of_accounts_id := l_chart_of_accounts_id;

Line 334: gl_sets_of_books gl

330:
331: SELECT fnd.application_column_name
332: INTO c_balancing_segment
333: FROM fnd_segment_attribute_values fnd,
334: gl_sets_of_books gl
335: WHERE fnd.attribute_value = 'Y'
336: AND fnd.segment_attribute_type = 'GL_BALANCING'
337: AND fnd.id_flex_num = gl.chart_of_accounts_id
338: AND fnd.id_flex_code = 'GL#'