OK - Getting the ID of the record I just inserted is fine but I need to insert a user record where the username is made up of the record id:
MyCompany012
Or something like that.
I could insert the record, grab the ID and then update the username but then I have to figure out a unique username on the first insert as it needs to be not null and unique.
Ideally, I would figure out what the ID of the record is GOING TO BE and then change the username to include that ID.
Is this possible in one hit?
MyCompany012
Or something like that.
I could insert the record, grab the ID and then update the username but then I have to figure out a unique username on the first insert as it needs to be not null and unique.
Ideally, I would figure out what the ID of the record is GOING TO BE and then change the username to include that ID.
Is this possible in one hit?