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

InMo
InMo
Offline

Badges

Badges
13

Accepted Solutions

Accepted Solutions
12

Likes Received

Likes Received
9

Posts

Posts
25

Discussions

Discussions
0

Questions

Questions
25

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by InMo
Customize the badges you want to showcase on your profile
Re: Need to understand use of Refresh of Deliverability i... - Adobe Campaign 17-06-2020
Hi @SonikaDutta ,This workflow is installed by default on all instances. There are a number of Delivery monitoring reports based on this workflow, which requires Deliverability monitoring (Email Deliverability) package installation.Once this package is installed, this workflow(Refresh for Deliverability) runs nightly to regularly update the list of rules and enables you to actively manage platform deliverability. Please refer below page for detailshttps://docs.adobe.com/content/help/en/campaign-...

Views

684

Likes

2

Replies

0
Re: E-mail deliverability - Adobe Campaign 17-06-2020
Hi @WesleyXP, There are a number of Delivery monitoring reports available in Adobe campaign, It requires installation of below packageDeliverability monitoring (Email Deliverability) You can refer below link for detailshttps://docs.adobe.com/content/help/en/campaign-classic/using/sending-messages/deliverability-management/monitoring-deliverability.html Regards

Views

899

Like

1

Replies

1
Re: What happens when if i try to create multiple lists u... - Adobe Campaign 17-06-2020
Hi @abhisheks693158 ,You can have same value in Label field(of list) as long as internal name is different.You cant have same internal name of two different lists. Adobe Campaign will not allow it, It will throw an error. Regards

Views

634

Like

1

Replies

0
Re: Where clause in web application script - Adobe Campaign 17-06-2020
Hi @tejashriw155148, From error it looks like a { is missing in the code. Although i checked the code again if it dont work try below code also.where: {condition:[{boolOperator: "OR", expr: "[@employeeID] = " + contactID}{boolOperator: "OR", expr:"[recipient/@managerID] = " + contactID} ]}Please try and test it, it should work. Regards

Views

1.0K

Likes

0

Replies

0
Re: Where clause in web application script - Adobe Campaign 17-06-2020
Hi @tejashriw155148 , Where clause should be something like belowwhere: {condition:[{expr: "[@employeeID] = " + contactID boolOperator: "OR"}{expr:"[recipient/@managerID] = " + contactID} ]} Please check, it should work.You can also refer to below pagehttps://blog.floriancourgey.com/2018/08/use-querydef-the-database-toolkit-in-adobe-campaign Regards

Views

1.1K

Likes

0

Replies

3
Re: When we create a campaign, what all fields are mandat... - Adobe Campaign 17-06-2020
Hi @abhisheks693158 ,When you create a new campaign, then it is must to select 'Campaign template' in initial window.Label, Start/End Date is not mandatory. Content is something you add in delivery activity inside workflow.You can create campaign from Program type folder. It is not mandatory to create plan folder.Once campaign is create then you can add workflow and further activities as per requirement. Regards

Views

1.0K

Like

1

Replies

0
Re: How to automate a csv file export from a work to my c... - Adobe Campaign 05-06-2020
Hi @Terry25,You can use 'Data Extraction' activity to create and export files automatically on SFTP. If you don't have access to SFTP then there is one a way to access the exported file, which is to send it to yourself as an attachment of an email delivery(if file doesn't contain sensitive data). It is always better and best practice to have an SFTP access if you want to access files, and avoid accessing files over email. Regards,

Views

1.7K

Likes

0

Replies

0
Re: Can I take the Campaign Business Practitioner exam wi... - Adobe Campaign 04-06-2020
Hi JuanInchauspe,You can go through below links and download respective exam guides to know the detailsAD0-E300 Adobe Campaign Classic Business Practitioner Experthttps://spark.adobe.com/page/EIAgjHvmlHeet/ AD0-E302 Adobe Campaign Standard Business Practitioner Experthttps://spark.adobe.com/page/gBc50AevVDzeu/ Regards

Views

1.3K

Likes

0

Replies

0
Re: Can I take the Campaign Business Practitioner exam wi... - Adobe Campaign 03-06-2020
Hi JuanInchauspe,You can go through below links and download respective exam guides to know the detailsAD0-E300 Adobe Campaign Classic Business Practitioner Experthttps://spark.adobe.com/page/EIAgjHvmlHeet/ AD0-E302 Adobe Campaign Standard Business Practitioner Experthttps://spark.adobe.com/page/gBc50AevVDzeu/ Regards

Views

1.3K

Likes

0

Replies

0
Re: Installing a Package on ACC with the InstallPackage x... - Adobe Campaign 02-06-2020
Hi @sarrankanp50398,Steps:1. Create a workflow2. Save name of file(whole location) in a variable(like varFile)3. In javascript activity, Read the file and save in a variable( you an use below code)//read package filevar f = new File("varFile")f.open("r", File.CODEPAGE_UTF8)var readFilevar linewhile( line = f.readln() )readFile=readFile+line;f.close() var elementsToImport = ;elementsToImport.appendChild(readFile);var wholePackage = {elementsToImport};xtk.builder.InstallPackage(wholePackage);Above...

Views

1.5K

Likes

0

Replies

0