Update DM job in Business Rule
Is it possible to update the Data Filters for a particular dimension used in a DM extract within a Business Rule?
I am creating a dashboard that will have a button to run a DM sequence. This DM sequence runs a data export, but I would like to be able to update the Accounts used in the filter of the extract before running the extract itself (via a BR).
Hi kstandlfer: "I am creating a dashboard that will have a button to run a DM sequence." Most likely you don't need a BR, just pass the parameter from the button to the DM job.
This is set in the button's component properties:
Button > Action > Server Task >
Selection Changed Server Task = Execute Data Management Sequence
Selection Changed Server Task Arguments = {Your DM Sequence Name}{ParamOne=[ExampleHardcodedValue],ParamTwo=[|!Example_DB_Parameter!|]}
In your DM Export Step you'll reference |!ParamOne!| |!ParamTwo!|
Follow-ups welcomed.