Hi
@Neeraj Kumar,
Here's a kickstart for you:
SELECT [name] FROM [BPTest].[dbo].[BPAProcess] WHERE ([ProcessType] = 'P' AND [processxml] LIKE '%<resource object="Utility - HTTP"%');
I used the
Utility - HTTP VBO as a test. Seems to work. You'll want to make the VBO name configurable as well as the database name (BPTest in my case) and possibly the DB schema depending on your environment.
NOTE: This will only return the processes that use the target VBO at the top level. In other words, if those processes use a VBO that uses the target VBO as a child, those won't be returned. Hopefully that makes sense.
Cheers,
Eric