DBA Data[Home] [Help]

APPS.AR_ARXINREV_XMLP_PKG dependencies on GL_SETS_OF_BOOKS

Line 32: from gl_sets_of_books gl, ar_system_parameters p

28: if P_CHART_OF_ACCOUNTS_ID is null
29: then
30: select to_char(gl.chart_of_accounts_id)
31: into P_CHART_OF_ACCOUNTS_ID
32: from gl_sets_of_books gl, ar_system_parameters p
33: where gl.set_of_books_id = p.set_of_books_id;
34: end if;
35: IF (p_debug_switch = 'Y') THEN
36: /*SRW.MESSAGE('3','After Selecting Chart of Accounts Id');*/null;

Line 40: from gl_sets_of_books gl, ar_system_parameters ar

36: /*SRW.MESSAGE('3','After Selecting Chart of Accounts Id');*/null;
37: END IF;
38: select currency_code
39: into P_CURRENCY
40: from gl_sets_of_books gl, ar_system_parameters ar
41: where ar.set_of_books_id = gl.set_of_books_id;
42: IF (p_debug_switch = 'Y') THEN
43: /*SRW.MESSAGE('4','After Selecting Currency Code');*/null;
44: END IF;

Line 61: from gl_sets_of_books gl, ar_system_parameters ar

57: /*SRW.MESSAGE('6','After Selecting Minimum Accountable Unit');*/null;
58: END IF;
59: select gl.name, gl.set_of_books_id, ar.org_id
60: into P_NAME, P_SET_OF_BOOKS_ID,acc_org_id
61: from gl_sets_of_books gl, ar_system_parameters ar
62: where gl.set_of_books_id = ar.set_of_books_id;
63: IF (p_debug_switch = 'Y') THEN
64: /*SRW.MESSAGE('7','After Selecting Set Of Books Id, Company Name');*/null;
65: END IF;