The value xx is not found in the map.

numara serisi yapmak istediğinizde NumberSeqModule baseenum’a ekleme yaptığınızda “The value xx is not found in the map.” hatası alırsanız aşağıdaki metoda aşağıdaki satırı ekleyin.

///
<summary>
///     Loads the number sequence grid with LabAx sequence numbers that need to be defined.
/// </summary>

void numberSeqPreInit()
{
    runExecuteDirect   = false;
    numberSequenceModules = [NumberSeqModule::LabAx];
    numberSeqApplicationModule = new NumberSeqModuleLabAx();       

    // Define the right scope of the Number Sequence
    scope = NumberSeqScopeFactory::createDataAreaScope();
    appl.numberSeqGlobal().numberSeqModulesMap().insert(NumberSeqModule::LabAx, numberSeqApplicationModule);//DRT MK
    NumberSeqApplicationModule::createReferencesMulti(numberSequenceModules, scope);
    tmpIdRef.setTmpData(NumberSequenceReference::configurationKeyTableMulti(numberSequenceModules));
}

Ekran Alıntısı

Ekran Alıntısı2

Kaynak : https://rmdax2012.wordpress.com/2011/08/19/creating-isv-number-sequences/