Even i gone through the documentation i cant get the exact difference plz can anyone explain in easy and simple words
Discussion posts and replies are publicly visible
There are some data types in appian like "User or Group", "Document or Folder" etc., You will not know exactly what value the variable has during process execution. It can be user or it can be a group, ex: it can hold "testUser" or "[Group:51]".
We cannot find it out using typeof(), as it will return as "User or Group". So to specifically know what value the variable is holding during runtime we use runtimetypeof().
Find a good description here: https://docs.appian.com/suite/help/24.3/fnc_informational_runtimetypeof.html#use-with-rule-inputs
typeOf():
runtimetypeof():
typeof():
Please find the link for more details https://docs.appian.com/suite/help/24.3/fnc_informational_runtimetypeof.html#use-with-rule-inputs
Thanks for the link.