I need to perform a bulk insert into t_eaddress. How does the eaddress_no field get populated? Is the AP_GET_NEXTID procedure called because I don't see a type for eaddress_no in T_NEXT_ID?
Thanks.
Matt,
The T_EADDRESS table uses the 'AD' type, same as T_ADDRESS. This is taken from WP_MAINTAIN_EADDRESS:
-- get a new address idexec @eaddress_no = [dbo].ap_get_nextid_function @type = 'AD'
Begin Transaction
--insert into t_eaddressInsert [dbo].t_eaddress(eaddress_no,...Values (@eaddress_no,...
Michael ReismanDirector of Information TechnologyThe New 42nd Street, Inc.mreisman@new42.org646.223.3069
Thanks you.