
"VBAK"."ZZEDI_FLAG" AS 'EDI'
, but that did not work. Any other options available?
Thanks
"VBAK"."ZZEDI_FLAG" AS 'EDI'
, but that did not work. Any other options available?
Thanks
"VBAK"."ZZEDI_FLAG"
column contains either X or NULL, right?
Then you could use a CASE WHEN in your Dimension to map those values to more meaningful ones, for example like this:
CASE WHEN "VBAK"."ZZEDI_FLAG"='X' THEN 'EDI' ELSE 'Non EDI' END
Best,
David
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.