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: tclewis 09-SEP-2008 115.33 7362837 Added code to create run result for the
169: 'SIT_WK_NON_AGGREGATE_RED_SUBJ_WHABLE' Element for supplemental and

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

1025: */
1026:
1027: /* Rmonge 17-NOV-2001 */
1028: /* For each IF statment to get the taxable balance, I have added
1029: a call to PAY_US_TAX_BALS_PKG.US_TAX_BALANCE. The package is going to
1030: return the Adjusted Subject To Tax Balance for the element being
1031: processed.
1032: */
1033: /* TCLEWIS 02-25-2002

Line 1051: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(

1047: ** as used in PAY_US_STATE_TAX_INFO_F for NY
1048: */
1049: l_limit := 99999999;
1050:
1051: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(
1052: p_tax_balance_category => 'REDUCED_SUBJ_WHABLE',
1053: p_tax_type => 'MEDICARE',
1054: p_ee_or_er => 'EE',
1055: p_time_type => 'YTD',

Line 1067: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(

1063: ELSIF (p_element_type = 'Medicare_ER') THEN
1064: l_old_taxable_bal := g_medicare_er_taxable;
1065: l_limit := 99999999;
1066:
1067: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(
1068: p_tax_balance_category => 'REDUCED_SUBJ_WHABLE',
1069: p_tax_type => 'MEDICARE',
1070: p_ee_or_er => 'ER',
1071: p_time_type => 'YTD',

Line 1091: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(

1087: else
1088: l_asg_type := 'PER';
1089: end if;
1090:
1091: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(
1092: p_tax_balance_category => 'REDUCED_SUBJ_WHABLE',
1093: p_tax_type => 'FUTA',
1094: p_ee_or_er => 'ER',
1095: p_time_type => 'YTD',

Line 1114: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(

1110: else
1111: l_asg_type := 'PER';
1112: end if;
1113:
1114: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(
1115: p_tax_balance_category => 'REDUCED_SUBJ_WHABLE',
1116: p_tax_type => 'SS',
1117: p_ee_or_er => 'EE',
1118: p_time_type => 'YTD',

Line 1137: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(

1133: else
1134: l_asg_type := 'PER';
1135: end if;
1136:
1137: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(
1138: p_tax_balance_category => 'REDUCED_SUBJ_WHABLE',
1139: p_tax_type => 'SS',
1140: p_ee_or_er => 'ER',
1141: p_time_type => 'YTD',

Line 1153: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(

1149: ELSIF (p_element_type = 'SDI_EE') THEN
1150: l_old_taxable_bal := g_sdi_ee_taxable;
1151: l_limit := g_sdi_ee_wage_limit;
1152:
1153: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(
1154: p_tax_balance_category => 'REDUCED_SUBJ_WHABLE',
1155: p_tax_type => 'SDI',
1156: p_ee_or_er => 'EE',
1157: p_time_type => 'YTD',

Line 1171: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(

1167: l_limit := g_sdi1_ee_wage_limit;
1168:
1169: -- USE SDI EE Reduced Subject Whable as we don't have a subject balance for SDI1
1170:
1171: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(
1172: p_tax_balance_category => 'REDUCED_SUBJ_WHABLE',
1173: p_tax_type => 'SDI',
1174: p_ee_or_er => 'EE',
1175: p_time_type => 'YTD',

Line 1187: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(

1183: ELSIF (p_element_type = 'SDI_ER') THEN
1184: l_old_taxable_bal := g_sdi_er_taxable;
1185: l_limit := g_sdi_er_wage_limit;
1186:
1187: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(
1188: p_tax_balance_category => 'REDUCED_SUBJ_WHABLE',
1189: p_tax_type => 'SDI',
1190: p_ee_or_er => 'ER',
1191: p_time_type => 'YTD',

Line 1203: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(

1199: ELSIF (p_element_type = 'SUI_EE') THEN
1200: l_old_taxable_bal := g_sui_ee_taxable;
1201: l_limit := g_sui_ee_wage_limit;
1202:
1203: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(
1204: p_tax_balance_category => 'REDUCED_SUBJ_WHABLE',
1205: p_tax_type => 'SUI',
1206: p_ee_or_er => 'EE',
1207: p_time_type => 'YTD',

Line 1219: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(

1215: ELSIF (p_element_type = 'SUI_ER') THEN
1216: l_old_taxable_bal := g_sui_er_taxable;
1217: l_limit := g_sui_er_wage_limit;
1218:
1219: l_limit_subject_bal:= pay_us_tax_bals_pkg.us_tax_balance(
1220: p_tax_balance_category => 'REDUCED_SUBJ_WHABLE',
1221: p_tax_type => 'SUI',
1222: p_ee_or_er => 'ER',
1223: p_time_type => 'YTD',

Line 2201: l_return_bal := pay_us_tax_bals_pkg.us_tax_balance(

2197: ELSE
2198: l_asg_type := 'PER';
2199: END IF;
2200:
2201: l_return_bal := pay_us_tax_bals_pkg.us_tax_balance(
2202: p_tax_balance_category => 'TAXABLE',
2203: p_tax_type => p_tax_bal_name,
2204: p_ee_or_er => p_ee_or_er,
2205: p_time_type => 'YTD',