USP_DATAFORMTEMPLATE_EDITLOAD_PHONEFINDERPROCESSOPTIONS

The load procedure used by the edit dataform template "PhoneFinder Process Options Edit Data Form"

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN The input ID parameter used to load the fields defined on the form.
@DATALOADED bit INOUT Output parameter indicating whether or not data was actually loaded.
@TSLONG bigint INOUT Output parameter indicating the TSLONG value of the record being edited. This is used to manage multi-user concurrency issues when multiple users access the same record.
@INDIVIDUALMARKASPRIMARY bit INOUT Mark as primary
@ORGANIZATIONMARKASPRIMARY bit INOUT Mark as primary
@INDIVIDUALPHONETYPECODEID uniqueidentifier INOUT Individual phone type
@ORGANIZATIONPHONETYPECODEID uniqueidentifier INOUT Organization phone type
@INFOSOURCECODEID uniqueidentifier INOUT Information source

Definition

Copy


CREATE procedure dbo.USP_DATAFORMTEMPLATE_EDITLOAD_PHONEFINDERPROCESSOPTIONS
(
    @ID uniqueidentifier,
    @DATALOADED bit = 0 output,
    @TSLONG bigint = 0 output,
    @INDIVIDUALMARKASPRIMARY bit = null output,
    @ORGANIZATIONMARKASPRIMARY bit = null output,
    @INDIVIDUALPHONETYPECODEID uniqueidentifier = null output,
    @ORGANIZATIONPHONETYPECODEID uniqueidentifier = null output,
    @INFOSOURCECODEID uniqueidentifier = null output
)
as begin

    set nocount on;

    set @DATALOADED = 0;
    set @TSLONG = 0;

    select
        @DATALOADED = 1,
        @TSLONG = PHONEFINDER.[TSLONG],
        @INDIVIDUALMARKASPRIMARY = PHONEFINDER.[INDIVIDUALMARKASPRIMARY],
        @ORGANIZATIONMARKASPRIMARY = PHONEFINDER.[ORGANIZATIONMARKASPRIMARY],
        @INDIVIDUALPHONETYPECODEID = PHONEFINDER.[INDIVIDUALPHONETYPECODEID],
        @ORGANIZATIONPHONETYPECODEID = PHONEFINDER.[ORGANIZATIONPHONETYPECODEID],
        @INFOSOURCECODEID = PHONEFINDER.[INFOSOURCECODEID]
    from dbo.PHONEFINDER
    where PHONEFINDER.[ID] = @ID;

    return 0;
end