07-12-2022 09:18 AM
Hi All,
I am running into a strange issue where when I execute the pipeline it completes successfully but when validate it always errors out with the below message. Can you please suggest what is going wrong here and what I should do to correct it? I have uploaded the parent and child pipeline as well if you want to refer to it.
HCM Process Person Files_2022_07_12.slp (54.2 KB)
HCM Process Master_2022_07_12.slp (36.9 KB)
“error”:
“Cannot·lookup·a·property·on·a·null·value”
“reason”:
“Value·referenced·in·the·sub-expression·‘$input0.final_document.Pipeline_Status’·is·null”
“resolution”:
“Please·check·expression·syntax·and·data·types.”
HCM Insert Person File_2022_07_12.slp (25.1 KB)
07-12-2022 12:06 PM
@amit.saroha
This error simply means the value you are looking for is not on the doc stream
ie $input0.final_document.Pipeline_Status
Must likely $input0.final_document is missing or does not have the property Pipeline_Status
07-12-2022 12:11 PM
Thanks, but how to avoid it?
07-12-2022 12:15 PM
@amit.saroha, that’s a lot to look through… But, I think at least one issue is here in the HCM Person Insert pipeline:
Snap Execution is set to Execute only, so it is not executing during validate, thus producing no results for the downstream snap. Change to Validate & Execute to see if that helps resolve anything.