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 1494: pon_attribute_scores

1490: -- is added
1491: -- Above condition is built into the batching
1492: -- condition as we start from 1
1493: DELETE FROM
1494: pon_attribute_scores
1495: WHERE
1496: auction_header_id = p_auction_header_id AND
1497: line_number >= l_batch_start AND
1498: line_number <= l_batch_end;

Line 1954: pon_attribute_scores

1950: RETURN;
1951: END;
1952:
1953: DELETE FROM
1954: pon_attribute_scores
1955: WHERE
1956: auction_header_id = p_auction_header_id AND
1957: line_number = p_line_number;
1958:

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

1958:
1959: IF (FND_LOG.level_statement >= FND_LOG.g_current_runtime_level) THEN
1960: FND_LOG.string (log_level => FND_LOG.level_statement,
1961: module => g_module_prefix || l_module_name,
1962: message => 'Deleted the entry in pon_attribute_scores');
1963: END IF;
1964:
1965: DELETE FROM
1966: pon_auction_attributes

Line 2212: pon_attribute_scores pas

2208:
2209: -- Delete the scores that belong to this lot/group
2210: -- and also its children
2211: DELETE FROM
2212: pon_attribute_scores pas
2213: WHERE
2214: pas.auction_header_id = p_auction_header_id AND
2215: (
2216: pas.line_number = p_line_number OR