Question
1
Replies
896
Views
ABC
Posted: December 7, 2018
Last activity: December 7, 2018
Closed
ID not auto generated
Hi,
I have fetch data on UI through report definition . there are multiple records getting populate on UI from DB.
On that UI I am able to add new records . when I am adding new record at that time Id Column should auto generated. Now It's not auto generated user able to add number by themselves with other data field. It's wrong.
I want new record number should auto generated.
Hi,
how this autogeneration is configured in your use case as it doesn't seem to be standard Pega mechanism to autogenerate the object? Is this field the key of this concrete class ?
It doesn't seem to be the ID generation mechanism provided by Pega OOTB -
Pega gives possibility to handle key generation internally, it is configured in Class rule:
In this case pyGUID is autogenerated when page is saved, not when created. Let me give some example:
As I didn't perform Obj-Save on that page - "pyGUID" isn't autogenerated:
But if I add the Obj-Save method:


The result looks like:
Please let me know how it is configured in your use case.