[也适用于v8]{class="badge positive" title="也适用于Campaign v8"}

配置接口 configuring-the-interface

要在Adobe Campaign界面中查看新收件人表并与其对话,请应用以下步骤:

  • 创建新表单以编辑新收件人表的内容。
  • 在浏览器树的文件夹中输入新类型。
  • 创建新的Web应用程序,以通过Adobe Campaign主页访问自定义表。

Adobe Campaign使用“Nms_DefaultRcpSchema”全局变量与默认收件人数据库(nms:recipient)进行对话。 因此,需要更改此变量。

  1. 转到资源管理器的​ Administration>Platform>Options ​节点。
  2. 将​ Nms_DefaultRcpSchema ​变量的值更改为与外部收件人表匹配的架构名称(在本例中为cus:individual)。
  3. 保存更改。

创建新表单 creating-a-new-form-

创建新表单后,您可以查看和编辑外部收件人表的数据。

IMPORTANT
表单的名称必须与它涉及的架构的名称相同。
  1. 转到资源管理器的​ 管理>配置>输入表单 ​节点。

  2. 创建新的​ xtk:form ​类型​ 表单 ​文件。

  3. 根据表模板说明所需的所有监视和字段。

    note note
    NOTE
    要了解有关​ 表单 ​类型文件的详细信息,请参阅此页面

    在我们的当前示例中,form ​文件必须基于​ cus:individual ​架构,因此具有以下布局:

    code language-none
    <container colspan="2">
        <input xpath="@id"/>
        <static type="separator"/>
    </container>
    <container colcount="2">
        <input xpath="@lastName"/>
        <input xpath="@firstName"/>
        <input xpath="@email"/>
        <input xpath="@mobile"/>
    </container>
    
  4. 保存创建。

在导航层次结构中创建新类型的文件夹 creating-a-new-type-of-folder-in-the-navigation-hierarchy

  1. 转到​ Administration>Configuration>Navigation hierarchies ​节点。

  2. 创建新的​ xtk:navtree ​类型​ navtree ​文档。

  3. 根据表模板说明所需的所有监视和字段。

    note note
    NOTE
    有关​ 导航树 ​类型文件的详细信息,请参阅此页面

    在当前示例中,navtree ​文件必须基于​ cus:individual ​架构,因此具有以下形式:

    code language-none
     <model name="root">
        <nodeModel img="nms:usergrp.png" label="My recipient table" name="cusindividual">
          <view name="listdet" schema="cus:individual" type="listdet">
            <columns>
              <node xpath="@id"/>
              <node xpath="@lastName"/>
              <node xpath="@firstName"/>
              <node xpath="@email"/>
              <node xpath="@mobile"/>
            </columns>
          </view>
        </nodeModel>
    </model>
    
  4. 保存创建。

recommendation-more-help
601d79c3-e613-4db3-889a-ae959cd9e3e1