DBA Data[Home] [Help]

APPS.JL_ZZ_AP_WITHHOLDING_PKG dependencies on AP_UTILITIES_PKG

Line 1291: Ap_Utilities_Pkg.Ap_Round_Currency

1287: P_Tab_Withhold(j).withheld_amount /
1288: l_taxable_base_amount;
1289:
1290: P_Tab_Withhold(j).prorated_amount :=
1291: Ap_Utilities_Pkg.Ap_Round_Currency
1292: (P_Tab_Withhold(j).prorated_amount,
1293: P_Currency_Code);
1294:
1295: l_cumulative_wh_amount := l_cumulative_wh_amount +

Line 1345: Ap_Utilities_Pkg.Ap_Round_Currency

1341: P_Tab_Withhold(j).withheld_amount /
1342: l_taxable_base_amount;
1343:
1344: P_Tab_Withhold(j).prorated_amount :=
1345: Ap_Utilities_Pkg.Ap_Round_Currency
1346: (P_Tab_Withhold(j).prorated_amount,
1347: P_Currency_Code);
1348:
1349: l_cumulative_wh_amount := l_cumulative_wh_amount +

Line 2478: l_updated_withheld_amt := Ap_Utilities_Pkg.Ap_Round_Currency

2474:
2475: --------------------------------------
2476: -- Rounds the updated withheld amount
2477: --------------------------------------
2478: l_updated_withheld_amt := Ap_Utilities_Pkg.Ap_Round_Currency
2479: (P_Updated_Withheld_Amt, P_Currency_Code);
2480:
2481: -----------------------------------------------------------
2482: -- Updates the withheld amount for each different tax name

Line 2499: l_withheld_amount := Ap_Utilities_Pkg.Ap_Round_Currency

2495:
2496: l_withheld_amount := P_Tab_Withhold(i).withheld_amount *
2497: l_updated_withheld_amt /
2498: P_Original_Withheld_Amt;
2499: l_withheld_amount := Ap_Utilities_Pkg.Ap_Round_Currency
2500: (l_withheld_amount, P_Currency_Code);
2501: l_cumulative_amount := l_cumulative_amount + l_withheld_amount;
2502:
2503: --------------------------------------------------------

Line 2897: 'ap_utilities_pkg.get_auto_offsets_segments (:l_code_combination_id); END;';

2893: ------------------------------------------
2894: -- Create the SQL statement
2895: l_cursor := dbms_sql.open_cursor;
2896: l_sqlstmt := 'BEGIN :Curr_BaL := ' ||
2897: 'ap_utilities_pkg.get_auto_offsets_segments (:l_code_combination_id); END;';
2898:
2899: -- Parse the SQL statement
2900: dbms_sql.parse (l_cursor, l_sqlstmt, dbms_sql.native);
2901: