To compare two strings in PBCS
Summary
To compare two strings in PBCSContent
Hello Experts,
I am working on pbcs and i have a requirement that i need to compare two subvars which basically holds the member of Year dim like FY17, FY18 etc. And if both are same then do some logic & if not then do some thing else so i tried using @CalcMgrCompare but its not giving the desired out put. Below is the logic i tried to use
IF(@CalcMgrCompare("&ActYear","&BudStartYear",@_TRUE))
Logic 1;
else
Logic 2;
ENDIF
I have made both the variable "&ActYear" and "&BudStartYear" as FY17 so ideally it should use the logic 1 but still its going in else condition its executing the logic 2. I am not sure whether IF(
0