In the livereport I have a SQL lets say Select * from dtree where name like %1
I selected input parameter as string. Now if I am running the livereport with the input %ABC the SQL its creating like
select * from dtree where name like '%ABC' which is correct but if I put the input parameter value like %1234 it creating SQL like
select * from dtree where name like '%234'
I am not sure when I have a number after % in the input why its truncating the first character.