DBA Data[Home] [Help]

APPS.AR_RAAPI_UTIL dependencies on STANDARD

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 120: /* Bug 5547989 - Pass org id as a parameter to arp_standard.init_standard to set the correct org id */

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:
124: END Initialize_Globals;

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 562: AND nvl(srp.org_id, -99) = nvl(arp_standard.sysparm.org_id, -99)

558: AND rrl.delete_flag = 'N'
559: AND nvl(rrl.end_date_active, to_date('01/01/4713','MM/DD/RRRR')) >= l_group_start_date
560: AND rrl.start_date_active <= l_group_end_date
561: AND srp.salesrep_id = g_to_salesrep_id
562: AND nvl(srp.org_id, -99) = nvl(arp_standard.sysparm.org_id, -99)
563: AND l_group_end_date BETWEEN grp.start_date_active AND nvl(grp.end_date_active, to_date('01/01/4713','MM/DD/RRRR'))
564: AND grp.group_id = p_salesgroup_id
565: UNION ALL
566: SELECT group_id

Line 1587: IF ARP_STANDARD.validate_and_default_gl_date

1583: -- changed p_allow_not_open_flag from 'N' to 'Y'
1584: --
1585: l_gl_date := NVL(p_gl_date,SYSDATE);
1586: l_valid_gl_date := NULL;
1587: IF ARP_STANDARD.validate_and_default_gl_date
1588: (gl_date => p_gl_date,
1589: trx_date => g_trx_date,
1590: validation_date1 => NULL,
1591: validation_date2 => NULL,

Line 2529: IF ARP_STANDARD.validate_and_default_gl_date

2525: arp_util.debug('AR_RAAPI_UTIL.Revalidate_GL_Dates()+');
2526: END IF;
2527: l_change_count := 0;
2528: FOR c1 IN c_gl_date LOOP
2529: IF ARP_STANDARD.validate_and_default_gl_date
2530: (gl_date => c1.gl_date,
2531: trx_date => g_trx_date,
2532: validation_date1 => NULL,
2533: validation_date2 => NULL,