I have custom Data Entity (COKGeneralJournals) that's working for inserts, updates and deletes from Postman and 3rd party app. I'm trying to learn about OData actions and have added the following to my Data Entity:
[SysODataActionAttribute("MyTest", false)]
public static void MyTest()
{
//do something;
}
In Postman, I do the following:
but I get the error:
Am I missing a step? I've rebuilt my solution in Visual Studio and bounced iis (even though I don't usually have to do that when making code changes to my data entity).
Is there a way to list the metadata associated with my Data Entity to see if this new method is available?


Report
All responses (
Answers (