I have the following use case:
Acumatica combo box / dropdown, which can have 8 or so values, the selection of which determines the table / DAC used to present in a Combo box/ drop down.
e.g.:
- if current
StatusProfileID
= WO1 andStatus
= WCMP , WCMP is CurrentUserStatus
, thenUserStatus
= WRJT, WEXE,WCMP - if current
StatusProfileID
= WO1 andStatus
= WRJT , WRJT is CurrentUserStatus
, thenUserStatus
= WEXE, WRJT
How can I make the user status that appears in accordance with the current status, and will change in real time while selecting another data
I follow the way of Acumatica Dynamic MultiSelect Dropdown to select data from status table
I understand that I'd have to use a Custom StringList Attribute, but the details of how to do this are not clear.