USP_DATAFORMTEMPLATE_ADD_BALANCINGENTRY_PRELOAD
The load procedure used by the edit dataform template "Balancing Entry Add Form"
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ACCOUNTSTRUCTURE | xml | INOUT |
Definition
Copy
CREATE procedure dbo.USP_DATAFORMTEMPLATE_ADD_BALANCINGENTRY_PRELOAD
(
@ACCOUNTSTRUCTURE xml = null output
)
as
set nocount on;
select
@ACCOUNTSTRUCTURE = dbo.UFN_ACCOUNTSTRUCTURE_GETMETADATA_TOITEMLISTXML(0)
return 0;