How to get display label value when creating new action model
I have created a new submodel under "New" menu and want to give it a display label.
Written a resource bundle class like this:-
package actionFramework;
import wt.util.resource.*;
@RBUUID("actionFramework.CustomAction")
public class CustomAction extends WTListResourceBundle {
@RBEntry("Custom Third Level")
public static final String PRIVATE_CONSTANT_1 = "object.custom_third_level.description";
}
objecty.custom_third_level.description:- Can you tell from where does it fetch the value of description..so that that value appears as label in an action model..?
Do I need to define that somewhere? My label looks empty-






