Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

Change "key" field if it is defined as an internal value stored in a text field?

Avatar

Level 4
Hello there! 

I am working on a small manually maintained table that contains manually selected titles in a TV streaming set-up. 
 
The table will not contain more than apprx. 20 entries added by a configurater in ACC. 
 
Since the table is this small, I wanted to simply set "title" as the key field, since the title will always be unique and only exist once in the table. The issue is, that when the title is set as the key, the configurator is not allowed to change the value of "title" after the entry has been created (Guessing it is because it is the key field???). 
 
I am trying to do it this way to avoid using autoPk and a custom sequence, because I found it too advanced for such a simple table. However, this issue is a bit annoying, especially from a UX point of view. 
 
My question (short): Can I somehow allow editing a key field in a table, so I can avoid setting up autoPk="true" with a custom sequence in this case? 
 
Addition: We are using a form to add/edit/delete entries in the table. 
 
schemaExample.PNG
 
Thanks in advance! 
1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @SorenDP ,

 

We cannot edit Primary Key. As the purpose of primary key is to have unique identifiable value in the table.

You can use primary key different from title and then edit the title field.

If you want to keep title as primary key, then whenever you want to edit its value, you need to make new data entry and delete old one.

 

Thanks,

Jyoti

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Hi @SorenDP ,

 

We cannot edit Primary Key. As the purpose of primary key is to have unique identifiable value in the table.

You can use primary key different from title and then edit the title field.

If you want to keep title as primary key, then whenever you want to edit its value, you need to make new data entry and delete old one.

 

Thanks,

Jyoti

Avatar

Level 4

Hi! 

 

Thanks for your reply. That is also my understanding. Thanks for confirming!