what is satellite in adobe launch | Community
Skip to main content
kamlesh-maddheshiya
Community Advisor
Community Advisor
May 19, 2022
Solved

what is satellite in adobe launch

  • May 19, 2022
  • 1 reply
  • 5144 views

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

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Jennifer_Dungan

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?lang=en

1 reply

Jennifer_Dungan
Community Advisor and Adobe Champion
Jennifer_DunganCommunity Advisor and Adobe ChampionAccepted solution
Community Advisor and Adobe Champion
May 19, 2022

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?lang=en

kamlesh-maddheshiya
Community Advisor
Community Advisor
May 20, 2022

Thanks a lot @jennifer_dungan