Function Execution Question

  • 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

  • This was removed by the editor as SPAM

  • You need to look at the code of the procedure (GetRunDataset) to know why.

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply