UFN_LETTERCODE_GETOUTPUTFORMATS_TOITEMLISTXML

Used to convert the results of UFN_LETTERCODE_GETOUTPUTFORMATS to xml.

Return

Return Type
xml

Definition

Copy
/*
Generated by Blackbaud AppFx Platform
Date:  1/27/2010 6:59:01 PM
Assembly Version:  Blackbaud.AppFx.Platform.SqlClr, Version=2.5.465.0, Culture=neutral, PublicKeyToken=null
Based on:  UFN_LETTERCODE_GETOUTPUTFORMATS
Copyright Blackbaud
*/
CREATE FUNCTION dbo.[UFN_LETTERCODE_GETOUTPUTFORMATS_TOITEMLISTXML](
    )
returns xml
as
BEGIN

RETURN (
SELECT [ID], [QUERYVIEWID]
 FROM dbo.[UFN_LETTERCODE_GETOUTPUTFORMATS]()
 for xml raw('ITEM'),type,elements,root('LETTERCODEOUTPUTFORMATS'),BINARY BASE64

)

END