cancel
Showing results for 
Search instead for 
Did you mean: 

Attribute in Extension Definition

Former Member
0 Kudos

Hi Experts ,

I have defined an Attribute in Extension Defintion with wrong Data type . Now Data Type field is non-editable . Also i'm not able to delete the Attribute defined . Can any one suggest me how we can delete the wrong attribute as delete button is disabled .

Thanks in Advance

Tayi

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Thanks

Former Member
0 Kudos

Hi TDeepika,

You have to delete also this attribute from UI by using the following query in DB :

delete from FCI_UI_ITEM_OVERRIDES

where FIELD = 'NAME fo your field in UI'

and PARENT_OBJECT_ID = (select OBJECTID from FCI_UI_OVERRIDES where DISPLAY_NAME = 'YOUR CLASS NAME - Like Master Agreement');

KR,

Anacia

Former Member
0 Kudos

thanks Anacia for your help

Former Member
0 Kudos

I have deleted from sys_DYN_Members table . but still the attribute displays on UI Side .also i'm not able to save the other changes in extension definition . Save option is not working .. Any ideas

thanks in Advance

Tayi

Former Member
0 Kudos

hi TDeepika,

you have 2 ways to delete attribute id :

1- you can juste deactivate (not deleted physically) attribute id from attribute list ( Inactive(Status) column)

2 you can delete completly attribute id by using sql query in esourcing DB :

delete from FCI_SYS_DYN_MEMBERS where ATTRIBUTE_ID = 'YOUR_ATTRIBUTE'

KR,

Anacia

Edited by: anacia on Jun 30, 2010 2:44 PM