DBA Data[Home] [Help]

APPS.JE_ZZ_AUTO_INVOICE dependencies on STANDARD

Line 43: arp_standard.debug('JE_ZZ_AUTO_INVOICE.validate_gdff()+');

39:
40: PG_DEBUG := NVL(FND_PROFILE.value('MSC_ATP_DEBUG'), 'N');
41:
42: IF PG_DEBUG in ('Y', 'C') THEN
43: arp_standard.debug('JE_ZZ_AUTO_INVOICE.validate_gdff()+');
44: END IF;
45:
46: return_code := 1;
47: l_country_code := fnd_profile.value ('JGZZ_COUNTRY_CODE');

Line 50: arp_standard.debug('validate_gdff: ' || '-- Country Code: '||l_country_code);

46: return_code := 1;
47: l_country_code := fnd_profile.value ('JGZZ_COUNTRY_CODE');
48:
49: IF PG_DEBUG in ('Y', 'C') THEN
50: arp_standard.debug('validate_gdff: ' || '-- Country Code: '||l_country_code);
51: arp_standard.debug('validate_gdff: ' || '-- Request Id: '||to_char(p_request_id));
52: END IF;
53:
54: ------------------------------------------------------------

Line 51: arp_standard.debug('validate_gdff: ' || '-- Request Id: '||to_char(p_request_id));

47: l_country_code := fnd_profile.value ('JGZZ_COUNTRY_CODE');
48:
49: IF PG_DEBUG in ('Y', 'C') THEN
50: arp_standard.debug('validate_gdff: ' || '-- Country Code: '||l_country_code);
51: arp_standard.debug('validate_gdff: ' || '-- Request Id: '||to_char(p_request_id));
52: END IF;
53:
54: ------------------------------------------------------------
55: -- Check for HU country code, if present then we want to --

Line 63: arp_standard.debug('validate_gdff: ' || '-- Inserting HU specific GDF data');

59: IF l_country_code = 'HU' THEN
60:
61:
62: IF PG_DEBUG in ('Y', 'C') THEN
63: arp_standard.debug('validate_gdff: ' || '-- Inserting HU specific GDF data');
64: END IF;
65:
66: update ra_interface_lines_gt
67: set HEADER_GDF_ATTR_CATEGORY = 'JE.HU.ARXTWMAI.TAX_DATE'

Line 81: arp_standard.debug('validate_gdff: ' || '-- Inserting PL specific GDF data');

77: ELSIF l_country_code = 'PL' THEN
78:
79:
80: IF PG_DEBUG in ('Y', 'C') THEN
81: arp_standard.debug('validate_gdff: ' || '-- Inserting PL specific GDF data');
82: END IF;
83:
84: update ra_interface_lines_gt
85: set HEADER_GDF_ATTR_CATEGORY = 'JE.PL.ARXTWMAI.TAX_DATE'

Line 105: arp_standard.debug('validate_gdff: ' || '-- Inserting CZ specific GDF data');

101:
102: ELSIF l_country_code = 'CZ' THEN
103:
104: IF PG_DEBUG in ('Y', 'C') THEN
105: arp_standard.debug('validate_gdff: ' || '-- Inserting CZ specific GDF data');
106: END IF;
107:
108: update ra_interface_lines_gt
109: set HEADER_GDF_ATTR_CATEGORY = 'JE.CZ.ARXTWMAI.TAX_DATE'

Line 124: arp_standard.debug('validate_gdff: ' || '-- Return From Exception when others');

120: EXCEPTION
121: WHEN OTHERS THEN
122:
123: IF PG_DEBUG in ('Y', 'C') THEN
124: arp_standard.debug('validate_gdff: ' || '-- Return From Exception when others');
125: arp_standard.debug('validate_gdff: ' || '-- Return Code: 0');
126: arp_standard.debug('JE_ZZ_AUTO_INVOICE.validate_gdff()-');
127: END IF;
128:

Line 125: arp_standard.debug('validate_gdff: ' || '-- Return Code: 0');

121: WHEN OTHERS THEN
122:
123: IF PG_DEBUG in ('Y', 'C') THEN
124: arp_standard.debug('validate_gdff: ' || '-- Return From Exception when others');
125: arp_standard.debug('validate_gdff: ' || '-- Return Code: 0');
126: arp_standard.debug('JE_ZZ_AUTO_INVOICE.validate_gdff()-');
127: END IF;
128:
129: RETURN 0;

Line 126: arp_standard.debug('JE_ZZ_AUTO_INVOICE.validate_gdff()-');

122:
123: IF PG_DEBUG in ('Y', 'C') THEN
124: arp_standard.debug('validate_gdff: ' || '-- Return From Exception when others');
125: arp_standard.debug('validate_gdff: ' || '-- Return Code: 0');
126: arp_standard.debug('JE_ZZ_AUTO_INVOICE.validate_gdff()-');
127: END IF;
128:
129: RETURN 0;
130: