Advanced Customization > Business Logic Customization > Customizing Workflow Administration > Customizing Change Tables Designed for Workflow > Solution > Adding New Resource Bundle Entries
  
Adding New Resource Bundle Entries
A new file needs to be created under <Windchill>/wtCustom/<custom-subdirectories>, (for instance CustomRB.java must be added under <Windchill>/wtCustom/com/ptc/windchill/enterprise/object folder), if a resource bundle does not exist for custom resource bundle entries.
Expected resource bundle entries for actions are:
@RBEntry("Custom Resulting Objects")
@RBComment("Used as the label for the action")
public static final String CUSTOM_RESULTING_DESC =
"changeTask.customTask_ResultingDataTable.description";

@RBEntry("Custom resulting objects")
@RBComment("Used as the tooltip for the action")
public static final String CUSTOM_RESULTING_TOOLTIP =
"changeTask.customTask_ResultingDataTable.tooltip";

@RBEntry("Custom Resulting Objects")
@RBComment("The table title for the custom resulting
objects table on a custom workflow task.")
public static final String CUSTOM_TASK_RESULTING_ITEMS_TABLE
= "CUSTOM_TASK_RESULTING_ITEMS_TABLE";
For more information on creating custom xconf entries, see Compiling Custom Classes.