USP_DATALIST_AMPROIMPORT_SYSTEMMESSAGE

Returns a list of system messages for an AMPro import batch row.

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN Input parameter indicating the context ID for the data list.

Definition

Copy


                CREATE procedure dbo.USP_DATALIST_AMPROIMPORT_SYSTEMMESSAGE
                (
                    @ID uniqueidentifier
                )
                as
                    set nocount on;

                    select
                        BATCHAMPROIMPORTBATCHSYSTEMMESSAGE.ID,
                        BATCHAMPROIMPORTBATCHSYSTEMMESSAGE.MESSAGETEXT,
                        BATCHAMPROIMPORTBATCHSYSTEMMESSAGE.MESSAGETYPECODE
                    from
                        dbo.BATCHAMPROIMPORTBATCHSYSTEMMESSAGE
                    where
                        BATCHAMPROIMPORTBATCHSYSTEMMESSAGE.ID = @ID