Skip to content
This repository was archived by the owner on Nov 7, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"name": "cds run",
"request": "launch",
"type": "node-terminal",
"skipFiles": [ "<node_internals>/**" ]
"skipFiles": [
"<node_internals>/**"
]
}
]
}
}
10 changes: 8 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"type": "shell",
"label": "cds watch",
"command": "cds",
"args": ["watch"],
"args": [
"watch"
],
"group": {
"kind": "build",
"isDefault": true
Expand All @@ -18,7 +20,11 @@
"type": "shell",
"label": "cds run",
"command": "cds",
"args": ["run", "--with-mocks", "--in-memory?"],
"args": [
"run",
"--with-mocks",
"--in-memory?"
],
"problemMatcher": []
}
]
Expand Down
8 changes: 4 additions & 4 deletions db/data/sap.ui.riskmanagement-Risks.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ID;createdAt;createdBy;title;prio;descr;miti_id;impact
20466922-7d57-4e76-b14c-e53fd97dcb11;2021-04-27;[email protected];CFR non-compliance ;3;Recent restructuring might violate CFR code 71;20466921-7d57-4e76-b14c-e53fd97dcb11;10000
20466922-7d57-4e76-b14c-e53fd97dcb12;2021-04-27;[email protected];SLA violation with possible termination cause;2;Repeated SAL violation on service delivery for two successive quarters;20466921-7d57-4e76-b14c-e53fd97dcb12;90000
20466922-7d57-4e76-b14c-e53fd97dcb13;2021-04-27;[email protected];Shipment violating export control;1;Violation of export and trade control with unauthorized downloads;20466921-7d57-4e76-b14c-e53fd97dcb13;200000
ID;createdAt;createdBy;title;prio;descr;miti_id;impact;modifiedAt;modifiedBy;criticality;test
20466922-7d57-4e76-b14c-e53fd97dcb11;2021-04-27;[email protected];CFR non-compliance;3;Recent restructuring might violate CFR code 71;20466921-7d57-4e76-b14c-e53fd97dcb11;10000;;;;a
20466922-7d57-4e76-b14c-e53fd97dcb12;2021-04-27;[email protected];SLA violation with possible termination cause;2;Repeated SAL violation on service delivery for two successive quarters;20466921-7d57-4e76-b14c-e53fd97dcb12;90000;;;;b
20466922-7d57-4e76-b14c-e53fd97dcb13;2021-04-27;[email protected];Shipment violating export control;1;Violation of export and trade control with unauthorized downloads;20466921-7d57-4e76-b14c-e53fd97dcb13;200000;;;;c
1 change: 1 addition & 0 deletions db/schema.cds
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ using { managed } from '@sap/cds/common';
miti : Association to Mitigations;
impact : Integer;
criticality : Integer;
test : String;
}

entity Mitigations : managed {
Expand Down
Loading