DBA Data[Home] [Help]

APPS.AP_APXT7INE_XMLP_PKG dependencies on GL_SETS_OF_BOOKS

Line 220: l_chart_of_accounts_id gl_sets_of_books.chart_of_accounts_id%TYPE;

216: END; return (TRUE);
217: end;
218:
219: FUNCTION get_company_name RETURN BOOLEAN IS
220: l_chart_of_accounts_id gl_sets_of_books.chart_of_accounts_id%TYPE;
221: l_name gl_sets_of_books.name%TYPE;
222: l_sob_id number;
223: BEGIN
224:

Line 221: l_name gl_sets_of_books.name%TYPE;

217: end;
218:
219: FUNCTION get_company_name RETURN BOOLEAN IS
220: l_chart_of_accounts_id gl_sets_of_books.chart_of_accounts_id%TYPE;
221: l_name gl_sets_of_books.name%TYPE;
222: l_sob_id number;
223: BEGIN
224:
225: if P_SET_OF_BOOKS_ID is not null then

Line 231: FROM gl_sets_of_books

227: SELECT name,
228: chart_of_accounts_id
229: INTO l_name,
230: l_chart_of_accounts_id
231: FROM gl_sets_of_books
232: WHERE set_of_books_id = l_sob_id;
233:
234: c_company_name_header := l_name;
235: c_chart_of_accounts_id := l_chart_of_accounts_id;

Line 274: gl_sets_of_books gl

270:
271: SELECT fnd.application_column_name
272: INTO p_balancing_segment_column
273: FROM fnd_segment_attribute_values fnd,
274: gl_sets_of_books gl
275: WHERE fnd.attribute_value='Y'
276: AND fnd.segment_attribute_type = 'GL_BALANCING'
277: AND fnd.id_flex_num = gl.chart_of_accounts_id
278: AND fnd.id_flex_code = 'GL#'