DBA Data[Home] [Help]

APPS.ARP_UTIL dependencies on STANDARD

Line 10: arp_standard.enable_debug;

6: -- Debugging functions
7: -----------------------------------------------------------------------------
8: PROCEDURE enable_debug is
9: BEGIN
10: arp_standard.enable_debug;
11: END;
12: --
13: --
14: PROCEDURE enable_debug( buffer_size NUMBER ) is

Line 16: arp_standard.enable_debug( buffer_size );

12: --
13: --
14: PROCEDURE enable_debug( buffer_size NUMBER ) is
15: BEGIN
16: arp_standard.enable_debug( buffer_size );
17: END;
18: --
19: --
20: --

Line 23: arp_standard.disable_debug;

19: --
20: --
21: PROCEDURE disable_debug is
22: BEGIN
23: arp_standard.disable_debug;
24: END;
25: --
26: --
27: --

Line 74: RETURN( arp_standard.functional_amount(amount,currency_code,

70: precision IN NUMBER,
71: min_acc_unit IN NUMBER) RETURN NUMBER IS
72:
73: BEGIN
74: RETURN( arp_standard.functional_amount(amount,currency_code,
75: exchange_rate,
76: precision,
77: min_acc_unit ));
78: END functional_amount;

Line 314: | Modified procedure to use standard functional

310: | MODIFICATION HISTORY |
311: | |
312: | 21-AUG-95 OSTEINME created |
313: | 2/22/1996 H.Kaukovuo Added debug messages to print out NOCOPY parameters
314: | Modified procedure to use standard functional
315: | amount procedure.
316: | Changed procedure to consider p_rate = 1 as
317: | functional currency (was 0 before).
318: | 2/23/1996 H.Kaukovuo Fixed own bug, was returing ORA6512.

Line 715: -- ARP_STANDARD package

711: -- FUNCTION NAME validate_and_default_gl_date
712: --
713: -- DESCRIPTION
714: -- This is a just a stub to call the validate_and_default_gl_date in
715: -- ARP_STANDARD package
716: --
717: -- PUBLIC PROCEDURES/FUNCTIONS
718: --
719: -- PRIVATE PROCEDURES/FUNCTIONS

Line 723: -- PARAMETERS - Look at ARP_STANDARD.validate_and_default_gl_date

719: -- PRIVATE PROCEDURES/FUNCTIONS
720: --
721: -- EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
722: --
723: -- PARAMETERS - Look at ARP_STANDARD.validate_and_default_gl_date
724: --
725: -- HISTORY
726: -- 10-OCT-95 G vaidees Created
727: --

Line 752: l_result := arp_standard.validate_and_default_gl_date(

748: IF PG_DEBUG in ('Y', 'C') THEN
749: debug( 'arp_util.validate_and_default_gl_date()+' );
750: END IF;
751: --
752: l_result := arp_standard.validate_and_default_gl_date(
753: gl_date, trx_date,
754: validation_date1, validation_date2, validation_date3,
755: default_date1, default_date2, default_date3,
756: p_allow_not_open_flag, p_invoicing_rule_id,

Line 787: -- arp_standard.validate_and_default_gl_date

783: --
784: -- PRIVATE PROCEDURES/FUNCTIONS
785: --
786: -- EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
787: -- arp_standard.validate_and_default_gl_date
788: -- arp_standard.gl_period_name
789: --
790: -- PARAMETERS - Look at ARP_STANDARD.validate_and_default_gl_date
791: -- p_period_name

Line 788: -- arp_standard.gl_period_name

784: -- PRIVATE PROCEDURES/FUNCTIONS
785: --
786: -- EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
787: -- arp_standard.validate_and_default_gl_date
788: -- arp_standard.gl_period_name
789: --
790: -- PARAMETERS - Look at ARP_STANDARD.validate_and_default_gl_date
791: -- p_period_name
792: -- HISTORY

Line 790: -- PARAMETERS - Look at ARP_STANDARD.validate_and_default_gl_date

786: -- EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
787: -- arp_standard.validate_and_default_gl_date
788: -- arp_standard.gl_period_name
789: --
790: -- PARAMETERS - Look at ARP_STANDARD.validate_and_default_gl_date
791: -- p_period_name
792: -- HISTORY
793: -- 21-NOV-95 Subash C Created
794: --

Line 822: l_result := arp_standard.validate_and_default_gl_date(

818: IF PG_DEBUG in ('Y', 'C') THEN
819: debug( 'arp_util.validate_and_default_gl_date()+' );
820: END IF;
821: --
822: l_result := arp_standard.validate_and_default_gl_date(
823: gl_date, trx_date,
824: validation_date1, validation_date2, validation_date3,
825: default_date1, default_date2, default_date3,
826: p_allow_not_open_flag, p_invoicing_rule_id,

Line 835: p_period_name := arp_standard.gl_period_name(l_default_gl_date);

831:
832: --
833: -- get period name for the gl date
834: --
835: p_period_name := arp_standard.gl_period_name(l_default_gl_date);
836:
837: IF PG_DEBUG in ('Y', 'C') THEN
838: debug( 'arp_util.validate_and_default_gl_date()-' );
839: END IF;

Line 876: l_bool := arp_standard.is_gl_date_valid( p_gl_date,

872: RETURN FALSE;
873:
874: END IF;
875:
876: l_bool := arp_standard.is_gl_date_valid( p_gl_date,
877: NULL, -- trx_date
878: NULL, -- validation_date1
879: NULL, -- validation_date2
880: NULL, -- validation_date3

Line 922: l_bool := arp_standard.is_gl_date_valid( p_gl_date,

918: RETURN FALSE;
919:
920: END IF;
921:
922: l_bool := arp_standard.is_gl_date_valid( p_gl_date,
923: NULL, -- trx_date
924: NULL, -- validation_date1
925: NULL, -- validation_date2
926: NULL, -- validation_date3

Line 1008: -- arp_standard.gl_period_name

1004: --
1005: -- PRIVATE PROCEDURES/FUNCTIONS
1006: --
1007: -- EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
1008: -- arp_standard.gl_period_name
1009: --
1010: -- PARAMETERS
1011: -- p_gl_date - Input GL date
1012: -- p_module_name - Input module name

Line 1038: p_period_name := arp_standard.gl_period_name(p_gl_date);

1034:
1035: --
1036: -- get period name
1037: --
1038: p_period_name := arp_standard.gl_period_name(p_gl_date);
1039:
1040: IF PG_DEBUG in ('Y', 'C') THEN
1041: debug( 'arp_util.validate_gl_date()-' );
1042: END IF;

Line 1082: | bucket in that order. This is the standard that has been established and

1078: | amounts are derived by this routine in order, Tax, Charges, Line and
1079: | Freight by using the foreign currency amounts and multiplying with the
1080: | exchange rate to get the base or functional currency accounted amounts
1081: | with the rounding correction going to the last non zero amount
1082: | bucket in that order. This is the standard that has been established and
1083: | the same algorithm must be used to retain consistency. The usage came
1084: | into being during the Tax accounting for Discounts and Adjustments,
1085: | however in future projects this will be required. This could not be
1086: | derived as an effect on payment schedule becuause the payment schedules