on 2022 Jun 29 8:40 AM
Hi Experts,
I want to filter all the Contacts in SAP Sales Cloud that have a given value for four Marketing Attributes.
So, I want to see all Contacts that have the value Z2 for each attribute.
Using the filter in the Contacts overview I can only select multiple attribute values with an OR condition.
Is it somehow possible to change that to an AND condition?
BR Tobias
Hi Tobias,
In C4C Odata, Logical operator AND only works when used between different properties.
Supported:
$filter=OpportunityID ge 'YYYY' and Name/content eq 'Test'
Not Supported:
$filter=PartyID ge 'ZZZZ' and PartyID le 'XXXX'
(YYYY represents the ID of the Opportunity, ZZZZ represents one Party ID and XXXX represents another Party ID)
Similarly,
Logical operator OR only works when used between same properties.
Supported:
$filter=PartyID ge 'ZZZZ' or PartyID le 'XXXX'
Not Supported:
$filter=PartyID ge 'ZZZZ' or OpportunityID le 'XXXX'
Regards,Palani.You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
26 | |
3 | |
1 | |
1 | |
1 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.