DDPatel
22nd November 2021, 15:55
We have added CDF Field in table tdsls400 and Field type mentioned as List (cdf_nsid)
and
Have added table field Type Enum .nsid in tdcsl300 (Customize Table)

- Now I want to Assign Customize table field into CDF Field

tdsls400.cdf_nsid = tdcsl300.nsid

But it shows me a domain mismatch error...

tdsls400.cdf_nsid
Domain : tdcdf_lstall
Value :
1 = tdcdf_lstall.cdf001 (Allow)
2 = tdcdf_lstall.cdf002 (Not Allow)

tdcsl300.nsid
Domain : tdtrsp
Value :
1 = allow (Allow)
2 = not.allow (Not Allow)

How could I match Enum domain to CDF List type?

Thanks in Advance,
DDPatel

JaapJD
23rd November 2021, 11:09
tdsls400.cdf_nsid = ltoe(etol(tdcsl300.ndis))

Note that as of tools 10.5.2 you can use also enum domains instead of CDF lists.

DDPatel
24th November 2021, 14:29
tdsls400.cdf_nsid = ltoe(etol(tdcsl300.ndis))

Note that as of tools 10.5.2 you can use also enum domains instead of CDF lists.

Thank you for your valuable reply JaapJD, :)