fnProfileEditorFields
Return
| Return Type |
|---|
| table |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @ContentId | int | IN |
Definition
Copy
CREATE FUNCTION dbo.fnProfileEditorFields
(
@ContentId int
)
RETURNS TABLE
AS
RETURN (SELECT [ID], [FieldID], [Caption], [Editable], [Required], [AllowDelete], [AllowPrivate],
[UseCodeTable], [AllowNewCodes], [ContentID], [Include], [FieldAttribID], [ShowInGrid]
FROM [ProfileEditorFields]
WHERE contentid=@contentid)