Skip to main content
dharana4952
October 19, 2023
Question

Process Model's variable only shows auto generated id

  • October 19, 2023
  • 4 replies
  • 0 views

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.

4 replies

harshm4411
October 19, 2023

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.

tushark6475
October 19, 2023

I guess, here you just need to map the "pv" to the output of the "write record" smart service.

dharana4952
October 20, 2023

already mapped..

rishikeshr4182
October 20, 2023

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.