Acumatica中在流程屏幕上附加文件无法正常工作
创始人
2024-07-25 14:01:44
0

在Acumatica中,如果在流程屏幕上添加文件无法正常工作,则可能是由于缺少可选的文件类别字段导致的。因此,解决此问题的一种方法是在流程屏幕上添加一个可选的文件类别字段,然后在代码中定义这个字段。

以下示例演示了如何在Acumatica中添加可选文件类别字段,并使用该字段将文件附加到单个处理记录中:

1.在自定义数据字段屏幕上,创建一个“File Category”字段。

2.然后,在流程屏幕上添加该字段。

3.最后,在代码中使用该字段将文件附加到单个处理记录中:

protected void AddFileToProcessingRecord(PXGraph graph, string category, Guid noteid, byte[] content, string name) { const int FileCount = 1;

// Create a new instance of the File Maintenance graph, which is used to attach the file to the record. UploadFileMaintenance fileGraph = PXGraph.CreateInstance();

// Create a new instance of the File class, which represents the file attachment. PX.SM.FileInfo file = new PX.SM.FileInfo(name, null, content);

// Set the file category. file.GraphType = typeof(ProcessingGraph); file.GraphTypeFullName = typeof(ProcessingGraph).FullName; file.BAccountID = Processing.Current.BAccountID; file.CustomerID = Processing.Current.CustomerID; file.Category = category;

try { fileGraph.SaveFile(FileCount, null, noteid, file); } catch (Exception ex) { throw new PXException(ex, "Error attaching file to processing record."); } }

在上面的代码中,"category"参数是文件类别,"noteid"参数是处理记录的Note ID,"content"参数是文件内容的字节数组,"name"参数是文件名称。

使用此代码可以将文件作为附件添加到处理记录中。

解决此问题后,应该可以在Acumatica的流程屏幕上正常附加文件了,从而使业务流程更加顺畅。

相关内容

热门资讯

Android Recycle... 要在Android RecyclerView中实现滑动卡片效果,可以按照以下步骤进行操作:首先,在项...
安装apache-beam==... 出现此错误可能是因为用户的Python版本太低,而apache-beam==2.34.0需要更高的P...
Android - 无法确定任... 这个错误通常发生在Android项目中,表示编译Debug版本的Java代码时出现了依赖关系问题。下...
Android - NDK 预... 在Android NDK的构建过程中,LOCAL_SRC_FILES只能包含一个项目。如果需要在ND...
Alertmanager在pr... 首先,在Prometheus配置文件中,确保Alertmanager URL已正确配置。例如:ale...
Akka生成Actor问题 在Akka框架中,可以使用ActorSystem对象生成Actor。但是,当我们在Actor类中尝试...
Agora-RTC-React... 出现这个错误原因是因为在 React 组件中使用,import AgoraRTC from “ago...
Aksnginxdomainb... 在AKS集群中,可以使用Nginx代理服务器实现根据域名进行路由。以下是具体步骤:部署Nginx i...
AddSingleton在.N... 在C#中创建Singleton对象通常是通过私有构造函数和静态属性来实现,例如:public cla...
apache子目录二级域名 Apache是一款流行的Web服务器软件,它允许用户使用子目录作为二级域名。使用Apache作为服务...