<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: last_edited_user populate in ArcGIS Enterprise Questions</title>
    <link>https://community.esri.com/t5/arcgis-enterprise-questions/last-edited-user-populate/m-p/385833#M14984</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As it turns out, the data model we're using has a LASTEDITOR field that honors the user authenticated id, so it will do as a workaround. But in answer to your question, the user authentication gives them access to the application which is running on a secured service - an SDE versioned feature service with a single editor. I think SDE is taking over the population of those editor tracking fields, but as I mentioned, I've got a decent workaround for the moment. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Aug 2016 20:38:53 GMT</pubDate>
    <dc:creator>JamesLandwehr</dc:creator>
    <dc:date>2016-08-03T20:38:53Z</dc:date>
    <item>
      <title>last_edited_user populate</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/last-edited-user-populate/m-p/385829#M14980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to populate the last_edited_user field using a variable generated from a third party workflow. Is this possible? It continues to pull the SDE versioned user name and ignore my attempts to do a field update with a variable username collected from an authenticated login.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2016 17:07:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/last-edited-user-populate/m-p/385829#M14980</guid>
      <dc:creator>JamesLandwehr</dc:creator>
      <dc:date>2016-08-03T17:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: last_edited_user populate</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/last-edited-user-populate/m-p/385830#M14981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've used this Sql Server trigger on the 'A' table of my centerlines for a number of years:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USE [vecc2012]&lt;/P&gt;&lt;P&gt;GO&lt;/P&gt;&lt;P&gt;/****** Object:&amp;nbsp; Trigger [vecc].[centerlineseditor]&amp;nbsp;&amp;nbsp;&amp;nbsp; Script Date: 8/3/2016 11:15:51 AM ******/&lt;/P&gt;&lt;P&gt;SET ANSI_NULLS ON&lt;/P&gt;&lt;P&gt;GO&lt;/P&gt;&lt;P&gt;SET QUOTED_IDENTIFIER ON&lt;/P&gt;&lt;P&gt;GO&lt;/P&gt;&lt;P&gt;-- =============================================&lt;/P&gt;&lt;P&gt;-- Author:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Author,,Name&amp;gt;&lt;/P&gt;&lt;P&gt;-- Create date: &amp;lt;Create Date,,&amp;gt;&lt;/P&gt;&lt;P&gt;-- Description:&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Description,,&amp;gt;&lt;/P&gt;&lt;P&gt;-- =============================================&lt;/P&gt;&lt;P&gt;ALTER TRIGGER [vecc].[centerlineseditor]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ON [vecc].[a28]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; for INSERT&lt;/P&gt;&lt;P&gt;AS update vecc.a28&lt;/P&gt;&lt;P&gt;--BEGIN&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; -- SET NOCOUNT ON added to prevent extra result sets from&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; -- interfering with SELECT statements.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; --SET NOCOUNT ON;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; -- Insert statements for trigger here&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set editor = user&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; where objectid in (select objectid from inserted)and user &amp;lt;&amp;gt; 'vecc'&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--end&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It just grabs the user-name to populate the field (unless the user is vecc; that's me);&amp;nbsp; How does the the third party user name differ from what you are getting?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2016 17:19:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/last-edited-user-populate/m-p/385830#M14981</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2016-08-03T17:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: last_edited_user populate</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/last-edited-user-populate/m-p/385831#M14982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Joe, Thanks for your reply. My SDE Version is web_editor (so everybody's edits are shown as web_editor) and my User authenticated logins are email addresses.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2016 17:49:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/last-edited-user-populate/m-p/385831#M14982</guid>
      <dc:creator>JamesLandwehr</dc:creator>
      <dc:date>2016-08-03T17:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: last_edited_user populate</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/last-edited-user-populate/m-p/385832#M14983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm&amp;nbsp; a little confused (nothing new...):&amp;nbsp; it's pulling the name of the version and not the name of the user?&amp;nbsp; Does the third party handle the authentication or the database?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2016 18:01:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/last-edited-user-populate/m-p/385832#M14983</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2016-08-03T18:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: last_edited_user populate</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/last-edited-user-populate/m-p/385833#M14984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As it turns out, the data model we're using has a LASTEDITOR field that honors the user authenticated id, so it will do as a workaround. But in answer to your question, the user authentication gives them access to the application which is running on a secured service - an SDE versioned feature service with a single editor. I think SDE is taking over the population of those editor tracking fields, but as I mentioned, I've got a decent workaround for the moment. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2016 20:38:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/last-edited-user-populate/m-p/385833#M14984</guid>
      <dc:creator>JamesLandwehr</dc:creator>
      <dc:date>2016-08-03T20:38:53Z</dc:date>
    </item>
  </channel>
</rss>

