Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

The 4th edition of the Campaign Community Lens newsletter is out now!
SOLVED

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 Accepted Solution

Avatar

Correct answer by
Community Advisor

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

5 Replies

Avatar

Community Advisor

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

Correct answer by
Community Advisor

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

Community Advisor

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>