- TLC Home Home
- Discussions Discussions
- Documentation Documentation
- Knowledge Base Knowledge Base
- Education Education
- Blog Blog
- Support Desk Support Desk
08-20-2017 11:56 PM
Hi All,
I'm auditing a container and not sure how to find unmapped extensions. I couldn't find a custom tool that would do it, I'm not even sure such an attribute ("Mapped') exists for extensions (as it does for load rules).
Cheers,
Florian
Solved! Go to Solution.
08-21-2017 04:30 AM
08-23-2017 03:29 AM
Hey @Srinivasan,
This does not export extension mapping, rather variables + tags.
I've been talking to someone at Tealium about it, I'll update the thread if I can find a solution.
Cheers,
Flo
08-23-2017 03:38 AM
I'd love to hear the solution @florian_perl as well! Keep us posted.
08-30-2017 07:34 AM
When you say you are trying to find "unmapped" extensions, do you mean ones that aren't mapped to any tag?
There are ways to get that information. However a bit more clarification on what you would like to achieve, I might be able to supply you with a tool that can do the trick.
Adrian
09-25-2017 03:44 AM
09-26-2017 07:05 AM
For typical extensions, this should do the job of giving you a list of extensions that are unmapped.
var types = utui.config.customizationList,
data = utui.automator.getExtensionIdsByScope("global").map(id => {
var ext = utui.automator.getExtensionById(id);
return {
type: types[ext.id].title,
id: id,
title: ext.title
};
}
);
console.table(data);
Adrian
09-27-2017 12:21 AM
Copyright All Rights Reserved © 2008-2023