Try to use rf!data to show and hide visibilities of related action. rf!data

Try to use rf!data to show and hide visibilities of related action.
rf!data is displayed well in record list grid view...However, same check not working in related action visibility field.

check is simple : rf!status.code="PEND" , rf!status.code is displaying in Grid .

let me know what i am doing, if this due to nested cdt or multiple record.

Suggest me workaround.

Thanks




OriginalPostID-221228

OriginalPostID-221228

  Discussion posts and replies are publicly visible

Parents
  • @sushilk As per my observation, 'status' and the 'code' inside the status are single, and so there shouldn't be any problem in accessing or utilising the status.code. Is there a chance for existence of null values in 'status' or 'status.code' fields? If so, can you rewrite the visibility expression as follows and test it again?

    =fn!if(
    \trule!APN_isEmpty(rf!status),
    \tfn!false,
    \tfn!if(
    \ trule!APN_isBlank(rf!status.code),
    \ tfn!false(),
    \ tfn!and(rf!status.code="PEND")
    \t)
    )
Reply
  • @sushilk As per my observation, 'status' and the 'code' inside the status are single, and so there shouldn't be any problem in accessing or utilising the status.code. Is there a chance for existence of null values in 'status' or 'status.code' fields? If so, can you rewrite the visibility expression as follows and test it again?

    =fn!if(
    \trule!APN_isEmpty(rf!status),
    \tfn!false,
    \tfn!if(
    \ trule!APN_isBlank(rf!status.code),
    \ tfn!false(),
    \ tfn!and(rf!status.code="PEND")
    \t)
    )
Children
No Data