DBA Data[Home] [Help]

APPS.PAY_US_TAX_BALS_ADJ_API dependencies on PAY_US_TAX_BALS_PKG

Line 165: pay_us_tax_bals_pkg.us_tax_balance procedure call from the

161: and process_element procedure for Supplimental earning.
162: sackumar 26-Apr-2005 115.31 4627851 Modified the Procedure create_tax_balance_adjusment
163: and process_element procedure for Imputed Earning.
164: sackumar 16-Nov-2005 115.32 4721086 Modified the value passed to p_virtual_date parameter in
165: pay_us_tax_bals_pkg.us_tax_balance procedure call from the
166: Procedure process_limits,It is changed now l_virtual_adjustment_date
167: local variable is used to pass the last date of the year.
168: ========================================================================*/
169:

Line 898: a call to PAY_US_TAX_BALS_PKG.US_TAX_BALANCE. The package is going to

894: */
895:
896: /* Rmonge 17-NOV-2001 */
897: /* For each IF statment to get the taxable balance, I have added
898: a call to PAY_US_TAX_BALS_PKG.US_TAX_BALANCE. The package is going to
899: return the Adjusted Subject To Tax Balance for the element being
900: processed.
901: */
902: /* TCLEWIS 02-25-2002

Line 920: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(

916: ** as used in PAY_US_STATE_TAX_INFO_F for NY
917: */
918: l_limit := 99999999;
919:
920: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(
921: p_tax_balance_category => 'REDUCED_SUBJ_WHABLE',
922: p_tax_type => 'MEDICARE',
923: p_ee_or_er => 'EE',
924: p_time_type => 'YTD',

Line 936: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(

932: ELSIF (p_element_type = 'Medicare_ER') THEN
933: l_old_taxable_bal := g_medicare_er_taxable;
934: l_limit := 99999999;
935:
936: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(
937: p_tax_balance_category => 'REDUCED_SUBJ_WHABLE',
938: p_tax_type => 'MEDICARE',
939: p_ee_or_er => 'ER',
940: p_time_type => 'YTD',

Line 960: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(

956: else
957: l_asg_type := 'PER';
958: end if;
959:
960: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(
961: p_tax_balance_category => 'REDUCED_SUBJ_WHABLE',
962: p_tax_type => 'FUTA',
963: p_ee_or_er => 'ER',
964: p_time_type => 'YTD',

Line 983: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(

979: else
980: l_asg_type := 'PER';
981: end if;
982:
983: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(
984: p_tax_balance_category => 'REDUCED_SUBJ_WHABLE',
985: p_tax_type => 'SS',
986: p_ee_or_er => 'EE',
987: p_time_type => 'YTD',

Line 1006: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(

1002: else
1003: l_asg_type := 'PER';
1004: end if;
1005:
1006: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(
1007: p_tax_balance_category => 'REDUCED_SUBJ_WHABLE',
1008: p_tax_type => 'SS',
1009: p_ee_or_er => 'ER',
1010: p_time_type => 'YTD',

Line 1022: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(

1018: ELSIF (p_element_type = 'SDI_EE') THEN
1019: l_old_taxable_bal := g_sdi_ee_taxable;
1020: l_limit := g_sdi_ee_wage_limit;
1021:
1022: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(
1023: p_tax_balance_category => 'REDUCED_SUBJ_WHABLE',
1024: p_tax_type => 'SDI',
1025: p_ee_or_er => 'EE',
1026: p_time_type => 'YTD',

Line 1038: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(

1034: ELSIF (p_element_type = 'SDI_ER') THEN
1035: l_old_taxable_bal := g_sdi_er_taxable;
1036: l_limit := g_sdi_er_wage_limit;
1037:
1038: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(
1039: p_tax_balance_category => 'REDUCED_SUBJ_WHABLE',
1040: p_tax_type => 'SDI',
1041: p_ee_or_er => 'ER',
1042: p_time_type => 'YTD',

Line 1054: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(

1050: ELSIF (p_element_type = 'SUI_EE') THEN
1051: l_old_taxable_bal := g_sui_ee_taxable;
1052: l_limit := g_sui_ee_wage_limit;
1053:
1054: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(
1055: p_tax_balance_category => 'REDUCED_SUBJ_WHABLE',
1056: p_tax_type => 'SUI',
1057: p_ee_or_er => 'EE',
1058: p_time_type => 'YTD',

Line 1070: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(

1066: ELSIF (p_element_type = 'SUI_ER') THEN
1067: l_old_taxable_bal := g_sui_er_taxable;
1068: l_limit := g_sui_er_wage_limit;
1069:
1070: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(
1071: p_tax_balance_category => 'REDUCED_SUBJ_WHABLE',
1072: p_tax_type => 'SUI',
1073: p_ee_or_er => 'ER',
1074: p_time_type => 'YTD',

Line 1836: l_return_bal := pay_us_tax_bals_pkg.us_tax_balance(

1832: ELSE
1833: l_asg_type := 'PER';
1834: END IF;
1835:
1836: l_return_bal := pay_us_tax_bals_pkg.us_tax_balance(
1837: p_tax_balance_category => 'TAXABLE',
1838: p_tax_type => p_tax_bal_name,
1839: p_ee_or_er => p_ee_or_er,
1840: p_time_type => 'YTD',