Get code for rule set revision not bound to score definition

post/ruleSets/{ruleSetId}/revisions/{revisionId}/mappedCode
Internal-Use Only

Returns the code directly as text without being wrapped in a JSON model. The text can then be used to run the rule set revision based on the mapping of the static input (SASEP.IN) and output (SASEP.OUT) data sets, rather than binding to a score definition.

Request Samples

1

Response Samples

1/* Rule Set ppn_rs1 version 1.0 generated on Mon Jul 01 06:20:20 UTC 2024 */
2
3DS2_OPTIONS LOGICALEXPR = STANDARD;
4DS2_OPTIONS SCOND = WARNING;
5DS2_OPTIONS MISSING_NOTE;
6
7/* {PACKAGE_START} */
8 package BRM_51_RuleSet_0 / inline;
9
10 dcl package logger _logger('App.demo');
11 dcl package logger logr_variableTrace('App.TableServices.DS2.Runtime.TraceVariables');
12
13 /* ---- RULE FIRED FLAG COUNT = 0 ---- */
14
15method DataGrid_addRow(package datagrid aGrid)
16returns int;
17 dcl int res rowCnt;
18 rowCnt = 0;
19 res = aGrid.rowAdd();
20 if (res = 0) then
21 rowCnt = aGrid.rowCount();
22 return rowCnt;
23end;
24
25method DataGrid_addRow(package datagrid aGrid, int numberOfRows)
26returns int;
27 dcl int res rowCnt;
28 rowCnt = 0;
29 res = aGrid.rowAdd(numberOfRows);
30 if (res = 0) then
31 rowCnt = aGrid.rowCount();
32 return rowCnt;
33end;
34
35method DataGrid_columnExists(package datagrid aGrid,
36varchar(255) col_name)
37returns int;
38 if (aGrid.columnExists(col_name)) then do;
39 return aGrid.columnIndex(col_name);
40 end;
41 return 0;
42end;
43
44method DataGrid_addCharacterColumn(package datagrid aGrid,
45varchar(255) col_name)
46returns int;
47 return aGrid.columnAddCharType(col_name);
48end;
49
50method DataGrid_Set(package datagrid aGrid,
51varchar(255) col_name,
52int row_index,
53varchar(32767) value)
54returns int;
55 return aGrid.setValue(col_name, row_index, value);
56end;
57
58 method initRdsp();
59 end;
60
61 method execute( in_out varchar "r_char",double "r_int",double "r_number",in_out package datagrid "r_dg_out");
62 dcl double "dg_index";
63
64;
65 if ("r_char" = 'Foundation') then do;
66 if (DataGrid_columnExists("r_dg_out",'r1_char_col') = 0) then do;
67 DataGrid_addCharacterColumn("r_dg_out",'r1_found_col');
68 end;
69 dg_index=DataGrid_AddRow(r_dg_out);
70 DataGrid_Set("r_dg_out",'r1_found_col', dg_index,'1 found');
71goto "end_da5a5617-ebc8-4864-a18d-fd6c29acc5be";end;
72 else do;
73 if (DataGrid_columnExists("r_dg_out",'r1_char_col') = 0) then do;
74 DataGrid_addCharacterColumn("r_dg_out",'r1_found_col');
75 end;
76 dg_index=DataGrid_AddRow(r_dg_out);
77 DataGrid_Set("r_dg_out",'r1_found_col', dg_index,'1 NOT found');
78 end;
79
80 "end_da5a5617-ebc8-4864-a18d-fd6c29acc5be":
81
82 rule_end: /* label for rule RETURN action */
83 end;
84
85/* {PACKAGE_END} */
86 endpackage;
87

Path Parameters

NameTypeRequiredDescription
revisionId
string
true

The rule set revision ID.

ruleSetId
string
true

The rule set ID.

Request Body

The information for the mapping and hints to be used during building the execution code.

Request containing hints and mappings to generate Mapped Code not bound to a score definition.

NameTypeRequiredDescription
mappings
array [Mapping]
false

Array of mappings between Score Object variables and the table the code will be executed against.

hints
object
false

Hints for generating the code. Hints are specific to the type of object which the code is being requested for.

Responses

StatusMeaningDescription
200OKThe request succeeded.HeadersSchema
400Bad RequestThe request was invalid.Schema