In SAP B1, is it possible to save button caption in the DB according to the selected language?
Or how to resolve multilingual caption (title,...) according to system language?
So far I have only come up with such a stupid solution.
switch (Application.SBO_Application.Language)
{
case SAPbouiCOM.BoLanguages.ln_Slovak_Sk:
this.Button3.Caption = "Zobraz heslo";
break;
case SAPbouiCOM.BoLanguages.ln_Czech_Cz:
this.Button3.Caption = "Zobraz heslo";
break;
case SAPbouiCOM.BoLanguages.ln_German:
this.Button3.Caption = "Passwort anzeigen";
break;
default:
this.Button3.Caption = "Show password";
break;
}<br>
Request clarification before answering.
Hi,
I would also prefer the same way as you are doing. I do not see that Button Captions are saved anywhere.
Kind regards,
ANKIT CHAUHAN
SAP Business One Support
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 14 | |
| 13 | |
| 7 | |
| 6 | |
| 5 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.