USP_DATAFORMTEMPLATE_VIEW_ACCOUNTSTRUCTURE_METADATA

The load procedure used by the view dataform template "Account Structure Metadata View Form"

Parameters

Parameter Parameter Type Mode Description
@DATALOADED bit INOUT Output parameter indicating whether or not data was actually loaded.
@ACCOUNTSTRUCTURE xml INOUT ACCOUNTSTRUCTURE

Definition

Copy


CREATE procedure dbo.USP_DATAFORMTEMPLATE_VIEW_ACCOUNTSTRUCTURE_METADATA
(
    @DATALOADED bit = 0 output,
  @ACCOUNTSTRUCTURE xml = null output
)
as
    set nocount on;

    set @DATALOADED = 0;

    select @DATALOADED = 1,
    @ACCOUNTSTRUCTURE = dbo.UFN_ACCOUNTSTRUCTURE_GETMETADATA_TOITEMLISTXML(0)

    return 0;