Hallo Ulf,
StateType "Open" (mit upper case "O") ist ein Platzhalter für alle sichtbaren Status. Wenn Du wirklich nur "new" und "open" möchtest, dann geht das z.B. so:
"loadingOptions": {
"filter": [
{
"property": "OwnerID",
"operator": "EQ",
"type": "STRING",
"filterType": "OR",
"value": "CURRENT_USER"
},
{
"property": "ResponsibleID",
"operator": "EQ",
"type": "STRING",
"filterType": "OR",
"value": "CURRENT_USER"
},
{
"property": "StateType",
"operator": "EQ",
"type": "STRING",
"filterType": "AND",
"value": [ "open", "new"]
}
],
(wobei das jetzt auch "warten zur Erinnerung" ausschließt)
CU, Torsten[/code]