i have a stored procedure like this:
ALTER PROCEDURE [dbo].[Sp_Quotation_Edit]
@QuoteNo as int=null
AS
BEGIN
Select * from Quotation where QuoteNo=@QuoteNo
Select
ItemDescrip as ItemName,
Quantity,
UnitPrice,
SubTotal as Total,
QuoteNumber,
ItemNo
from QuoteDetail where QuoteNumber=@QuoteNo
END
now then i select stoedproc in crystal report only one select query show not show both select query column. plz help ev1