web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :
Dynamics 365 Community / Blogs / The Dynamics 365 Library / The data source is not embe...

The data source is not embedded within a (parent) data source.

Faisal Fareed Profile Picture Faisal Fareed 10,796 User Group Leader
This error comes when you try to add new datasource to the top of the query.

QueryBuildDataSource qbds;
qbds = query.addDataSource(tableNum(newTable)); // This is wrong

You should add new table to the Main datasource instead.

query.dataSourceTable(tableNum(newTable)).addDataSource(..) // This is correct


This was originally posted here.

Comments

*This post is locked for comments