USP_DATAFORMTEMPLATE_ADD_PDACCOUNTCODEMAPFIXEDASSETS_PRELOAD

The load procedure used by the edit dataform template "Map Fixed Assets Add Form 2"

Parameters

Parameter Parameter Type Mode Description
@SYSTEMID uniqueidentifier IN Input parameter indicating the context ID for the record being added.
@PDACCOUNTSYSTEMID uniqueidentifier INOUT Account System

Definition

Copy

CREATE procedure dbo.USP_DATAFORMTEMPLATE_ADD_PDACCOUNTCODEMAPFIXEDASSETS_PRELOAD
(
    @SYSTEMID uniqueidentifier,
    @PDACCOUNTSYSTEMID uniqueidentifier = null output
)
as
    set nocount on;

    set @PDACCOUNTSYSTEMID = @SYSTEMID 

    return 0;