Hi tulasi, what is really blocking you, what have you tried ? Do you want to use UFT to run functional tests towards your deployed application, and capture IT coverage ?
To do this, if your application is written in java, you need to be able to trace what parts of your code have been reached by your functional tests. You can do this by using Jacoco (agent, real time instrumentation) or by using Cobertura (offline instrumentation) then deploy your application. When running UFT tests the instrumentation will generate a report (jacoco is directly usable by SonarQube, cobertura report needs to be modified in order to make it readable as IT coverage report by SonarQube's Generic coverage plugin.)
If you're not using Java, well the only thing I can tell you is to contact HP support. They argue that their tool integrates perfectly with various CI servers and test frameworks, I'm pretty sure they'll help you :-)
Michel