Hi @CampaignerForLife,In v7, these issues are usually UI or cache-related, especially after copying activities. You might see warnings like “Document types are incompatible” when reloading.When using “Use data from the target and additional data” in the General tab, make sure populations don’t overl...
Hi @kquintin,If the sequence key reaches its maximum value — even for negative IDs — the recommended approach is to create a new schema with a custom sequence key usingint64, and then migrate all existing data into this new schema.Do not copy over the old primary key (sequence key) values, as the ne...
Hi @KevinQU4,If you’ve created a custom sequence key for your custom schema, it’s possible that the sequence has been fully exhausted. This can lead to database errors such as “duplicate key” violations during insert operations. Such issues can disrupt processes like workflow executions, data import...
@DattaSutar,To achieve this use case by designing two interconnected workflows: an hourly one to process incoming segment files and handle immediate welcome emails for enrolled students, while accumulating non-enrolled student data in a persistent temporary table grouped by department or List. A sep...
Hi @at7140,The “missing separator” error means the input file format doesn’t match the expected delimiter or structure. To avoid losing records, always validate the file structure, enforce consistent delimiters, handle special characters properly, and configure the Data Loading activity with the cor...
Hi @A_B_SE, By default, workflows started via JavaScript API methods such as xtk.workflow.Start() run under the operator executing the script. Currently, there is no built-in JavaScript or API feature that allows you to start or impersonate a workflow as a different operator dynamically within the s...
Hi @A_B_SE,I suggest using a workflow to query the workflow schema in order to retrieve the workflow names, internal names, or primary keys (PK) of the workflows that are currently in the "start" status. Save this list somewhere, or export it to a CSV file.Once your server is back online, you can us...
Hi @Shruti1.,Sharing some insights on Adobe Campaign Classic (ACC) integration with Adobe Target:The integration between Adobe Target and Adobe Campaign Classic allows dynamic, real-time personalization of email content. Instead of relying only on ACC database segmentation, Target rules determine wh...
HI @Shruti1,It is not possible to directly attach a file from the Data extraction activity to the Alert activity in Adobe Campaign Classic, because the native Alert activity does not support file attachments out of the box. Instead, use a combination of Data Extraction and a standard Email Delivery ...
Hi @at7140, If I understand correctly, you have a field UtCode in the recipient table that is unique to each customer. When a delivery is sent, you want the delivery code to match the recipient’s UtCode. However, delivery variables (under Properties > Variables in a delivery template) are defined at...