DbGetMethodName

Name of the PL/SQL Get_Attribute_Name method

Syntax

DbGetMethodName "value";

Description

This should be specified only when the generated name is not sufficient.

For each public attribute, a Get_Xxxx method is generated. The name of this method is formed by Prefixing 'Get_' to a version of the attribute name with an added underscore between each word. For example, attribute name 'MyLateNightArrivalTime' will generate a 'Get_My_Late_Night_Arrival_Time' method.

Sometimes the generated name will be too long, since Oracle only allows 30 characters for a method name. In that case this property needs to be set. It can also be used when another name is better.

attributes {
   public     OrgCode TEXT(8)/UPPERCASE A-IU- {
      DbGetMethodName "Get_Organization";
   }
}

Related Properties


This page is generated from IFS Developer Studio at 2021-08-13 08:40.