IQS <blank>

This commit is contained in:
2023-02-13 06:21:29 -07:00
parent f60b102d58
commit 2d64c6a56f
10 changed files with 51 additions and 90 deletions

20
Adaptation/.vscode/RDS.js vendored Normal file
View File

@ -0,0 +1,20 @@
// (self.length != 0) ?
// self :
// (getContextData('2', 'cds.PROCESS_JOBID', '') == '-') ?
// self :
// getContextData('2', 'cds.PROCESS_JOBID', '')
// (self.length != 0) ?
// self :
// getContextData('2', 'cds.MID', '')
'-', 1, '-'
getValue(self, self.length, getContextData('2', 'cds.MID', ''));
function getValue(value, length, mid) {
if (length !== 0 || mid === '-')
return value;
else
return mid;
}