DBA Data[Home] [Help]

APPS.PON_NEGOTIATION_HELPER_PVT dependencies on PON_ATTRIBUTE_SCORES

Line 633: pon_attribute_scores

629: WHILE (l_batch_start <= l_max_line_number) LOOP
630:
631: -- Delete the entries from the attribute scores table for this auction
632: DELETE FROM
633: pon_attribute_scores
634: WHERE
635: auction_header_id = p_auction_header_id AND
636: line_number >= l_batch_start AND
637: line_number <= l_batch_end;

Line 1514: pon_attribute_scores

1510: -- is added
1511: -- Above condition is built into the batching
1512: -- condition as we start from 1
1513: DELETE FROM
1514: pon_attribute_scores
1515: WHERE
1516: auction_header_id = p_auction_header_id AND
1517: line_number >= l_batch_start AND
1518: line_number <= l_batch_end;

Line 2021: pon_attribute_scores

2017: RETURN;
2018: END;
2019:
2020: DELETE FROM
2021: pon_attribute_scores
2022: WHERE
2023: auction_header_id = p_auction_header_id AND
2024: line_number = p_line_number;
2025:

Line 2029: message => 'Deleted the entry in pon_attribute_scores');

2025:
2026: IF (FND_LOG.level_statement >= FND_LOG.g_current_runtime_level) THEN
2027: FND_LOG.string (log_level => FND_LOG.level_statement,
2028: module => g_module_prefix || l_module_name,
2029: message => 'Deleted the entry in pon_attribute_scores');
2030: END IF;
2031:
2032: DELETE FROM
2033: pon_auction_attributes

Line 2344: pon_attribute_scores pas

2340:
2341: -- Delete the scores that belong to this lot/group
2342: -- and also its children
2343: DELETE FROM
2344: pon_attribute_scores pas
2345: WHERE
2346: pas.auction_header_id = p_auction_header_id AND
2347: (
2348: pas.line_number = p_line_number OR