I have an entity which the end user could access using the web interface. What i want to achieve is that whenever a unique addition is made to the "keyword" attribute it automatically updates another entity.
This could be done in SSMS using a trigger. But when using business rule for MDS i am stuck.
I figured out the process is going to be : Read data from the entity > Apply Filter > Load data into staging table
The part where i am struck is how to read from an entity using SSMS. Is there any table on which i can directly use the select statement or is there any log table that stores member updates?
I could have used subsciption view but it doesn't get automatically updated. Any suggestion in User defined stored procedure is appreciated.
thanks in advance!