Hi @Mohamed_AliAL ,
Mostly this error occurs when the build number for both the source and target instances are different.
In the package XML, update the build number and version number as same as target environment.<package author="abc" buildNumber="9123" buildVersion="8.1">
@KD1 , One observation is, In both cases the deptid will act as a primary key and it won't allow to insert a duplicate deptid record. However, If you define internal="true", then in Schema structure (in client console UI) you can able to see a key icon near to the attribute.
If it is not defined, t...
Hi @KD1 ,
internal="true" is mandatory to define an attribute as a primary key.
internal (boolean): if it is activated, this attribute lets Adobe Campaign know that the key is primary.
Reference document
Hi @AlistairKi ,
Refer this blog to create JS in the workflow and automate it. (Test the script in lower environment)
Use QueryDef to fetch the deliverId and pass it on the below script as vars.deliverId,
var nmsDeliveryDirtyFlags_tracking = 1; // tracking logs (1)
var nmsDeliveryDirtyFlags_messageC...
Hi @AlistairKi ,
Navigate to /Administration/Campaign Management/Technical delivery templates/ folder > Right click the folder > Properties.. > Security > add the operator groups and provide them 'Read data' access rights.
@Arthur_Le_Bris_U-Tech , You can try the below,
<body>
<%
var currentDate = new Date();
var Date1 = new Date('2025-07-15');
var Date2 = new Date('2025-08-22');
var Date3 = new Date('2025-08-23');
var Date4 = new Date('2025-08-30');
%>
<% if (currentDate >= Date1 && currentDate <= Date2) { %>
<p>...
Hi @Arthur_Le_Bris_U-Tech ,
You can use formatDate and get the 'month' value for personalization,
<% if ( formatDate(new Date(), "%2M") == '01' ) { %>
Insert content here for January Month
<% } %>