DBA Data[Home] [Help]

APPS.MRP_PO_RESCHEDULE dependencies on FND_API

Line 733: p_init_msg_list => FND_API.G_TRUE,

729:
730: debug_message('Updating document...');
731: -- Call the PO Change API.
732: PO_DOCUMENT_UPDATE_GRP.update_document (p_api_version => 1.0,
733: p_init_msg_list => FND_API.G_TRUE,
734: x_return_status => l_po_return_status,
735: p_changes => l_changes,
736: p_run_submission_checks => FND_API.G_TRUE,
737: p_launch_approvals_flag => FND_API.G_TRUE,

Line 736: p_run_submission_checks => FND_API.G_TRUE,

732: PO_DOCUMENT_UPDATE_GRP.update_document (p_api_version => 1.0,
733: p_init_msg_list => FND_API.G_TRUE,
734: x_return_status => l_po_return_status,
735: p_changes => l_changes,
736: p_run_submission_checks => FND_API.G_TRUE,
737: p_launch_approvals_flag => FND_API.G_TRUE,
738: p_buyer_id => NULL,
739: p_update_source => NULL,
740: p_override_date => NULL,

Line 737: p_launch_approvals_flag => FND_API.G_TRUE,

733: p_init_msg_list => FND_API.G_TRUE,
734: x_return_status => l_po_return_status,
735: p_changes => l_changes,
736: p_run_submission_checks => FND_API.G_TRUE,
737: p_launch_approvals_flag => FND_API.G_TRUE,
738: p_buyer_id => NULL,
739: p_update_source => NULL,
740: p_override_date => NULL,
741: x_api_errors => l_po_api_errors

Line 746: IF (l_po_return_status <> fnd_api.G_RET_STS_SUCCESS) THEN

742: );
743:
744: debug_message('Return status: ' || l_po_return_status);
745:
746: IF (l_po_return_status <> fnd_api.G_RET_STS_SUCCESS) THEN
747: -- handle error
748: FOR i IN 1..l_po_api_errors.message_text.COUNT LOOP
749: debug_message( l_po_api_errors.message_text(i) );
750: END LOOP;