transient value is not getting saved after the process model is debugged

Hi,

I used a transient value in my CDT's, I able to see all the values while i am debugging the process model except the transient value, can you guys please help me with this issue. I did not get any errors but still, I am not getting the value their

I able to see the value in my interface in both the CDT's

  

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to mamathak0001

    Oh okay, sorry I forgot about that transient. Now I got the issue. The output of the node stores the value that it got from the database as a result of the write operation.

    So in your case, the transient value will not be there in the database. Hence null is stored in the CDT.

    If your use-case is just to store the primary key in the variable, then I would suggest creating a new output mapping like - index(ac!storedValues,"listingId",null()) & into the respective field of the CDT.

Children