DBA Data[Home] [Help]

APPS.PON_CONSOLE_PVT dependencies on PON_BID_ITEM_PRICES

Line 1453: TYPE line_number_tbl_type IS TABLE OF pon_bid_item_prices.line_number%TYPE;

1449: x_no_bid_lines OUT NOCOPY NUMBER
1450: )
1451: IS
1452:
1453: TYPE line_number_tbl_type IS TABLE OF pon_bid_item_prices.line_number%TYPE;
1454: TYPE bid_price_tbl_type IS TABLE OF pon_bid_item_prices.price%TYPE;
1455: TYPE bid_qty_tbl_type IS TABLE OF pon_bid_item_prices.quantity%TYPE;
1456: TYPE current_price_tbl_type IS TABLE OF pon_auction_item_prices_all.current_price%TYPE;
1457: TYPE auction_qty_tbl_type IS TABLE OF pon_auction_item_prices_all.quantity%TYPE;

Line 1454: TYPE bid_price_tbl_type IS TABLE OF pon_bid_item_prices.price%TYPE;

1450: )
1451: IS
1452:
1453: TYPE line_number_tbl_type IS TABLE OF pon_bid_item_prices.line_number%TYPE;
1454: TYPE bid_price_tbl_type IS TABLE OF pon_bid_item_prices.price%TYPE;
1455: TYPE bid_qty_tbl_type IS TABLE OF pon_bid_item_prices.quantity%TYPE;
1456: TYPE current_price_tbl_type IS TABLE OF pon_auction_item_prices_all.current_price%TYPE;
1457: TYPE auction_qty_tbl_type IS TABLE OF pon_auction_item_prices_all.quantity%TYPE;
1458:

Line 1455: TYPE bid_qty_tbl_type IS TABLE OF pon_bid_item_prices.quantity%TYPE;

1451: IS
1452:
1453: TYPE line_number_tbl_type IS TABLE OF pon_bid_item_prices.line_number%TYPE;
1454: TYPE bid_price_tbl_type IS TABLE OF pon_bid_item_prices.price%TYPE;
1455: TYPE bid_qty_tbl_type IS TABLE OF pon_bid_item_prices.quantity%TYPE;
1456: TYPE current_price_tbl_type IS TABLE OF pon_auction_item_prices_all.current_price%TYPE;
1457: TYPE auction_qty_tbl_type IS TABLE OF pon_auction_item_prices_all.quantity%TYPE;
1458:
1459: l_line_number_tbl line_number_tbl_type;

Line 1464: l_line_number PON_BID_ITEM_PRICES.line_number%TYPE;

1460: l_bid_price_tbl bid_price_tbl_type;
1461: l_bid_qty_tbl bid_qty_tbl_type;
1462: l_current_price_tbl current_price_tbl_type;
1463: l_auction_qty_tbl auction_qty_tbl_type;
1464: l_line_number PON_BID_ITEM_PRICES.line_number%TYPE;
1465: l_qty_remaining NUMBER;
1466: l_current_value NUMBER := 0;
1467: l_optimal_value NUMBER := 0;
1468: l_no_bid_lines NUMBER := 0;

Line 1512: pon_bid_item_prices bl,

1508: ai.current_price,
1509: nvl(ai.quantity,1) auction_qty
1510: BULK COLLECT INTO l_line_number_tbl, l_bid_price_tbl, l_bid_qty_tbl, l_current_price_tbl, l_auction_qty_tbl
1511: FROM pon_bid_headers bh,
1512: pon_bid_item_prices bl,
1513: pon_auction_headers_all ah,
1514: pon_auction_item_prices_all ai
1515: WHERE ah.auction_header_id = bh.auction_header_id
1516: and bh.auction_header_id = bl.auction_header_id