Leiste mit Community-Erfolgen erweitern.

Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

Diese Konversation wurde aufgrund von Inaktivität geschlossen. Bitte erstellen Sie einen neuen Post.

GELÖST

Modify delivery template

Avatar

Level 4

Hi,

 

When I open any delivery template and click on properties, it shows below properties window.

I want to modify the bottom part of the template. I search the "Execution folder" logic in nms:delivery and nms:newDelivery input form but didn't find label in input form.

 

tejashriw155148_0-1592980190995.png

 

Please let me know where I can find the logic for template's bottom part.

 

Thanks,

1 Akzeptierte Lösung

Avatar

Korrekte Antwort von
Level 7

Hi @tejashriw155148 

 

Here are the screenshots from nms:delivery schema and nms:delivery form to check the Execution Folder (folderProcess). You need to look around in the schema/form for the details.

 

Screen Shot 2020-06-24 at 10.18.54 pm.png

Screen Shot 2020-06-25 at 11.43.37 am.png

Lösung in ursprünglichem Beitrag anzeigen

5 Antworten

Avatar

Level 7

Hi @tejashriw155148 ,

 

Not sure, if I have followed your question correctly, but if you are looking to change the Execution Folder/Routing , it is best to duplicate the existing template and make the changes in your custom delivery template and reuse it.

 

Thanks.

Avatar

Level 4

Hi @Anita_punmiya 

 

I want to know where I can find the logic of execution folder. 

what is the name of input form or schema.

 

Regards

Tejashri

 

Avatar

Korrekte Antwort von
Level 7

Hi @tejashriw155148 

 

Here are the screenshots from nms:delivery schema and nms:delivery form to check the Execution Folder (folderProcess). You need to look around in the schema/form for the details.

 

Screen Shot 2020-06-24 at 10.18.54 pm.png

Screen Shot 2020-06-25 at 11.43.37 am.png

Avatar

Level 4

Thank you @Anita_punmiya 

 

Avatar

Level 9

Hi @tejashriw155148 I think you are asking for where the bottom three elements in the nms:delivery form are defined?

Look around for the xpath for folderProcess and folder elements

The first one looks like this:

<container colspan="2" type="visibleGroup" visibleIf="@isModel and ([/ignored/@dlvNotReady]='' or [/tmp/@showFolder]==1)">
        <input img="nms:campaign.png" xpath="folderProcess">
          <sysFilter>
            <condition expr="@model = 'nmsDelivery'"/>
          </sysFilter>
        </input>
        <input img="nms:deliveryModel.png" writeAccess="true" xpath="folder">
          <sysFilter>
            <condition expr="@model = 'nmsDeliveryModel'"/>
          </sysFilter>
        </input>
      </container>