问题标签 [acumatica]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
3 回答
1646 浏览

erp - Acumatica - 用户收到“会话已过期”

Web 用户在使用 Acumatica ERP 时收到“会话已过期”,我已根据文档对 Web Config 文件进行了以下更改:

  • 更改了 ReminderRequestPeriod
  • 报告超时设置
  • 查询超时设置
0 投票
1 回答
1264 浏览

asp.net - 如何通过 HTTP 虚拟路径将文件上传到 Acumatica 屏幕?

如何通过 HTTP 虚拟路径将文件上传到 Acumatica 屏幕?例如,我想将 mysite.com/files/abc.pdf 上传到销售订单屏幕。

0 投票
1 回答
215 浏览

email - 如何在 Acumatica 电子邮件模板上插入图像

如何在 Acumatica 电子邮件模板上插入图像。我想创建电子邮件的自定义标题和签名。我尝试了以下选项,但它们都不起作用:

  1. 尝试访问 Branch Logo 选项,但由于屏幕选择似乎不同,无法找到这些对象。
  2. 试图在模板上插入标签,但这也不起作用。
0 投票
1 回答
336 浏览

upload - 如何使用 acumatica 网络服务访问库存商品图像?

如何使用 Web 服务访问库存商品图像?似乎 Acumatica 只返回第一张图像,而不是整个数组?

0 投票
2 回答
682 浏览

gridview - 如何重命名 Acumatica 客户屏幕上的列名称?

如何重命名 Acumatica 客户屏幕上的列名称?

我在其他屏幕上尝试了以下方法,但对于客户页面,它似乎不起作用:

0 投票
1 回答
823 浏览

attributes - 如何在 Acumatica 报表标题中显示属性值?

如何在 Acumatica 报表标题中显示属性值?要求是在报表的标题信息中显示 Acumatica 业务帐户信息属性。例如,有一个属性说“特殊成员”,它的值是“是”。此信息应与其他 BAccount 表字段一起显示在报告标题中。

谁能指出我们需要使用什么 Join 来实现这一目标?在 Acumatica 报表设计器中,我们只有一个地方可以定义关系。如何关联这些信息,以及如何在报告标题中提取该信息?

0 投票
1 回答
822 浏览

web-services - Acumatica 错误:未能提交拆分行

在尝试使用 Acumatica Web 服务创建 Shipment 时,您能否帮助我们了解以下错误的根本原因?

错误:System.Web.Services.Protocols.SoapException:服务器无法处理请求。---> PX.Data.PXException: 错误 #241: 未能提交拆分行。

0 投票
2 回答
371 浏览

web-services - 为 Acumatica Web 服务建立会话

为 Acumatica Web 服务建立会话 我需要使用 Web 服务建立会话,然后使用该会话执行后续操作。例如,使用以前创建的会话/令牌使用 Web 服务创建 SOOrder 和 Shipment。

使用这个,我已经在 lresult.Session 中获得了一个会话。

现在,我想在下面的货件内容中使用此会话,而无需再次调用登录。

0 投票
1 回答
370 浏览

erp - 将 Bin/Lot/Serial 项目添加到 Acumatica 装运行

将 Bin/Lot/Serial 项目添加到 Acumatica 装运行我能够通过 Web 服务创建 Acumatica 装运,但在为网格中的每一行添加 Bin/Lot Number 时遇到问题。如果我在装运中只有一个文档详细信息行,它可以正常工作,但是当文档详细信息中有多个行时,代码似乎不起作用。请在下面找到我用来实现此目的的 Acumatica 代码。

我也试过下面的代码:

0 投票
2 回答
2190 浏览

c# - Acumatica Web Services API Login

I am attempting to perform some basic integration using Acumatica's web services. Unfortunatly, I'm having problems logging in. According to their documentation, this process should look something like:

Simple enough. However, after creating and importing a WSDL file from Acumatica into Visual Studio, I found I don't have a Screen object. I do, however have a ScreenSoapClient object, which has a similar Login() method.

That part works. In fact, the LoginResult give me a session ID. However, if I try to make any calls to the service, such as:

I get an error: System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> PX.Data.PXNotLoggedInException: Error #185: You are not currently logged in.

While the version of Acumatica we're using does appear to be slightly newer, I'm unsure why the Screen() object isn't available. Consequently, if I try a bad username/password, Login() does fail (as it should). From what I can the tell, the ScreenSoapClient class is using service model details from web.config, so it's getting the endpoint address and other details there.

Is there something I'm missing or doing wrong?