Question Larry Overkamp · May 30, 2018

Change property heading

Release 2017.2.

I have created a class that extends Ens.BusinessOperation, and in my class I have defined a custom property. How can I change the property's heading that is displayed on the Management Portal Settings tab?

Comments

Sean Connelly · May 30, 2018

Hi Larry,

Have you added the property into the SETTINGS parameter, e.g.

Parameter SETTINGS = "Foobar";
Property Foobar As %String;


If its not in the SETTINGS then it won't appear on the config UI settings.

Sean.

0
Sean Connelly  May 30, 2018 to Sean Connelly

Ahh, just re-read your question, I think your asking how to change the settings label?

You will need to change the language lookup value, take a look at...

^CacheMsg("EnsColumns","en")

0
Larry Overkamp  May 30, 2018 to Sean Connelly

I got it to work using the set command. Had to use "en-us", though. Can I assume that this needs to be done only once in each namespace in which it will be used? I made the change via a Terminal session; is there a way to do it in the class code (ObjectScript) itself?

0