Hi Santosh,
In report you need only batch managed item issue details?
If Yes then try this...
SELECT T0.[ItemCode], T0.[ItemName], T0.[BatchNum], sum(T0.[Quantity]) as 'Issued Qty' FROM IBT1 T0 WHERE T0.[Direction] =1 and T0.[DocDate] between '[%0]' and '[%1]' GROUP BY T0.[ItemCode], T0.[BatchNum],T0.[ItemName]