UFN_EXPORTDEFINITION_SMARTFIELDISINUSEBY

Examines the XML definition of each export definition in the database to determine whether the given smart field is in use by an existing export definition.

Return

Return Type
nvarchar(200)

Parameters

Parameter Parameter Type Mode Description
@OBJECTNAME nvarchar(128) IN

Definition

Copy


CREATE function dbo.UFN_EXPORTDEFINITION_SMARTFIELDISINUSEBY(@OBJECTNAME nvarchar(128))
returns nvarchar(200)
as
begin
  return dbo.UFN_EXPORTDEFINITION_FIELDISINUSEBY(@OBJECTNAME);
end;