Default dataname mapping rule

The default rule of Dataname mapping is to convert an XML name into camel case style. It would change the first character of every word composing an XML name to uppercase and the others to lowercase.

Example

Table 1. After applying the Camelcase Rule
Before conversion After conversion
FIRST_NAME firstName
FOOBar fooBar
SSNCode ssnCode
So if you define the Global Data Dictionary, you should define firstName, fooBar, ssnCode.
However, the Camel case Rule has the following limitations: So if you define the Global Data Dictionary, you should define abc, abc1Abc2E other than aBC and abc1Abc2e