I have seen the many posts and followed the recommendations and admin help instructions to use a sequence and stored procedure to assign sequential numbering to LF Forms. All of it works except the resulting number is not showing up in the assigned field. I have used both the number and bigint as the result set column and neither works. I do know that my stored procedure is working b/c the number is incrementing. The ticket # field itself is defined as Number. Please advise and thanks in advance.
The lookup rule:
The properties of the sequence:
The stored procedure was created as below:
CREATE PROCEDURE [dbo].[ITReqNumber]
AS
BEGIN
SELECT NEXT VALUE FOR [dbo].[ITReqSeqNumber]
END
GO