DBA Data[Home] [Help]

APPS.AR_RAAPI_UTIL dependencies on ARP_GLOBAL

Line 117: /* Bug 3022420 - initialize arp_global and arp_standard globals to ensure

113: g_from_cust_trx_line_id := NULL;
114: g_to_cust_trx_line_id := NULL;
115: g_gl_date := NULL;
116:
117: /* Bug 3022420 - initialize arp_global and arp_standard globals to ensure
118: the correct set of books is accessed */
119: arp_global.init_global;
120: /* Bug 5547989 - Pass org id as a parameter to arp_standard.init_standard to set the correct org id */
121: arp_standard.init_standard(arp_global.sysparam.org_id);

Line 119: arp_global.init_global;

115: g_gl_date := NULL;
116:
117: /* Bug 3022420 - initialize arp_global and arp_standard globals to ensure
118: the correct set of books is accessed */
119: arp_global.init_global;
120: /* Bug 5547989 - Pass org id as a parameter to arp_standard.init_standard to set the correct org id */
121: arp_standard.init_standard(arp_global.sysparam.org_id);
122: /* Change for Bug 5547989 ends */
123:

Line 121: arp_standard.init_standard(arp_global.sysparam.org_id);

117: /* Bug 3022420 - initialize arp_global and arp_standard globals to ensure
118: the correct set of books is accessed */
119: arp_global.init_global;
120: /* Bug 5547989 - Pass org id as a parameter to arp_standard.init_standard to set the correct org id */
121: arp_standard.init_standard(arp_global.sysparam.org_id);
122: /* Change for Bug 5547989 ends */
123:
124: END Initialize_Globals;
125:

Line 1598: p_set_of_books_id => arp_global.sysparam.set_of_books_id,

1594: default_date2 => NULL,
1595: default_date3 => NULL,
1596: p_allow_not_open_flag => 'Y',
1597: p_invoicing_rule_id => g_invoicing_rule_id,
1598: p_set_of_books_id => arp_global.sysparam.set_of_books_id,
1599: p_application_id => AR_RAAPI_UTIL.application_id,
1600: default_gl_date => l_valid_gl_date,
1601: defaulting_rule_used => l_default_rule,
1602: error_message => l_err_mesg)

Line 1804: AND c.set_of_books_id = arp_global.sysparam.set_of_books_id

1800: FROM fnd_segment_attribute_values a ,
1801: fnd_id_flex_segments b ,
1802: gl_sets_of_books c
1803: WHERE a.id_flex_num = c.chart_of_accounts_id
1804: AND c.set_of_books_id = arp_global.sysparam.set_of_books_id
1805: AND a.application_id = 101
1806: AND a.id_flex_code = 'GL#'
1807: AND a.attribute_value = 'Y'
1808: AND a.segment_attribute_type = 'FA_COST_CTR'

Line 1823: ,arp_global.chart_of_accounts_id

1819:
1820: BEGIN
1821: IF NOT fnd_flex_ext.get_segments ('SQLGL'
1822: ,'GL#'
1823: ,arp_global.chart_of_accounts_id
1824: ,p_code_combination_id
1825: ,l_number_of_segs
1826: ,l_segment_array)
1827: THEN

Line 2699: p_set_of_books_id => arp_global.sysparam.set_of_books_id,

2695: default_date2 => NULL,
2696: default_date3 => NULL,
2697: p_allow_not_open_flag => 'Y',
2698: p_invoicing_rule_id => g_invoicing_rule_id,
2699: p_set_of_books_id => arp_global.sysparam.set_of_books_id,
2700: p_application_id => AR_RAAPI_UTIL.application_id,
2701: default_gl_date => l_gl_date,
2702: defaulting_rule_used => l_default_rule,
2703: error_message => l_err_mesg)

Line 2763: AND sob.set_of_books_id = arp_global.sysparam.set_of_books_id

2759: FROM ar_periods p,
2760: gl_sets_of_books sob,
2761: ar_period_types tp
2762: WHERE sob.period_set_name = p.period_set_name
2763: AND sob.set_of_books_id = arp_global.sysparam.set_of_books_id
2764: AND sob.accounted_period_type = p.period_type
2765: AND sob.accounted_period_type = tp.period_type
2766: AND p_start_date BETWEEN p.start_date AND p.end_date;
2767:

Line 2774: AND sob.set_of_books_id = arp_global.sysparam.set_of_books_id

2770: FROM ar_periods p,
2771: gl_sets_of_books sob,
2772: ar_period_types tp
2773: WHERE sob.period_set_name = p.period_set_name
2774: AND sob.set_of_books_id = arp_global.sysparam.set_of_books_id
2775: AND sob.accounted_period_type = p.period_type
2776: AND sob.accounted_period_type = tp.period_type
2777: AND p.new_period_num = p_new_period_num;
2778: