I have a pretty basic app to submit bids to an on-premise SQL server for aution items. The issue I'm having is updating the sequence number. I am using the following code:
Patch(Bids,Defaults(Bids),
{Item_Number:Value(subtxtItem.Text)};
{Bidder_ID:Value(BidderNumber.Text)};
{Amount_Bid:Value(SublblAmount.Text)};
{Maint_Userid:lblMaintID.Text};
{Maint_Date:Value(lblMaintDate.Text)};
{Create_Userid:lblCreateID.Text};
{Create_Date:Value(lblCreateDate.Text)};
)
The field for Seq_No would be between Bidder_ID and Amount_ID in the code?
The table is empty right now.
I have no idea what the code should be to submit to the Seq_no field in the table to increment by 1 for each submitted record.