


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.
Please let me know where I can find the logic for template's bottom part.
Thanks,
Views
Replies
Sign in to like this content
Total Likes
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.
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.
I want to know where I can find the logic of execution folder.
what is the name of input form or schema.
Regards
Tejashri
Views
Replies
Sign in to like this content
Total Likes
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.
Thank you @Anita_punmiya
Views
Replies
Sign in to like this content
Total Likes
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>
Views
Replies
Sign in to like this content
Total Likes