Filemaker:将记录从一个 table 复制到另一个

Filemaker: Copying records from one table to another

我有一个包含 table 个(案例、知识库)的数据库

案例 table 具有链接到特定客户的字段

知识库table是独立的,不关心客户。

我想让用户偶尔点击一个按钮,将他们的解决方案(从案例 Table)复制到知识库中的新记录 table(只有两个字段,desc,解决方案)

我只是不知道'copy'

的步骤

大致:

Set Variable [$desc; Value:  Case::desc]
Set Variable [$solution; Value:  Case::solution]
Go to Layout [ Knowledgebase ]
New Record/Request
Set Field [Knowledgebase::desc; $desc]
Set Field [Knowledgebase::solution; $solution]
Commit Records []