unique values whose
(
it != "" AND it != "Asset Tag#" AND it != "Base Board Asset Tag" AND it != "No Asset Tag" AND it != "To Be Filled By O.E.M."
)
of
(
it as trimmed string
)
of
(
(
if exists values "asset_tag" of structures "base_board_information" of smbios then
(
unique values of
(
it as string
)
of
(
values "asset_tag" of structures "base_board_information" of smbios
)
)
else ""
)
;
(
if exists values "asset_tag_number" of structures "system_enclosure_or_chassis" of smbios then
(
unique values of
(
it as string
)
of
(
values "asset_tag_number" of structures "system_enclosure_or_chassis" of smbios
)
)
else ""
)
)
unique values whose(it != "" AND it != "Asset Tag#" AND it != "Base Board Asset Tag" AND it != "No Asset Tag" AND it != "To Be Filled By O.E.M.") of (it as trimmed string) of ((if exists values "asset_tag" of structures "base_board_information" of smbios then (unique values of (it as string) of (values "asset_tag" of structures "base_board_information" of smbios)) else "") ; (if exists values "asset_tag_number" of structures "system_enclosure_or_chassis" of smbios then (unique values of (it as string) of (values "asset_tag_number" of structures "system_enclosure_or_chassis" of smbios)) else ""))