DBA Data[Home] [Help]

APPS.PO_NEGOTIATIONS_SV1 dependencies on PON_AUCTION_INTERFACE_PKG

Line 538: PON_AUCTION_INTERFACE_PKG.create_draft_negotiation

534:
535: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
536: fnd_log.string(fnd_log.level_statement,g_log_head,'Before create_draft_negotiation');
537: END IF;
538: PON_AUCTION_INTERFACE_PKG.create_draft_negotiation
539: ( p_document_title => null -- IN
540: , p_document_type => x_negotiation_type -- -- IN
541: , p_contract_type => p_neg_outcome -- IN
542: , p_origination_code => 'REQUISITION' -- IN

Line 1068: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.add_negotiation_line');

1064:
1065: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
1066: fnd_log.string(fnd_log.level_statement,g_log_head,'l_bid_start_price : '||l_bid_start_price);
1067: fnd_log.string(fnd_log.level_statement,g_log_head,'l_po_agreed_amount : '||l_po_agreed_amount);
1068: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.add_negotiation_line');
1069: END IF;
1070:
1071: --
1072:

Line 1078: PON_AUCTION_INTERFACE_PKG.add_negotiation_line

1074: /* Adding parameter p_neg_outcome - RENEG BLANKET FPI */
1075: x_progress := '007';
1076:
1077:
1078: PON_AUCTION_INTERFACE_PKG.add_negotiation_line
1079: ( p_document_number => x_negotiation_id
1080: , p_contract_type => p_neg_outcome
1081: , p_origination_code => 'REQUISITION'
1082: , p_org_id => x_org_id

Line 1130: fnd_log.string(fnd_log.level_statement,g_log_head,'After PON_AUCTION_INTERFACE_PKG.add_negotiation_line');

1126: , p_error_message => api_error_msg
1127: );
1128:
1129: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
1130: fnd_log.string(fnd_log.level_statement,g_log_head,'After PON_AUCTION_INTERFACE_PKG.add_negotiation_line');
1131: END IF;
1132:
1133: -- logme(' Add Line for item ' || x_item_desc || ' api_result = ' || api_result || ' error code = ' || api_error_code || ' error_msg = ' || api_error_msg );
1134: -- logme ( ' The above line autocreated to ' || x_negotiation_line_num);

Line 1178: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.add_price_differential');

1174: FOR l_price_diff_rec IN l_price_diff_csr(x_req_line_id) LOOP --Bug5841426
1175:
1176:
1177: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
1178: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.add_price_differential');
1179: END IF;
1180:
1181: PON_AUCTION_INTERFACE_PKG.add_price_differential
1182: ( p_document_number => x_negotiation_id

Line 1181: PON_AUCTION_INTERFACE_PKG.add_price_differential

1177: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
1178: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.add_price_differential');
1179: END IF;
1180:
1181: PON_AUCTION_INTERFACE_PKG.add_price_differential
1182: ( p_document_number => x_negotiation_id
1183: , p_line_number => x_negotiation_line_num
1184: , p_shipment_number => -1
1185: , p_price_type => l_price_diff_rec.price_type

Line 1195: fnd_log.string(fnd_log.level_statement,g_log_head,'After PON_AUCTION_INTERFACE_PKG.add_price_differential');

1191: , p_error_message => api_error_msg
1192: );
1193:
1194: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
1195: fnd_log.string(fnd_log.level_statement,g_log_head,'After PON_AUCTION_INTERFACE_PKG.add_price_differential');
1196: END IF;
1197:
1198: IF ( api_result <> 0 ) -- API failure
1199: THEN

Line 1241: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.maintain_clm_relations');

1237:
1238: IF ( PON_CLM_UTIL_PKG.IS_NEG_DOCUMENT_FEDERAL(x_negotiation_id) = 1 ) THEN --Bug 12605930
1239:
1240: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
1241: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.maintain_clm_relations');
1242: END IF;
1243:
1244: PON_AUCTION_INTERFACE_PKG.maintain_clm_relations(
1245: p_api_version => 1.0 -- IN

Line 1244: PON_AUCTION_INTERFACE_PKG.maintain_clm_relations(

1240: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
1241: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.maintain_clm_relations');
1242: END IF;
1243:
1244: PON_AUCTION_INTERFACE_PKG.maintain_clm_relations(
1245: p_api_version => 1.0 -- IN
1246: , x_return_status => l_return_status -- OUT
1247: , x_msg_count => l_msg_count -- OUT
1248: , x_msg_data => l_msg_data -- OUT

Line 1253: fnd_log.string(fnd_log.level_statement,g_log_head,'After PON_AUCTION_INTERFACE_PKG.maintain_clm_relations');

1249: , p_document_number => x_negotiation_id -- IN
1250: );
1251:
1252: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
1253: fnd_log.string(fnd_log.level_statement,g_log_head,'After PON_AUCTION_INTERFACE_PKG.maintain_clm_relations');
1254: fnd_log.string(fnd_log.level_statement,g_log_head,'l_return_status : '||l_return_status);
1255: END IF;
1256:
1257: if l_return_status <> FND_API.G_RET_STS_SUCCESS THEN

Line 1299: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.add_negotiation_invitees');

1295:
1296: --
1297:
1298: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
1299: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.add_negotiation_invitees');
1300: END IF;
1301:
1302: PON_AUCTION_INTERFACE_PKG.add_negotiation_invitees
1303: ( p_api_version => 1.0 -- IN

Line 1302: PON_AUCTION_INTERFACE_PKG.add_negotiation_invitees

1298: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
1299: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.add_negotiation_invitees');
1300: END IF;
1301:
1302: PON_AUCTION_INTERFACE_PKG.add_negotiation_invitees
1303: ( p_api_version => 1.0 -- IN
1304: , x_return_status => l_return_status -- OUT
1305: , x_msg_count => l_msg_count -- OUT
1306: , x_msg_data => l_msg_data -- OUT

Line 1312: fnd_log.string(fnd_log.level_statement,g_log_head,'After PON_AUCTION_INTERFACE_PKG.add_negotiation_invitees');

1308: , p_buyer_id => to_number(FND_PROFILE.VALUE('user_id')) -- IN
1309: );
1310:
1311: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
1312: fnd_log.string(fnd_log.level_statement,g_log_head,'After PON_AUCTION_INTERFACE_PKG.add_negotiation_invitees');
1313: fnd_log.string(fnd_log.level_statement,g_log_head,'l_return_status : '||l_return_status);
1314: END IF;
1315:
1316:

Line 1331: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.add_catalog_descriptors');

1327:
1328: --
1329:
1330: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
1331: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.add_catalog_descriptors');
1332: END IF;
1333:
1334:
1335: PON_AUCTION_INTERFACE_PKG.add_catalog_descriptors

Line 1335: PON_AUCTION_INTERFACE_PKG.add_catalog_descriptors

1331: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.add_catalog_descriptors');
1332: END IF;
1333:
1334:
1335: PON_AUCTION_INTERFACE_PKG.add_catalog_descriptors
1336: ( p_api_version => 1.0
1337: , p_document_number => x_negotiation_id
1338: , x_return_status => l_return_status
1339: , x_msg_count => l_msg_count

Line 1344: fnd_log.string(fnd_log.level_statement,g_log_head,'After PON_AUCTION_INTERFACE_PKG.add_catalog_descriptors');

1340: , x_msg_data => l_msg_data
1341: );
1342:
1343: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
1344: fnd_log.string(fnd_log.level_statement,g_log_head,'After PON_AUCTION_INTERFACE_PKG.add_catalog_descriptors');
1345: fnd_log.string(fnd_log.level_statement,g_log_head,'l_return_status : '||l_return_status);
1346: END IF;
1347:
1348:

Line 2924: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.add_negotiation_line');

2920: --
2921: x_progress := '007';
2922:
2923: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
2924: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.add_negotiation_line');
2925: END IF;
2926:
2927: PON_AUCTION_INTERFACE_PKG.add_negotiation_line
2928: ( p_document_number => p_auction_header_id

Line 2927: PON_AUCTION_INTERFACE_PKG.add_negotiation_line

2923: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
2924: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.add_negotiation_line');
2925: END IF;
2926:
2927: PON_AUCTION_INTERFACE_PKG.add_negotiation_line
2928: ( p_document_number => p_auction_header_id
2929: , p_contract_type => l_contract_type
2930: , p_origination_code => 'REQUISITION'
2931: , p_org_id => x_org_id

Line 2978: fnd_log.string(fnd_log.level_statement,g_log_head,'After PON_AUCTION_INTERFACE_PKG.add_negotiation_line');

2974: , p_error_message => api_error_msg
2975: );
2976:
2977: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
2978: fnd_log.string(fnd_log.level_statement,g_log_head,'After PON_AUCTION_INTERFACE_PKG.add_negotiation_line');
2979: END IF;
2980:
2981: -- logme(' Add Line for item ' || x_item_desc || ' api_result = ' || api_result || ' error code = ' || api_error_code || ' error_msg = ' || api_error_msg );
2982: -- logme ( ' The above line autocreated to ' || x_negotiation_line_num);

Line 3021: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.add_price_differential');

3017: -- logme( ' in price differentials');
3018: FOR l_price_diff_rec IN l_price_diff_csr(x_req_line_id) LOOP
3019:
3020: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
3021: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.add_price_differential');
3022: END IF;
3023:
3024: PON_AUCTION_INTERFACE_PKG.add_price_differential
3025: ( p_document_number => p_auction_header_id

Line 3024: PON_AUCTION_INTERFACE_PKG.add_price_differential

3020: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
3021: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.add_price_differential');
3022: END IF;
3023:
3024: PON_AUCTION_INTERFACE_PKG.add_price_differential
3025: ( p_document_number => p_auction_header_id
3026: , p_line_number => x_negotiation_line_num
3027: , p_shipment_number => -1
3028: , p_price_type => l_price_diff_rec.price_type

Line 3038: fnd_log.string(fnd_log.level_statement,g_log_head,'After PON_AUCTION_INTERFACE_PKG.add_price_differential');

3034: , p_error_message => api_error_msg
3035: );
3036:
3037: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
3038: fnd_log.string(fnd_log.level_statement,g_log_head,'After PON_AUCTION_INTERFACE_PKG.add_price_differential');
3039: END IF;
3040:
3041:
3042: IF ( api_result <> 0 ) -- API failure

Line 3085: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.maintain_clm_relations');

3081: -- in the negotiation lines table.
3082: x_progress := '010';
3083:
3084: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
3085: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.maintain_clm_relations');
3086: END IF;
3087:
3088: PON_AUCTION_INTERFACE_PKG.maintain_clm_relations(
3089: p_api_version => 1.0 -- IN

Line 3088: PON_AUCTION_INTERFACE_PKG.maintain_clm_relations(

3084: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
3085: fnd_log.string(fnd_log.level_statement,g_log_head,'Before PON_AUCTION_INTERFACE_PKG.maintain_clm_relations');
3086: END IF;
3087:
3088: PON_AUCTION_INTERFACE_PKG.maintain_clm_relations(
3089: p_api_version => 1.0 -- IN
3090: , x_return_status => l_return_status -- OUT
3091: , x_msg_count => l_msg_count -- OUT
3092: , x_msg_data => l_msg_data -- OUT

Line 3100: fnd_log.string(fnd_log.level_statement,g_log_head,'After PON_AUCTION_INTERFACE_PKG.maintain_clm_relations');

3096: , p_req_line_opt => x_clm_base_line_num
3097: );
3098:
3099: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
3100: fnd_log.string(fnd_log.level_statement,g_log_head,'After PON_AUCTION_INTERFACE_PKG.maintain_clm_relations');
3101: fnd_log.string(fnd_log.level_statement,g_log_head,'l_return_status : '||l_return_status);
3102: END IF;
3103:
3104: if l_return_status <> FND_API.G_RET_STS_SUCCESS THEN