[v8에도 적용됩니다.]{class="badge positive" title="Campaign v8에도 적용됩니다."}

AB 테스트: 스크립트 만들기 step-5--creating-the-script

나머지 모집단으로 지정된 게재 콘텐츠 선택은 스크립트에 의해 계산됩니다. 이 스크립트는 열람 비율이 가장 높은 게재와 관련된 정보를 복구하고 콘텐츠를 최종 게재에 복사합니다.

스크립트 예 example-of-a-script

타겟팅 워크플로우에서 다음 스크립트를 있는 그대로 사용할 수 있습니다. 이 작업에 대한 자세한 정보는 이 섹션을 참조하십시오.

 // query the database to find the winner (best open rate)
   var winner = xtk.queryDef.create(
     <queryDef schema="nms:delivery" operation="get">
       <select>
         <node expr="@id"/>
         <node expr="@label"/>
         <node expr="[@operation-id]"/>
         <node expr="[@workflow-id]"/>
       </select>
       <where>
         <condition expr={"@FCP=0 and [@workflow-id]= " + instance.id}/>
       </where>
       <orderBy>
         <node expr="[indicators/@estimatedRecipientOpenRatio]" sortDesc="true"/>
       </orderBy>
     </queryDef>).ExecuteQuery()

   // create a new delivery object and initialize it by doing a copy of
   // the winner delivery
   var delivery = nms.delivery.create()
   delivery.Duplicate("nms:delivery|" + winner.@id)

   // append 'final' to the delivery label
   delivery.label = winner.@label + " final"

   // link the delivery to the operation to make sure it will be displayed in
   // the campaign dashboard. This attribute needs to be set manually here since
   // the Duplicate() method has reset it to its default value => 0
   delivery.operation_id = winner.@["operation-id"]
   delivery.workflow_id = winner.@["workflow-id"]

   // adjust some delivery parameters to make it compatible with the
   // "Prepare and start" option selected in the Delivery tab of this activity
   delivery.scheduling.validationMode = "manual"
   delivery.scheduling.delayed = 0

   // save the delivery in database
   delivery.save()

   // store the new delivery Id in event variables
   vars.deliveryId = delivery.id

스크립트에 대한 자세한 설명은 이 섹션을 참조하세요.

구현 implementation

  1. JavaScript code 활동을 엽니다.

  2. 스크립트 예제에서 제공된 스크립트를 JavaScript code 창에 복사합니다.

  3. Label 필드에 스크립트 이름을 입력합니다(예: ).

    code language-none
    <%= vars.deliveryId %>
    

  4. JavaScript code 활동을 닫습니다.

  5. 워크플로우를 저장합니다.

스크립트 세부 사항 details-of-the-script

이 섹션에서는 스크립트의 다양한 부분과 해당 운영 모드에 대해 자세히 설명합니다.

  • 스크립트의 첫 번째 부분은 쿼리입니다. queryDef 명령을 사용하면 타깃팅 워크플로우를 실행하여 만들어진 게재를 NmsDelivery 테이블에서 복구하고 예상 열기 속도를 기준으로 정렬할 수 있으므로 열기 비율이 가장 높은 게재 정보가 복구됩니다.

    code language-none
    // query the database to find the winner (best open rate)
       var winner = xtk.queryDef.create(
         <queryDef schema="nms:delivery" operation="get">
           <select>
             <node expr="@id"/>
             <node expr="@label"/>
             <node expr="[@operation-id]"/>
           </select>
           <where>
             <condition expr={"@FCP=0 and [@workflow-id]= " + instance.id}/>
           </where>
           <orderBy>
             <node expr="[indicators/@estimatedRecipientOpenRatio]" sortDesc="true"/>
           </orderBy>
         </queryDef>).ExecuteQuery()
    
  • 열람률이 가장 높은 게재가 복제됩니다.

    code language-none
     // create a new delivery object and initialize it by doing a copy of
     // the winner delivery
    var delivery = nms.delivery.create()
    delivery.Duplicate("nms:delivery|" + winner.@id)
    
  • 복제된 게재의 레이블이 수정되고 final ​이라는 단어가 추가됩니다.

    code language-none
    // append 'final' to the delivery label
    delivery.label = winner.@label + " final"
    
  • 게재가 캠페인 대시보드에 복사됩니다.

    code language-none
    // link the delivery to the operation to make sure it will be displayed in
    // the campaign dashboard. This attribute needs to be set manually here since
    // the Duplicate() method has reset it to its default value => 0
    delivery.operation_id = winner.@["operation-id"]
    delivery.workflow_id = winner.@["workflow-id"]
    
    code language-none
    // adjust some delivery parameters to make it compatible with the
    // "Prepare and start" option selected in the Delivery tab of this activity
    delivery.scheduling.validationMode = "manual"
    delivery.scheduling.delayed = 0
    
  • 게재가 데이터베이스에 저장됩니다.

    code language-none
    // save the delivery in database
    delivery.save()
    
  • 복제된 게재의 고유 식별자는 워크플로우 변수에 저장됩니다.

    code language-none
    // store the new delivery Id in event variables
    vars.deliveryId = delivery.id
    

기타 선택 기준 other-selection-criteria

위의 예에서는 이메일 열람률에 따라 게재 콘텐츠를 선택할 수 있습니다. 다른 게재별 지표를 기반으로 하도록 조정할 수 있습니다.

  • 최고 클릭 처리량: [indicators/@recipientClickRatio],
  • 가장 높은 반응성 비율(이메일 열기 및 메시지 클릭 수): [indicators/@reactivity],
  • 가장 낮은 불만 비율: [indicators/@refusedRatio](sortDesc 특성에 대해 false 값 사용),
  • 최고 전환율: [indicators/@transactionRatio],
  • 메시지를 받은 후 방문한 페이지 수: [indicators/@totalWebPage],
  • 가장 낮은 구독 취소율: [indicators/@optOutRatio],
  • 거래 금액: [indicators/@amount].

이제 최종 게재를 정의할 수 있습니다. 자세히 알아보기.

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