Adding a token using macros
In this recipe, we will see how to dynamically change the field on which a filter is being applied to using a macro. We will use the prompt macro to generate one of the possible tokens and then use it in the query.
Getting ready
Create a list report based on native SQL similar to the previous recipe. We will use the same query that works on the product tables, but the filtering will be different. For that, define the SQL as follows:
SELECT DISTINCT "SLS_PRODUCT_LINE_LOOKUP"."PRODUCT_LINE_EN""PRODUCT_LINE" , "SLS_PRODUCT_LOOKUP"."PRODUCT_NAME" "PRODUCT_NAME" ,"SLS_PRODUCT_COLOR_LOOKUP"."PRODUCT_COLOR_EN" "PRODUCT_COLOR" ,"SLS_PRODUCT_SIZE_LOOKUP"."PRODUCT_SIZE_EN" "PRODUCT_SIZE" FROM "GOSALESDW"."SLS_PRODUCT_DIM" "SLS_PRODUCT_DIM", "GOSALESDW"."SLS_PRODUCT_LINE_LOOKUP" "SLS_PRODUCT_LINE_LOOKUP", "GOSALESDW"."SLS_PRODUCT_TYPE_LOOKUP" "SLS_PRODUCT_TYPE_LOOKUP", "GOSALESDW"."SLS_PRODUCT_LOOKUP" "SLS_PRODUCT_LOOKUP", "GOSALESDW"."SLS_PRODUCT_COLOR_LOOKUP" "SLS_PRODUCT_COLOR_LOOKUP...