Pipeline - Field not showing

Pls what am i getting wrong? Am still not seeing the “join” field amongst my search fields. Having in mind that I used a “copy input” extractor

rule "Join_test"
when
has_field("externalId")

then
let Name_join = concat(to_string($message.externalId), "-");

set_field(field:"join", value: Name_join);
end
rule "Join_test"
when
  has_field("externalId")
then
  let Name_join = concat(to_string($message.externalId), "-");
  set_field("join", Name_join);
end

should work

Also make sure to check the order of your pipeline processors on the System / Configurations page.

Thanks…I fixed it.

Please add some details about what the problem was and how you’ve fixed it so that other users having a similar problem can profit from this topic.

The problem was stated above. So, i fixed it by changing the order in my “System -----> Configuration” to the figure shown below and i was able to view the new field I created and was also able to combine more fields into a single field.

this was exactly what i did…so my pipeline rule was correct all along.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.