[也适用于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 type 表单 文件。

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

    note note
    NOTE
    详细了解 表单 键入文件,请参阅 此页面.

    在本例中, 表单 文件必须基于 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 type 导航树 文档。

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

    note note
    NOTE
    有关更多详细信息 导航树 键入文件,请参阅 此页面.

    在本例中, 导航树 文件必须基于 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