Hi All -
I have recently started to get an error when my app loads (See screenshot attached). I have tried to trouble shoot but I am unsure of how to proceed. When I run the On Start command in edit mode the data properly loads into the collection without any issue. Only when I launch the app in Play mode do I receive the issue. Below is my On Start procedure. Thoughts? 
Concurrent(
ClearCollect(
AllRAWDATA,
'[dbo].[Slow_Moving_Raw_Data]'
),
ClearCollect(
ColPlanReview,
'[dbo].[Slow_Moving_Raw_Data]'
),
Set(
varUser,
User().FullName
),
Set(
varUserEmail,
User().Email
),
Set(
varToday,
Text(
Today(),
DateTimeFormat.ShortDate,
"en-US"
)
),
Set(
varManagerName,
Office365Users.Manager(Text(Office365Users.MyProfile().Id)).DisplayName
),
Set(
varPeriod,
Text(
Today(),
"[$-en-US]mmmm - yy"
)
),
Set(
varAdmin,
Value(1)
)
)