Hai, I'm currently creating a Process model for adding employees... I had done all the things... the data also stores perfectly... but the process model variables... shows only the auto generated id... in my colleagues account... it shows all details... I had attached the screenshot of both.
Discussion posts and replies are publicly visible
Hey, when you initiate the "write to record" smart service, the data won't have a primary key beforehand. However, after executing the "write to record" operation, you will obtain a primary key. Subsequently, you'll need to retrieve the data associated with that primary key by query record.
I guess, here you just need to map the "pv" to the output of the "write record" smart service.
already mapped..
Hey Dharan,As per the new version of 23.3, once you use the write record smart service it will only return the primary key of the particular record and not all the fields. So, further if you want to use these values in the process you need to query them using the that Id. It's an update.