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

Jyoti_Yadav
Jyoti_Yadav
Online

Badges

Badges
25

Accepted Solutions

Accepted Solutions
89

Likes Received

Likes Received
181

Posts

Posts
235

Discussions

Discussions
23

Questions

Questions
212

Ideas

Ideas
3

Blog Posts

Blog Posts
0
Top badges earned by Jyoti_Yadav
Customize the badges you want to showcase on your profile
Re: Null Value in integer field of data schema - Adobe Campaign 13-01-2022
Hi @nitesh_anwani , In update activity, use iff condition, i.e Iff( @age=NULL,0,@age)This will help you to bypass Null data values. Thanks,Jyoti

Views

302

Like

1

Replies

3
Re: What is /r/ in the NmsTracking_ClickFormula option in Adobe Campaign Classic for and how can I delete it? - Adobe Campaign 13-01-2022
Hi @smarquro1 , To understand how tracking URL is interpreted and it works, you can check below link:Tracking Parameters If you want a different tracking URL, then you can define new 'tracking click' Option. Define the tracking formula in the option. Then in delivery, redirect the same tracking Option to the delivery. Thanks,Jyoti

Views

230

Likes

2

Replies

1
Re: Message center, event is stuck on pending with error retry - Adobe Campaign 12-01-2022
Hi @thibaultb473199 , Login to Execution instance. Then go to Campaign Management --> Deliveries .You will see list of events , select the right event and open it. Go to Deliveries tab and check for email address which has given error. You might find some additional error reason over there. Thanks,Jyoti

Views

23.2K

Like

1

Replies

2
Re: Scheduler and wait - Adobe Campaign 10-01-2022
Hi @Divya104 , No this way of workflow design is not recommended. It causes dead lock situations at some point because the scheduler next run and previous temporary table data are working on same table. Also, your data will be misinterpreted because of the long wait time and shorter duration of scheduler.As suggested by @David_Loyd , if it's necessary to wait for 2 hours, split your workflow in two workflows. Thanks,Jyoti

Views

220

Like

1

Replies

0
Re: Database or table partitioning for performance benefits - Adobe Campaign 10-01-2022
Hi @wALF , Database partitioning is at DB level and for hosted environment it will be done by Adobe Support.You go through below links to know more on best practices.Adobe Campaign Classic data model best practicesBest practices for performance improvement on Campaign Classic Thanks,Jyoti

Views

244

Like

1

Replies

1
Re: Adobe campaign delivery taking long - Adobe Campaign 10-01-2022
Hi @supratim320 , It seems delivery is scheduled to deliver certain percentage or number of emails every hour.Please check again the delivery 'Properties'. Is it set waves? If not, is your delivery accessing any Javascript which is doing this setup? If you are not able to find anything, then try to use new/fresh delivery activity. Before adding HTML content, check delivery properties, remove any additional code written in the properties. Then do the HTML part and do the testing. Thanks,Jyoti

Views

143

Like

1

Replies

0
Re: For Message Center can I extend nms:eventHisto table in campaign classic - Adobe Campaign 08-01-2022
Hi @chez_elam , Yes you can extend the schema.OrYou can fetch the xml element value from the 'data' field column. Let's assume the xml element you want to fetch is 'phoneNo'. Use query activity on 'nms:eventHisto' table and in 'Add Additional Data' add a column name 'phoneNo1' and use below syntax to define it:Substring(data, Charindex(data, '

Views

113

Like

1

Replies

0
Re: Nee help to read multiple files from nlserver module - Adobe Campaign 04-01-2022
Hi @ukender , Even if you are able to read all the files at once, you will be able to process one file at a time. So instead of using nlserver module, you can use:1) File Collector activity which will pick the file. Once file is picked move them to different location. Also, check "Stop as soon as file is processed". This will make sure to stop once all the files are read and imported.2) Test activity to check if there's any file present to import.3) Data Loading activity which will read the file...

Views

379

Likes

0

Replies

1
Re: Nee help to read multiple files from nlserver module - Adobe Campaign 04-01-2022
Hi @ukender , You can use the command: ls -la to list all the files.Once you have the name and number of files, run the loop to pick each file name and then execute your command. What is your purpose to run this command? May be you can use some alternative suggestion as well. Thanks,Jyoti

Views

402

Likes

0

Replies

3
Re: External Signal in ACC triggered by ACS - Adobe Campaign 04-01-2022
Hi @LiviaD1 , You can try using below two approaches:1) Schedule a workflow in ACC to check for file at SFTP location. If file is not present, then set a wait time loop of 10 minutes and recheck file is present or not. After wait, use a JS activity to count the number of execution, let's say for 2hours continuously in loop. If file is present, then workflow will execute successfully. If file is not present, then workflow will send an alert to operators informing about failure. 2) Another approac...

Views

187

Likes

0

Replies

1