如何将 SendQuote 操作添加到移动应用程序

How do I add the SendQuote Action to the Mobile App

我正在尝试从 Web 应用程序的操作菜单中将发送报价操作添加到移动应用程序。这是在销售报价屏幕 (CR304500) 上。我遵循了移动框架指南中的文档,并且能够添加其他按钮。我用于手机屏幕的代码是

update screen CR304500 {
    update container "QuoteSummary" {
        add recordAction "SendQuote" {
            behavior = Void
        }
    }
}

提前致谢。

原来因为是在Actions文件夹里,所以不得不按如下方式输入。

update screen CR304500 {
  update container "QuoteSummary" {
    add recordAction "SendQuoteActionsFolder" {
      behavior = Void
    }
  }
}