Create Campaign Filter For SAP Source Only For Active Accounts

Trying to create campaign filter for SAP source - Account Attributes

Trying to use IIQDisabled as false as the filter to ensure only active accounts are included in the camapign but the IIQDisabled is not shown in the campaign filter dropdown. Please assist.

You will have to add the IIQDisabled in your schema before you can use it for campaign filter. Even though some connectors populate this attribute internally it is only available for filter if it is in the source schema.

1 Like

Thanks Sanjeev! I tried adding as well but post recon the attribute gets automatically removed from account schema.

Looks like IIQdisabled as empty string check helps to pull active accounts in the campaign. I was trying to equate it to false to only include active accounts and that didn’t work.

{
    "name": "SAP UAR Campaign Filter",
    "description": "SAP UAR Campaign Filter",
    "owner": "IdentityNow Admin",
    "mode": "INCLUSION",
    "criteriaList": [
        {
            "type": "COMPOSITE",
            "property": null,
            "value": null,
            "operation": "AND",
            "negateResult": false,
            "shortCircuit": false,
            "recordChildMatches": false,
            "id": null,
            "suppressMatchedItems": false,
            "children": [
                {
                    "type": "ACCOUNT",
                    "property": "attribute.IIQDisabled",
                    "value": "",
                    "operation": "EQUALS",
                    "negateResult": false,
                    "shortCircuit": false,
                    "recordChildMatches": false,
                    "id": null,
                    "suppressMatchedItems": false,
                    "children": null
                },
                {
                    "type": "SOURCE",
                    "property": "application",
                    "value": "SAP",
                    "operation": "EQUALS",
                    "negateResult": false,
                    "shortCircuit": false,
                    "recordChildMatches": false,
                    "id": null,
                    "suppressMatchedItems": false,
                    "children": null
                }
            ]
        }
    ],
    "isSystemFilter": false
}

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.