DBA Data[Home] [Help]

APPS.PAY_US_ONLINE_W4_XML_PKG dependencies on PAY_US_ONLINE_W4_XML_PKG

Line 1: PACKAGE BODY pay_us_online_w4_xml_pkg

1: PACKAGE BODY pay_us_online_w4_xml_pkg
2: /* $Header: pyw4xmlp.pkb 120.4 2012/01/19 11:31:23 rpahune ship $ */
3: /*
4: ******************************************************************
5: * *

Line 20: Name : pay_us_online_w4_xml_pkg

16: * 500 Oracle Parkway, Redwood City, CA, 94065. *
17: * *
18: ******************************************************************
19:
20: Name : pay_us_online_w4_xml_pkg
21:
22: Description : This package contains the procedure generate_xml to
23: generate the XML extract for Online W4 PDF
24:

Line 133: hr_utility.set_location ('pay_us_online_w4_xml_pkg.generate_xml', 10);

129: l_date DATE;
130: l_signature VARCHAR2 (100);
131: BEGIN
132: --hr_utility.trace_on (NULL, 'pyw4xmlp');
133: hr_utility.set_location ('pay_us_online_w4_xml_pkg.generate_xml', 10);
134: hr_utility.TRACE ('p_person_id: ' || p_person_id);
135: hr_utility.TRACE ('p_transaction_step_id: ' || p_transaction_step_id);
136: hr_utility.TRACE ('p_temp_dir: ' || p_temp_dir);
137: hr_utility.TRACE ('p_appl_short_name: ' || p_appl_short_name);

Line 152: hr_utility.set_location ('pay_us_online_w4_xml_pkg.generate_xml', 20);

148: l_address_line3, l_city_state_zip;
149:
150: CLOSE c_get_personal_details;
151:
152: hr_utility.set_location ('pay_us_online_w4_xml_pkg.generate_xml', 20);
153:
154: OPEN c_get_updated_values (p_transaction_step_id);
155:
156: FETCH c_get_updated_values

Line 162: hr_utility.set_location ('pay_us_online_w4_xml_pkg.generate_xml', 30);

158: l_last_name_diff;
159:
160: CLOSE c_get_updated_values;
161:
162: hr_utility.set_location ('pay_us_online_w4_xml_pkg.generate_xml', 30);
163:
164: OPEN c_get_lookup_codes (l_filing_status);
165:
166: FETCH c_get_lookup_codes

Line 171: hr_utility.set_location ('pay_us_online_w4_xml_pkg.generate_xml', 40);

167: INTO l_filing_status_code;
168:
169: CLOSE c_get_lookup_codes;
170:
171: hr_utility.set_location ('pay_us_online_w4_xml_pkg.generate_xml', 40);
172:
173: IF l_filing_status_code = '01'
174: THEN
175: l_fs_single := 'Y';

Line 183: hr_utility.set_location ('pay_us_online_w4_xml_pkg.generate_xml', 50);

179: ELSE
180: l_fs_married_withhold := 'Y';
181: END IF;
182:
183: hr_utility.set_location ('pay_us_online_w4_xml_pkg.generate_xml', 50);
184:
185: SELECT SYSDATE, TO_CHAR (SYSDATE, 'YYYY')
186: INTO l_date, l_year
187: FROM DUAL;

Line 319: hr_utility.set_location ('pay_us_online_w4_xml_pkg.generate_xml', 60);

315: || p_default_territory
316: || '">';
317: l_xml_string := l_xml_string || '';
318: l_xml_string := l_xml_string || '';
319: hr_utility.set_location ('pay_us_online_w4_xml_pkg.generate_xml', 60);
320:
321: FOR counter IN l_xml_data_table.FIRST .. l_xml_data_table.LAST
322: LOOP
323: l_xml_string :=

Line 335: hr_utility.set_location ('pay_us_online_w4_xml_pkg.generate_xml', 70);

331: l_xml_string :=
332: l_xml_string
333: || '';
334: p_xml_string := l_xml_string;
335: hr_utility.set_location ('pay_us_online_w4_xml_pkg.generate_xml', 70);
336: END generate_xml;
337: END pay_us_online_w4_xml_pkg;

Line 337: END pay_us_online_w4_xml_pkg;

333: || '';
334: p_xml_string := l_xml_string;
335: hr_utility.set_location ('pay_us_online_w4_xml_pkg.generate_xml', 70);
336: END generate_xml;
337: END pay_us_online_w4_xml_pkg;