首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

Acumatica GI自定义-添加总行列

是指在Acumatica GI(Generic Inquiry)自定义中添加总行和总列的操作。

概念: Acumatica GI是Acumatica ERP系统中的一个功能,用于创建和自定义数据查询和报表。通过GI,用户可以根据自己的需求定义数据查询,并将结果以表格或图表的形式展示出来。

分类: Acumatica GI自定义-添加总行列属于GI自定义的一种操作,用于在查询结果中添加总行和总列。

优势: 通过添加总行列,可以方便地对查询结果进行汇总和统计,从而更好地分析和理解数据。

应用场景: 添加总行列适用于需要对查询结果进行汇总和统计的场景,比如销售报表中的销售总额、利润总额等统计数据。

推荐的腾讯云相关产品: 腾讯云提供了一系列的云计算产品,其中与Acumatica GI自定义-添加总行列相关的产品包括:

  1. 云服务器(CVM):提供可扩展的计算能力,用于部署和运行Acumatica ERP系统。 产品介绍链接:https://cloud.tencent.com/product/cvm
  2. 云数据库MySQL版:提供高性能、可扩展的MySQL数据库服务,用于存储和管理Acumatica ERP系统的数据。 产品介绍链接:https://cloud.tencent.com/product/cdb_mysql
  3. 云原生容器服务(TKE):提供高可用、弹性伸缩的容器集群管理服务,用于部署和运行Acumatica GI自定义-添加总行列相关的应用程序。 产品介绍链接:https://cloud.tencent.com/product/tke

请注意,以上推荐的腾讯云产品仅供参考,具体选择应根据实际需求进行评估和决策。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

  • 笔记:NEC QTP 第二个实例

    Set testWindow=new ClassJavaWindow testWindow.SetJavaWindow("User Login") Set inputSheet=new Sheet inputsheet.SetSheet("Action1") rem 定义用户名输入框 Dim editUser set editUser=testWindow.GetChildEdit("User:") rem 定义密码输入框 Dim editPwd set editPwd=testWindow.GetChildEdit("Password:") editUser.set "yinzihao" editPwd.set "yzh" Class Sheet '定义一些变量 private m_AllRowCount,m_SheetTable rem 定义表实例 Public function SetSheet(sheetName) set    m_SheetTable=DataTable.GetSheet(sheetName) End function rem 只读属性:总行数 Public Property Get AllRowCount         AllRowCount = GetAllRowCount() End Property rem 方法,获取行列值 Public function GetRowColData(row,colname)         GetRowColData=m_SheetTable.GetParameter(colname).ValueByRow(row) End function rem 此方法获取表行数 Private Function GetAllRowCount()       GetAllRowCount= m_SheetTable.GetRowCount rem 获取总行数         End Function End Class Class ClassJavaWindow '定义一些变量 private m_JavaWindow Private m_ChildEdit     rem 根据title定义窗口实例 Public function SetJavaWindow(title) set    m_JavaWindow=JavaWindow("title:="&title) End function rem 方法,获取该窗口中的一个edit public function GetChildEdit(attachedtext) Set m_ChildEdit=new ClassJavaEdit         m_ChildEdit.SetJavaEdit m_JavaWindow,attachedtext set GetChildEdit=m_ChildEdit.ItSelf End function End Class Class ClassJavaEdit Private m_JavaEdit rem 根据父窗口和attachedText定义实例 Public function SetJavaEdit(parent,attachedtext) set    m_JavaEdit=parent.JavaEdit("attached text:="&attachedtext) End function rem 只读属性:返回自身 Public Property Get ItSelf set    ItSelf = m_JavaEdit End Property End Class

    04
    领券