DBA Data[Home] [Help]

APPS.PAY_PYNZSOE_XMLP_PKG dependencies on PAY_NZ_SOE_PKG

Line 189: pay_nz_soe_pkg.get_home_address(p_person_id => person_id1,

185: p_position_name := 'Position name N/A';
186: END;
187:
188: IF home_office_ind = 'H' THEN
189: pay_nz_soe_pkg.get_home_address(p_person_id => person_id1,
190: p_addr_line1 => l_address_line_1,
191: p_addr_line2 => l_address_line_2,
192: p_addr_line3 => l_address_line_3,
193: p_town_city => l_town_city,

Line 207: pay_nz_soe_pkg.get_work_address(p_location_id => location_id1,

203:
204:
205: ELSIF home_office_ind <> 'H' or home_office_ind is null THEN
206: IF location_id1 is not null THEN
207: pay_nz_soe_pkg.get_work_address(p_location_id => location_id1,
208: p_addr_line1 => l_address_line_1,
209: p_addr_line2 => l_address_line_2,
210: p_addr_line3 => l_address_line_3,
211: p_town_city => l_town_city,

Line 259: pay_nz_soe_pkg.balance_totals( assignment_id,

255: RETURN NULL; end;
256:
257: function cf_get_miscellaneous_valuesfor(assignment_id in number, run_ass_action_id_link_from_q1 in number, date_earned in date) return number is
258: begin
259: pay_nz_soe_pkg.balance_totals( assignment_id,
260: run_ass_action_id_link_from_q1,
261: date_earned,
262: cp_gross_this_pay,
263: cp_other_deductions_this_pay,

Line 308: v_currency_code := pay_nz_soe_pkg.business_currency_code(p_business_group_id);

304: v_format_mask varchar2(100) := null;
305: v_field_length number(3) := 15;
306:
307: begin
308: v_currency_code := pay_nz_soe_pkg.business_currency_code(p_business_group_id);
309: v_format_mask := fnd_currency.get_format_mask(v_currency_code, v_field_length);
310:
311: return v_format_mask;
312: end;