DBA Data[Home] [Help]

APPS.JL_ZZ_AP_WITHHOLDING_PKG dependencies on AP_UTILITIES_PKG

Line 1248: Ap_Utilities_Pkg.Ap_Round_Currency

1244: P_Tab_Withhold(j).withheld_amount /
1245: l_taxable_base_amount;
1246:
1247: P_Tab_Withhold(j).prorated_amount :=
1248: Ap_Utilities_Pkg.Ap_Round_Currency
1249: (P_Tab_Withhold(j).prorated_amount,
1250: P_Currency_Code);
1251:
1252: l_cumulative_wh_amount := l_cumulative_wh_amount +

Line 1302: Ap_Utilities_Pkg.Ap_Round_Currency

1298: P_Tab_Withhold(j).withheld_amount /
1299: l_taxable_base_amount;
1300:
1301: P_Tab_Withhold(j).prorated_amount :=
1302: Ap_Utilities_Pkg.Ap_Round_Currency
1303: (P_Tab_Withhold(j).prorated_amount,
1304: P_Currency_Code);
1305:
1306: l_cumulative_wh_amount := l_cumulative_wh_amount +

Line 2523: l_updated_withheld_amt := Ap_Utilities_Pkg.Ap_Round_Currency

2519:
2520: --------------------------------------
2521: -- Rounds the updated withheld amount
2522: --------------------------------------
2523: l_updated_withheld_amt := Ap_Utilities_Pkg.Ap_Round_Currency
2524: (P_Updated_Withheld_Amt, P_Currency_Code);
2525:
2526: -----------------------------------------------------------
2527: -- Updates the withheld amount for each different tax name

Line 2544: l_withheld_amount := Ap_Utilities_Pkg.Ap_Round_Currency

2540:
2541: l_withheld_amount := P_Tab_Withhold(i).withheld_amount *
2542: l_updated_withheld_amt /
2543: P_Original_Withheld_Amt;
2544: l_withheld_amount := Ap_Utilities_Pkg.Ap_Round_Currency
2545: (l_withheld_amount, P_Currency_Code);
2546: l_cumulative_amount := l_cumulative_amount + l_withheld_amount;
2547:
2548: --------------------------------------------------------

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

2935: ------------------------------------------
2936: -- Create the SQL statement
2937: l_cursor := dbms_sql.open_cursor;
2938: l_sqlstmt := 'BEGIN :Curr_BaL := ' ||
2939: 'ap_utilities_pkg.get_auto_offsets_segments (:l_code_combination_id); END;';
2940:
2941: -- Parse the SQL statement
2942: dbms_sql.parse (l_cursor, l_sqlstmt, dbms_sql.native);
2943: