Skip to main content
Solved

problem in adding an augmented attribute because I need to refer the same table

  • April 20, 2026
  • 2 replies
  • 20 views

mohan_kb
Level 4
Forum|alt.badge.img

In my table Nomination, the following columns are there Key, KeyType, SourceKey. I want to add an augmented attribute called SourceKeyType with the following logic : For each record in Nomination, I need to find its SourceKey and find the KeyType Corresponds to that SourceKey. For example :

Key KeyType SourceKey
1 GOM 2
2 TRA NULL

 

After defining augemented attribute 

 

Key KeyType SourceKey SourceKeyType
1 GOM 2 TRA
2 TRA NULL NULL

 

How to model the PQL?

Best answer by gil.liu

maybe lookup can work?
https://docs.celonis.com/en/lookup.html

 

2 replies

Forum|alt.badge.img
  • Level 8
  • Answer
  • April 21, 2026

mohan_kb
Level 4
Forum|alt.badge.img
  • Author
  • Level 4
  • April 21, 2026

Hey ​@gil.liu , Thanks. That worked.