User848370396 posted
So, basically, I need a way to entirely ignore or clear out anything returned by Proc B, so I only get what Proc A is trying to return.
I think it's not possible.
if you don;t want to get the other data from procB,
add a flag parameter to the stored procecdure procB, in that stored procedure procB, if that flag is equal to 1, then only execute the select statement. otherwise don;t execute. now if you wants to get data from that procedure, pass any value
other than 1, if not pass only 1.