Hello,
How can I get Next Payment Number for eConnect 16? It seems to be available for older version eConnect 9.
Do I need to add any reference?
Your earliest reply is highly appreciable.
Thanks much
Sandip
*This post is locked for comments
Hello,
How can I get Next Payment Number for eConnect 16? It seems to be available for older version eConnect 9.
Do I need to add any reference?
Your earliest reply is highly appreciable.
Thanks much
Sandip
*This post is locked for comments
Hello Sandip,
Seems like the method GetPMNextPaymentNumber was removed GP 2013 onward. You can directly make a call to the taGetPMNextPaymentNumber stored procedure to retrieve the next payment number.
DECLARE @RC int
DECLARE @I_vInc_Dec tinyint
DECLARE @O_iPMNPYNBR varchar(21)
DECLARE @O_iErrorState int
-- TODO: Set parameter values here.
set @I_vInc_Dec=1
EXECUTE @RC = [dbo].[taGetPMNextPaymentNumber]
@I_vInc_Dec
,@O_iPMNPYNBR OUTPUT
,@O_iErrorState OUTPUT
select @O_iPMNPYNBR
Best,
Srini