Hello everyone,
My SSRS Report shows no data, but when I change the table type to regular and debug the dataprovider the record shows perfectly on the report.
I cleared the cash and the problem persisted.
I also used this job to test the dataprovider when the table type is inMemory and the results are conclusive :
static void DebugDP(Args _args)
{
SCP_ProjBilanFinContratTableTmp tempTable;
SCP_ProjBilanFinContratDP dataProvider = new SCP_ProjBilanFinContratDP();
SCP_BilanFinDeContratEtatContract contract = new SCP_BilanFinDeContratEtatContract();
contract.parmBilanFinContratID("BFC-000012");
dataProvider.parmDataContract(contract);
dataProvider.processReport();
tempTable = dataProvider.getSCP_ProjBilanFinContratTableTmp();
while select tempTable
{
info(tempTable.CustAccount);
}
}
The CustAccount property is displayed accordingly.
Then, if I execute the report no data is shown and I can't figure out why..
Thanks
*This post is locked for comments
I have the same question (0)