How to set a List B which is Cascade List type from a List A ?

Hi,

List A:  can choose

-WIFI

-BT

-CAM

 

List B: base on List A  when choose WIFI, and show

-WIFI 1

-WIFI 2

-WIFI 3

 

List B: base on List A  when choose BT, and show

-BT 1

-BT 2

 

how can i implement this case ?  List B base on what List A choose.

 

thanks.

 

Agile User Asked on May 11, 2020 in Agile PLM (v9).
Add Comment
2 Answer(s)

I see two options here.
Either you transition ListA to a nested lost which involves exporting all current data, changing the list, then importing the historical data back. In this case the list would look like;
WiFi
-WiFi 1
-WiFi 2
-WiFi 3
BT
-BT 1
-BT 2
CAM

Or your second option is to make the WiFi list veiwable/editable in the event WiFi is chosen on ListA using Field Level Read privileges and then another list for BT using the same logic.
This second option requires more mouse clicks but can be used to avoid any potentisl export/import issues.

Agile Angel Answered on May 11, 2020.
Add Comment

As Patrick mentioned you can use a Cascade List or leverage field level discovery. One more is to have custom validation, preventing the record from being saved if the user selects an invalid combination. Personally, I think the cleanest method is to use a Cascade List.

Agile Angel Answered on May 11, 2020.
Add Comment

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.