Hi Team,
Below is my code snippet, i hope i have handled the null but still am getting. can you please guide where it went wrong.
local!salesReps:index(rule!GSE_SCL_QRY_getViewIntakeDetails( region:local!region, sipYear:local!year, pagingInfo:a!pagingInfo(1,-1) ).data,"Name",null), local!repChoice:{union(local!salesReps,local!salesReps)}, local!salesRepName: if(a!isNullOrEmpty(local!repChoice),"None","All reps"), a!multipleDropdownField( label:"Sales rep name", choiceLabels: if(a!isNullOrEmpty(local!repChoice), {"No reps"}, {"All reps",local!repChoice}, ), choiceValues: if(a!isNullOrEmpty(local!repChoice), {"None"}, {"All reps",local!repChoice}, ), value:local!salesRepName, saveInto: local!salesRepName )
Discussion posts and replies are publicly visible
Hi Anitha Dharmalingam , In the given code, I noticed that the local variables you created are not wrapped inside the localVariable() function. Additionally, the local variable: salesReps contains null values, which is causing an error. Please add proper null handling and check this after making the changes.
localVariable()
Can take reference from this code:
a!localVariables( /*----- reject function will remove null values from the list ----------*/ local!salesReps:reject(fn!isnull,{"A","B","C",null}), local!repChoice:{union(local!salesReps,local!salesReps)}, local!salesRepName: if(a!isNullOrEmpty(local!repChoice),"None","All reps"), a!multipleDropdownField( label:"Sales rep name", choiceLabels: if(a!isNullOrEmpty(local!repChoice), {"No reps"}, {"All reps",local!repChoice}, ), choiceValues: if(a!isNullOrEmpty(local!repChoice), {"None"}, {"All reps",local!repChoice}, ), value:local!salesRepName, saveInto: local!salesRepName ) )