DBA Data[Home] [Help]

APPS.RA_CUST_TRX_LINE_GL_DIST_BRI dependencies on ARP_GLOBAL

Line 34: /*Moved this to the package ARP_GLOBAL, bug 3411026

30: /* Posted records can only be deleted when doing archive and purge*/
31:
32: IF DELETING OR UPDATING THEN
33:
34: /*Moved this to the package ARP_GLOBAL, bug 3411026
35:
36: IF l_conc_program_id IS NOT NULL THEN
37: BEGIN
38: SELECT concurrent_program_name

Line 50: l_conc_name := ARP_GLOBAL.conc_program_name;

46: l_conc_name := 'NONE';
47: END;
48: END IF; */
49:
50: l_conc_name := ARP_GLOBAL.conc_program_name;
51:
52: IF NVL(l_conc_name,'NONE') not in ( 'ARPURGE' , 'ARARCPUR', 'ARGLTP' )
53: THEN
54: IF (DELETING) OR

Line 71: NOT arp_global.g_allow_datafix THEN

67: THEN
68: IF :old.posting_control_id <> -3
69: and :old.posting_control_id <> -600 and
70: /* Bug 3146233 : added code to check for global variable g_allow_datafix */
71: NOT arp_global.g_allow_datafix THEN
72: raise delete_error;
73: END IF;
74: END IF;
75: END IF ;