Hi, AFAICT it's not possible to check schema in nav hierarchy for global mass update command as it's dynamically selected and enabledif can't read its path.Would have to put the schema check on form xtk:massUpdate and error back to the user that they aren't where they're supposed to be.FWIW changing...
64 bits should be enough for anybody. To set the sequence name for autopk the attribute is pkSequence="...". If you're trying to overcome the broadlog limitation there's official guidance here: https://helpx.adobe.com/customer-care-office-hours/campaign/sequences-exhaustion-campaign-classic.html
Hi, It's being filtered out by your web server, either Apache or IIS.You can verify this by visiting Tomcat directly over port 8080.New versions of Apache have a conf directive called CGIPassAuth, though I haven't had any luck with it. Thanks,-Jon
Hi, Autopk sequence goes by rdbms' capability and can be altered as needed, e.g. alter sequence ... maxvalue 99999.Be mindful of the key's size, default autopk is 32 bit signed integer = ~2B max value.Changing the field size by adding this attribute could work but sounds like something that would br...
Hi, Are you using processDeliveryPart()?Should be just a matter of reading deliveryPart.message.*.text field in your connector js instead of the html field. Thanks,-Jon
Hi, You can get them by searching workflow for transitions with your activity as target.Transition object types can change depending on the activity (e.g. fork is weird), so just copy this and alter as needed: var transitions = [];
for each (var activities in instance.activities) {
for each (var i...
Hi, Is the published offer space's internal name 'sms'?You can check publication by querying xtk:reportHistory schema, it's where compiled spaces are output. Thanks,-Jon
Hi, Make 2 workflows:Every weekday, send a continuous or recurring email with delivery code setEvery weekday, query for recipients who were sent that delivery code on or before 10 days ago. NB this changes the timing from 10 days to 10+ days.Thanks,-Jon
Hi, Alter instance conf or serverConf.xml, setting this param to spamcheck.pl's path:<spamCheck command="perl
/usr/local/[NSTALL]/nl6/bin/spamcheck.pl"/> Thanks,-Jon