Using ABS Function gets CallBackDataID in SE Query

I have this code with DAX but can anyone help me to modify this so that I will not get CallBackDataID in SE Query?

**$Expr0 := [CallbackDataID ( ABS ( 'Fact Table1'[quantity] ) ) ] ( PFDATAID ( 'Fact Table1'[quantity] ) )** 
EVALUATE
{
    CALCULATE (
        SUMX (
            'Fact Table1',
            ABS ( 'Fact Table1'[quantity] )
        ),
        FILTER (
            'DimTable1',
            'DimTable1'[CodeType]
                IN {
                    "A1",
                    "A2",
                    "B1",
                    "B2",
                }
        ) 
    )
}