DBA Data[Home] [Help]

APPS.MRP_PO_RESCHEDULE dependencies on FND_API

Line 745: p_init_msg_list => FND_API.G_TRUE,

741: --call the Cancel API
742:
743: PO_Document_Control_GRP.control_document(
744: p_api_version => 1.0,
745: p_init_msg_list => FND_API.G_TRUE,
746: p_commit => FND_API.G_TRUE,
747: x_return_status => x_return_status,
748: p_doc_type => l_doc_type,
749: p_doc_subtype => l_doc_subtype,

Line 746: p_commit => FND_API.G_TRUE,

742:
743: PO_Document_Control_GRP.control_document(
744: p_api_version => 1.0,
745: p_init_msg_list => FND_API.G_TRUE,
746: p_commit => FND_API.G_TRUE,
747: x_return_status => x_return_status,
748: p_doc_type => l_doc_type,
749: p_doc_subtype => l_doc_subtype,
750: p_doc_id => v_po_header_id(i),

Line 766: IF (x_return_status <> FND_API.G_RET_STS_SUCCESS) THEN

762: p_cancel_reqs_flag => null,
763: p_print_flag => null,
764: p_note_to_vendor =>null);
765:
766: IF (x_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
767: retcode := 1;
768: LOG_MESSAGE('x_return_status returned by API PO_Document_Control_GRP.control_document = '
769: ||x_return_status);
770: LOG_MESSAGE('PO cancellation was not successful');

Line 934: p_init_msg_list => FND_API.G_TRUE,

930:
931: debug_message('Updating document...');
932: -- Call the PO Change API.
933: PO_DOCUMENT_UPDATE_GRP.update_document (p_api_version => 1.0,
934: p_init_msg_list => FND_API.G_TRUE,
935: x_return_status => l_po_return_status,
936: p_changes => l_changes,
937: p_run_submission_checks => FND_API.G_TRUE,
938: p_launch_approvals_flag => FND_API.G_TRUE,

Line 937: p_run_submission_checks => FND_API.G_TRUE,

933: PO_DOCUMENT_UPDATE_GRP.update_document (p_api_version => 1.0,
934: p_init_msg_list => FND_API.G_TRUE,
935: x_return_status => l_po_return_status,
936: p_changes => l_changes,
937: p_run_submission_checks => FND_API.G_TRUE,
938: p_launch_approvals_flag => FND_API.G_TRUE,
939: p_buyer_id => NULL,
940: p_update_source => NULL,
941: p_override_date => NULL,

Line 938: p_launch_approvals_flag => FND_API.G_TRUE,

934: p_init_msg_list => FND_API.G_TRUE,
935: x_return_status => l_po_return_status,
936: p_changes => l_changes,
937: p_run_submission_checks => FND_API.G_TRUE,
938: p_launch_approvals_flag => FND_API.G_TRUE,
939: p_buyer_id => NULL,
940: p_update_source => NULL,
941: p_override_date => NULL,
942: x_api_errors => l_po_api_errors

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

943: );
944:
945: debug_message('Return status: ' || l_po_return_status);
946:
947: IF (l_po_return_status <> fnd_api.G_RET_STS_SUCCESS) THEN
948: -- handle error
949: FOR i IN 1..l_po_api_errors.message_text.COUNT LOOP
950: debug_message( l_po_api_errors.message_text(i) );
951: END LOOP;