USP_DATAFORMTEMPLATE_VIEW_PROSPECTRESEARCHREQUESTMANAGEMENTPAGEEXPRESSION

The load procedure used by the view dataform template "Prospect Research Request Management Page Expression View"

Parameters

Parameter Parameter Type Mode Description
@DATALOADED bit INOUT Output parameter indicating whether or not data was actually loaded.
@PLACEHOLDER bit INOUT Place holder

Definition

Copy


CREATE procedure dbo.USP_DATAFORMTEMPLATE_VIEW_PROSPECTRESEARCHREQUESTMANAGEMENTPAGEEXPRESSION
(
    @DATALOADED bit = 0 output,
    @PLACEHOLDER bit = null output
)
as
    set nocount on;

    --This view is only used to hide the prospect research request management configuration page

    set @DATALOADED = 1

    return 0;