exec GetRunDataset
@DatasetID = @HPCID output,
@RunID = @RunID,
@DataSourceCode = 'HPC'
This code is present in a bill processing function. The HPC is a dataset. The problem is that there were two datasets in the system with HPC. Therefore, the function was not executed at all. Can someone explain to me why?
However, this code executed fine. The only difference is that that the @Display = 0 statement is included. I was told that this is the reason why the code executed correctly. Can someone shed some light?
exec GetRunDataset @RunID = @RunID, @DataSourceCode = 'HPC', @DatasetID = @CurHPCID output, @Display = 0
Thanks