cancel
Showing results for 
Search instead for 
Did you mean: 

Addon - Button Captions multilanguage

01-20-2023 8:01 AM
308 views 1 comments
0 Likes
SAP Managed Tags
Subscribe

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>
0 Likes

Accepted Solutions (0)

Answers (1)

Answers (1)

ANKIT_CHAUHAN
Product and Topic Expert
Product and Topic Expert
0 Likes

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