Hi there I was trying to use this following script to update customer class. But the customer class did not get updated. Appreciate if any one has a clue. Thank you!
using GHTCA
declare @ErrorState int = 0
declare @ErrorString varchar(1000) = ''
exec dbo.taUpdateCreateCustomerRcd
@I_vCUSTNMBR = 'AACTLA00',
@I_vUpdateIfExists = 1,
@I_vCUSTCLAS = 'LOCAL',
@O_iErrorState = @ErrorState,
@oErrString = @ErrorString
if @ErrorState <> 0 select @ErrorState ErrorState, @ErrorString ErrorString