Experts,
Is it possible to coy the data from Dataverse to Collection in following way ?
Collect(
mmasterv1,
{
sno: "",
'Owner (Lookup)': "",
Status: "",
BBD: "",
ex: "",
expiry: "",
'full cases': "",
Materialdesc: "",
Materialno: ""
}
);
Clearcollect (mmasterv1 , maser);
----
Collection name : mmasterv1 | Tablename maser
Are you trying to create a table schema with your Collect() function? If so, you could use ShowColumns() instead, eg
ClearCollect(
mmasterv1,
ShowColumns(
maser,
"sno","Owner (Lookup)","Status","BBD",
"ex","expiry","full cases","Materialdesc","Materialno"
)
)