Hi Anand,
Wrap this procedure inside a Calculation View and then create an Odata Service on top of it
Create an Odata Service as below:
service namespace "test.view"
{"test.view::TestCV" as "CalculationView"
keys generate local "ID"
parameters via entity "InputParams";
}
Then use this InputParams Entity in your UI for using input parameters
You can also check this thread:
Consume HANA Procedure in XSODATA Service
Regards,
Vivek