Question
UpdateDataTableEntry does not update source
When I run the UpdateDataTableEntry service, it does not update the source. Why does it not update the source?
var currentUser = Resources["CurrentSessionInfo"].GetCurrentUser();
Things["DTName"].UpdateDataTableEntry({
sourceType: "User" /* STRING */ ,
values: values /* INFOTABLE */ ,
location: undefined /* LOCATION */ ,
source: currentUser /* STRING */ ,
tags: undefined /* TAGS */
});
Initially, I had the source and sourceType set to undefined; however, since it did not update source with the user name, I changed it to currentUser, but it still does not update the source. The service is being executed directly by the user and not by the system user.

