[也適用於v8]{class="badge positive" title="亦適用於Campaign v8"}

設定介面 configuring-the-interface

若要在Adobe Campaign介面中檢視新收件者表格並與之對話,請套用下列步驟:

  • 建立新表單以編輯新收件者表格的內容。
  • 在總管樹狀結構的資料夾中輸入新型別。
  • 建立新的網站應用程式,以透過Adobe Campaign首頁存取自訂表格。

Adobe Campaign使用「Nms_DefaultRcpSchema」全域變數與預設收件者資料庫(nms:recipient)對話。 因此,需要變更此變數。

  1. 前往總管的​ Administration>Platform>Options ​節點。
  2. 以符合外部收件者資料表的結構描述名稱(在此案例中為: cus:individual),變更​ Nms_DefaultRcpSchema ​變數的值。
  3. 儲存變更。

建立新表單 creating-a-new-form-

建立新表單可讓您檢視及編輯外部收件者表格的資料。

IMPORTANT
表單的名稱必須與其關注的結構描述名稱相同。
  1. 前往總管的​ 管理>設定>輸入表單 ​節點。

  2. 建立新的​ xtk:form ​型別​ 表單 ​檔案。

  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 ​型別​ navtree ​檔案。

  3. 根據您的表格範本,說明您需要的所有監控和欄位。

    note note
    NOTE
    如需​ navtree ​型別檔案的詳細資訊,請參閱此頁面

    在目前的範例中,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