Vendor code “Vendor number” is not authorized for “item number”

2024-01-13 15:32

本文主要是介绍Vendor code “Vendor number” is not authorized for “item number”,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

用新创建的料号创建采购订单的时候遇到类似下面的错误:


Vendor code “Vendor number” is not authorized for “item number”http://community.dynamics.com/ax/b/daxbeginners/archive/2014/06/11/vendor-code-vendor-number-is-not-authorized-for-item-number


有两个地方可以解决:

1.在发布的产品里面,采购Tab将出问题的供应商增加到已审核的供应商列表

2.将已发布的产品采购标签已审核的供应商检查方法设置为不检查。


可以参考英文的一篇文章:

Good day everyone! This is a tip for developers who are struggling with mysterious warning messages when creating a Purchase Order. When adding an item to a purchase order, you might get the  error/warning:

Vendor code “Vendor number” is not authorized for “item number”

This is a configuration error. In AX 2012, you can specify which items can be purchased from what vendors. This prevents the purchasing/buyers departments from purchasing items from a variety of vendors at different prices and qualities.

How to enable this Item to your vendor.

You can setup approved vendors by navigating to the Released products (Product information management/Common/Released products). Click on the Purchase tab in the navigation ribbon and click Setup under the Approved vendor group. Here you can specify the approved vendors with valid to/from date.

Product information management/Common/Released products — Edit Product

Add the vendor to the specific product and we are done!


How do I change the Approved Vendor check method?

On an item by item basis (e.g. setting on Released Products), we can specify if we want to ignore the approved vendor lists functionality (No check), only throw an error if the vendor should not purchase from the order (Warning only), or halt the entire process (Not allowed). To change it, edit the product you want and on Purchase Fast Tab change the Approved Vendor properties.

Product information management/Common/Released products — Edit Product — Purchase Fast Tab




这篇关于Vendor code “Vendor number” is not authorized for “item number”的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/601935

相关文章

usaco 1.2 Name That Number(数字字母转化)

巧妙的利用code[b[0]-'A'] 将字符ABC...Z转换为数字 需要注意的是重新开一个数组 c [ ] 存储字符串 应人为的在末尾附上 ‘ \ 0 ’ 详见代码: /*ID: who jayLANG: C++TASK: namenum*/#include<stdio.h>#include<string.h>int main(){FILE *fin = fopen (

题目1380:lucky number

题目1380:lucky number 时间限制:3 秒 内存限制:3 兆 特殊判题:否 提交:2839 解决:300 题目描述: 每个人有自己的lucky number,小A也一样。不过他的lucky number定义不一样。他认为一个序列中某些数出现的次数为n的话,都是他的lucky number。但是,现在这个序列很大,他无法快速找到所有lucky number。既然

Debugging Lua Project created in Cocos Code IDE creates “Waiting for debugger to connect” in Win-7

转自 I Installed Cocos Code IDE and created a new Lua Project. When Debugging the Project(F11) the game window pops up and gives me the message waiting for debugger to connect and then freezes. Also a

LLVM入门2:如何基于自己的代码生成IR-LLVM IR code generation实例介绍

概述 本节将通过一个简单的例子来介绍如何生成llvm IR,以Kaleidoscope IR中的例子为例,我们基于LLVM接口构建一个简单的编译器,实现简单的语句解析并转化为LLVM IR,生成对应的LLVM IR部分,代码如下,文件名为toy.cpp,先给出代码,后面会详细介绍每一步分代码: #include "llvm/ADT/APFloat.h"#include "llvm/ADT/S

Jenkins 通过 Version Number Plugin 自动生成和管理构建的版本号

步骤 1:安装 Version Number Plugin 登录 Jenkins 的管理界面。进入 “Manage Jenkins” -> “Manage Plugins”。在 “Available” 选项卡中搜索 “Version Number Plugin”。选中并安装插件,完成后可能需要重启 Jenkins。 步骤 2:配置版本号生成 打开项目配置页面。在下方找到 “Build Env

VS Code 调试go程序的相关配置说明

用 VS code 调试Go程序需要在.vscode/launch.json文件中增加如下配置:  // launch.json{// Use IntelliSense to learn about possible attributes.// Hover to view descriptions of existing attributes.// For more information,

MTK Android P/Q system/vendor/super快速打包

一、Android 新版本默认开启了动态分区,把system vendor  product等分区打包成一个super分区。这对于我们使用替换分区的方法来排查问题不是很方便,直接替换一个super也不知道到底是哪个部分导致的。所以我们需要自己制作super.img来缩小范围。下面讲讲如何快速生成system、vendor、super,以及vbmeta(校验image,不匹配可能会导致不开机) 二

code: 400, msg: Required request body is missing 错误解决

引起这个错误的原因是,请求参数按照get方式给。 应该给json字符串才对 补充: 1. @RequestBody String resource 加@RequestBody必须给json字符串,否则会报错400,记如标题错误。 不加这个的进行请求的话,其实post和get就没有什么区别了。 2. List<String> indexCodes=(List<String>)json.

【Hdu】Minimum Inversion Number(逆序,线段树)

利用线段树在nlogn的时间复杂度内求一段数的逆序。 由于给的序列是由0 ~ n -1组成的,求出初始的逆序之后可以递推出移动之后的逆序数。 #include<cstdio>#include<iostream>#include<cstring>#include<algorithm>using namespace std;typedef long long LL;const in

【JavaScript】基本数据类型与引用数据类型区别(及为什么String、Boolean、Number基本数据类型会有属性和方法?)

基本数据类型   JavaScript基本数据类型包括:undefined、null、number、boolean、string。基本数据类型是按值访问的,就是说我们可以操作保存在变量中的实际的值。 1)基本数据类型的值是不可变的 任何方法都无法改变一个基本类型的值,比如一个字符串: var name = "change";name.substr();//hangconsole.log