I have c# code to modify modules in ppm like utility, that code runs my local system through visual studio.
I need to run this code through report in ppm .
Cybersecurity
DevOps Cloud
IT Operations Cloud
If an answer to your question is correct, click on "Verify Answer" under the "More" button. The answer will now appear with a checkmark. Please be sure to always mark answers that resolve your issue as verified. Your fellow Community members will appreciate it!  Learn more
I have c# code to modify modules in ppm like utility, that code runs my local system through visual studio.
I need to run this code through report in ppm .
Hi Bala,
You need to write & compile your C# code in a way that can be run from the command line (i.e. a Console Application), then you can call it using special command ksc_local_exec , which lets you run any command line from the PPM workflow or from PPM Reports special commands.
command ok , what extension of the c# file , for example java to run .sh extensions
I think you have to compile your program to .exe to run it from the command line if server is a Windows OS. And if you're on Linux, you'll have to make sure that mono is installed on the server to run it to run it. Note that I'm no C# expert, so googling this might provide some more up-to-date answers - as this question of how to run a C# program from the command line is not PPM related.