on 2019 Jun 06 7:55 PM
Hi experts.
I am trying to set a condition in my b1f form such that if the value of a combobox is "Closed" then disable a an editText18. SAP B1 addon development
Below is the c# code so far, when l run my addon , and set the combobox to "Closed" and update nothing is happening to the EditText18
private void Form_LoadAfter(SAPbouiCOM.SBOItemEventArg pVal) { try { if (((SAPbouiCOM.ComboBox)(this.GetItem("Item_28").Specific)).Selected.Value == "Closed") { ((SAPbouiCOM.EditText)(this.GetItem("Item_19").Specific)).Active = false; } } catch (Exception n) { } }
User | Count |
---|---|
104 | |
10 | |
8 | |
7 | |
4 | |
4 | |
3 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.