Expand my Community achievements bar.

Join us for the next Community Q&A Coffee Break on Tuesday April 23, 2024 with Eric Matisoff, Principal Evangelist, Analytics & Data Science, who will join us to discuss all the big news and announcements from Summit 2024!
SOLVED

what is satellite in adobe launch

Avatar

Community Advisor

Could you please explain "what is satellite in adobe launch"

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Satellite is basically a JavaScript object that is used by Adobe. It has some functions such the allow you to retrieve or set values, some extension leverage the Satellite Object to create debugging logs, etc.

 

For the most part, Adobe Launch will handle most of the functionality for you... Data Elements are stored as values in the Satellite object.

 

If you need to read a data element in some custom Javascript you can just use the getVar function to retrieve it:

var myValue = _satellite.getVar('data element name');

You could also in theory set a value into Satellite with setVar if you really have a use case for this.

 

Here is more information on Satellite Objects: 

https://experienceleague.adobe.com/docs/experience-platform/tags/client-side/satellite-object.html?l...

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Satellite is basically a JavaScript object that is used by Adobe. It has some functions such the allow you to retrieve or set values, some extension leverage the Satellite Object to create debugging logs, etc.

 

For the most part, Adobe Launch will handle most of the functionality for you... Data Elements are stored as values in the Satellite object.

 

If you need to read a data element in some custom Javascript you can just use the getVar function to retrieve it:

var myValue = _satellite.getVar('data element name');

You could also in theory set a value into Satellite with setVar if you really have a use case for this.

 

Here is more information on Satellite Objects: 

https://experienceleague.adobe.com/docs/experience-platform/tags/client-side/satellite-object.html?l...