Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Simplification

Use this event to

Excerpt

Customize default values for Device Language Codes to be used when entering setup at the Mobile Language the suggested "Device Language Code" on the "Mobile languages" setup page.

Description

When setting up Mobile Languages in the web client, default "Device Language Code"'s is automatically suggested for a number of language codes.up Mobile Language (7/10), the system automatically suggests Device Language Codes.  E.g. Adding DEA (Austrian) will set Mobile Language Code to "DE" (German). 

Using this event, you may implement new default values for other languages ie. if you created a new custom device language pack for your language.

Also, three selected mobile language (including their associated MobMessages; translations) are created during install in MOB5.27 and newer (in older versions, these will need to be setup manually):

  • Danish (Windows Language DAN → Device Language DA) 
  • All english languages (Windows Language EN* → Device Language EN)
  • All german languages (Windows Language DE* → Device Langauge DE)

changes to this behavior or add support for new languages, you yourself have translated.


Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Language", 'OnConvertLanguageCodeToDeviceLanguageCode''', true, true)]
    local procedure OnConvertLanguageCodeToDeviceLanguageCode(_LanguageCode: Code[10]; var _DeviceLanguageCode: Code[20]; var _IsHandled: Boolean)
    begin
    end;

Example

...

  • Use device language code 'EN' for Malaysian
  • Add a  custom device language code 'TH' for Thai


    [EventSubscriber
(ObjectType::CodeunitCodeunit::"MOB WMS Language", 'OnConvertLanguageCodeToDeviceLanguageCode''', true, true)]
    local procedure MyOnConvertLanguageCodeToDeviceLanguageCode(_LanguageCode: Code[10]; var _DeviceLanguageCode: Code[20]; var _IsHandled: Boolean)
    begin
        // Malaysian
        if _LanguageCode = 'MSL' then begin
            _DeviceLanguageCode := 'EN';    //  Use english language pack from standard mobile wmsUse English language pack from standard mobile wms
            _IsHandled := true;
        end;

        // Thai
        if _LanguageCode = 'THA' then begin
            _DeviceLanguageCode := 'TH';    //  Use a device language pack that is not in standard mobile wms, but is developed and deployed by customers partnerUse a device language pack that is not in standard, but is created by partner
            _IsHandled := true;
        end;
    end;


Image RemovedImage Added


See also:

Filter by label (Content by label)
showLabelsfalse
showSpacefalse
excerptTypesimple
cqllabel = "bc" and label = "onconvertlanguagecodetodevicelanguagecode" and label = "example"

...

Version History

VersionChanges
MOB5.2627Introduced