%BRM_EXPORT_RULE_FLOW

Exports rule flows from the SAS Decision Manager database into a CSV file. You can modify the CSV file and use it as input to the %BRM_IMPORT_RULE_FLOW macro.

Requirement: This macro must be run on the server tier.
Tip: You can modify the data values in the exported CSV file, and then re-import the data. However, do not modify the CSV file structure (column or row order).

Syntax

%BRM_EXPORT_RULE_FLOW (
RULEFLOWS=ALL | %STR(rule_flow_1<,rule_flow_2>...),
CSV=%STR(output_filename.CSV)<, FOLDER_PATH=%STR(pathname)>);

Required Arguments

CSV=%STR(output_filename)

specifies the full pathname to the CSV file for the exported data.

RULEFLOWS=ALL | %STR(rule_flow_1<, rule_flow_2>...)

specifies the rule flows that you want to export. Specify ALL to export all rule flows. To export only selected rule flows, specify the identification numbers of the rule flows. Separate multiple identification numbers with commas.

Example ruleflows=%str(10168,10043)

Optional Argument

FOLDER_PATH=%STR(pathname)

specifies a business rules folder from which you want to export rule flows. Use a forward slash to separate folder names.

If you specify a folder pathname, then only the rule flows in that folder are exported. For example, if you specify RULEFLOWS=ALL and FOLDER_PATH=%STR(Loans/Retail), then only the rule flows in the folder Loans/Retail are exported. If you specify RULEFLOWS=%STR(10045,10572) and FOLDER_PATH=%STR(Loans/Retail), but neither of the specified rule flows are in the Loans/Retail folder, then no rule flows are exported.
Last updated: February 22, 2017