Copy feature classes from feature datasets (2024)

Community

  • All Communities

    Products

    ArcGIS Pro ArcGIS Survey123 ArcGIS Online ArcGIS Enterprise Data Management Geoprocessing ArcGIS Web AppBuilder ArcGIS Experience Builder ArcGIS Dashboards ArcGIS Spatial Analyst ArcGIS CityEngine All Products Communities

    Industries

    Education Water Resources Transportation Gas and Pipeline Water Utilities Roads and Highways Telecommunications Natural Resources Electric Public Safety All Industries Communities

    Developers

    Python JavaScript Maps SDK Native Maps SDKs ArcGIS API for Python ArcObjects SDK ArcGIS Pro SDK Developers - General ArcGIS REST APIs and Services ArcGIS Online Developers File Geodatabase API Game Engine Maps SDKs All Developers Communities

    Worldwide

    Comunidad Esri Colombia - Ecuador - Panamá ArcGIS 開発者コミュニティ Czech GIS ArcNesia Esri India GeoDev Germany ArcGIS Content - Esri Nederland Esri Italia Community Comunidad GEOTEC Esri Ireland Používatelia ArcGIS All Worldwide Communities

    All Communities

    Developers User Groups Industries Services Community Resources Worldwide Events Learning Networks ArcGIS Topics GIS Life View All Communities

  • ArcGIS Ideas
  • GIS Life
  • Community Resources

    Community Help Documents

    Community Blog

    Community Feedback

    Member Introductions

    Community Ideas

    All Community Resources

Sign In

  • Home
  • :
  • All Communities
  • :
  • Developers
  • :
  • Python
  • :
  • Python Questions
  • :
  • Copy feature classes from feature datasets

Options

  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page

Copy feature classes from feature datasets (1) Select to view content in your preferred language

Subscribe

3629

5

10-23-2020 02:40 PM

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

Hello, I'm trying to write a code to copy the feature classes inside of feature datasets.

I'm having two issues. I have 2 feature datasets, but when I do the "print(fcList)" , seems like only the features one dataset are being listed. The second one is that the tool stucks at the arcpy.CopyFeaturesHere below my code:

Thanks in advance for any tip.

import arcpyfrom arcpy import envenv.workspace = r'C:/Trials/NPD_FactMapsData_v3_0_2.gdb'# Set local variablesOutputFGDB = r'C:/Trials/New File Geodatabase.gdb'#env.workspace = arcpy.GetParameterAsText(0)datasetList = arcpy.ListDatasets('*','Feature')try: for dataset in datasetList: env.workspace = dataset fcList = arcpy.ListFeatureClasses() print (fcList) for fc in fcList: print('copying...') arcpy.CopyFeatures_management(fc,OutputFGDB) print("copy finished")except: # Report if there was an error arcpy.AddError("Could not copy feature classes") print ("Could not copy feature classes") #print arcpy.GetMessages()

Tags (3)

  • Tags:
  • list arcpy
  • listfeatureclasses
  • pythonhelp

0Kudos

  • All Posts
  • Previous Topic
  • Next Topic

5 Replies

Copy feature classes from feature datasets (3)

byDavidPikeCopy feature classes from feature datasets (4)

MVP Frequent Contributor

‎10-24-202001:46 PM

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

for dataset in datasetList:

add an indentation after this for the block, get rid of the try except block as this is likely failing with the lack of indent then excepting, add lots or print statements and review

0Kudos

Copy feature classes from feature datasets (5)

byDilsonKitoko

New Contributor III

‎10-24-202004:50 PM

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

Hello, thanks for your reply. I "cleaned" the code, but still not working. Still starts failing atfcList. Only the features from one dataset are being listed.For the second dataset fcList is returning "None". If I printdataset or datasetList, i can see the 2 datasetslisted. Then in thearcpy.CopyFeatures its try to write a file with shapefile extension, of course an error.

import arcpyarcpy.env.workspace = r"C:\Trials\NPD_FactMapsData_v3_0_2.gdb"OutputFGDB = r"C:\Trials\New File Geodatabase.gdb"datasetList = arcpy.ListDatasets() for dataset in datasetList: arcpy.env.workspace = dataset fcList = arcpy.ListFeatureClasses() for fc in fcList: arcpy.CopyFeatures_management(fc, OutputFGDB)

0Kudos

Copy feature classes from feature datasets (6)

byDavidPikeCopy feature classes from feature datasets (7)

MVP Frequent Contributor

‎10-24-202005:11 PM

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

I think in CopyFeatures you would specify the path for the output FC rather than the destination GDB/Folder, grab the fc name and use that within your loop (something like os.path.join(OutputFGDB, fc_name). Have a look at the feature class class attributes and see the name property, may well be fc_name = fc.name, also ensure you import os module.

for fc in fcList: also has no indent on what you've copied.

Again put in some print statements and it would be helpful to see what output, messages you get also.

1Kudo

Copy feature classes from feature datasets (8)

byMarkKinnaman

New Contributor III

‎10-27-202006:17 AM

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

To get the script to iterate through your datasets you need to specify what datasets to use.

import arcpyfrom arcpy import envimport osenv.workspace = "C:\\GDB.gdb"outGDB = "C:\\outGDB.gdb"env.overwriteOutput = TruedataSetList = arcpy.ListDatasets(feature_type='feature')#check to make sure the list is populatingprint dataSetListfor ds in dataSetList: for fc in arcpy.ListFeatureClasses(feature_dataset=ds): #Check to see if the list is populating. print fc arcpy.CopyFeatures_management(fc, outGDB)

Another good options is to use Walk and allow it to collect the feature classes within your datasets.

1Kudo

Copy feature classes from feature datasets (9)

byDilsonKitoko

New Contributor III

‎10-27-202002:48 PM

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

Hello Mark,

Thank you, after your tips i figure it out the isse with listing all fcs. For the ouput I had to os.path.basename and splitext to get the fc names and thenos.path.join to generate the full output.

Cheers,

0Kudos

Copy feature classes from feature datasets (10)

  • Terms of Use
  • Community Guidelines
  • Community Resources
  • Contact Community Team
'); } }); /*For megamenu search icon Ends*/ $('.lia-autocomplete-input').keypress(function(event){ var keycode = (event.keyCode ? event.keyCode : event.which); if(keycode == '13'){ $(".lia-autocomplete-container").removeClass('lia-autocomplete-has-results'); } }); /*For community Banner search bar start*/ // $(".lia-button-searchForm-action").click(function(){ // $(".lia-autocomplete-container").removeClass('lia-autocomplete-has-results'); // $('body').append(''); // }); /*For community Banner search bar start*/ }); /* jira ticket https://italent.atlassian.net/browse/ESRI-271 Ends here*/ /* This code is written by iTalent as part of jira ticket https://italent.atlassian.net/browse/ESRI-276 */ $('.lia-summary-view-statistic-location').css("display","none"); /* jira ticket https://italent.atlassian.net/browse/ESRI-276 Ends here*/ /*ESRI-276 -> Member profile cards - search results START*//*$(".lia-quilt-row.lia-quilt-row-standard").find(".lia-mark-empty").parent().css({"visibility": "hidden"});*//*window.addEventListener('DOMContentLoaded', (event) => {let element = jQuery('.lia-search-results-container');if (element.length) { console.log("Card is inserting"); $(".lia-quilt-row.lia-quilt-row-standard").find(".lia-mark-empty").parent().css({"visibility": "hidden"});}});*//*$('.SearchPage .lia-form-type-text.lia-form-type-search').keyup(function(event){alert("test1");var keycode = (event.keyCode ? event.keyCode : event.which);debugger;if(keycode == '13'){setTimeout(function() {$(".lia-quilt-row.lia-quilt-row-standard").find(".lia-mark-empty").parent().css({"visibility": "hidden"});alert("test3");}, 6000);}});*/ /*ESRI-276 -> Member profile cards - search results END*/ jQuery('.lia-info-area').find('.custom-thread-floated').closest('.cThreadInfoColumn ').addClass('Latest-thread-floated'); jQuery(".Latest-thread-floated").prev().addClass("label-cls");/*ESRI-330*/jQuery(window).load(function() {setInterval(function () {jQuery('.lia-message-view-type-compact').find('.LabelsForArticle').closest('.lia-quilt-row-header ').addClass('grouphub-label');jQuery('.lia-message-view-type-compact').find('.lia-component-tags').closest('.lia-message-view-display ').addClass('grouphub-tags');jQuery('.lia-message-view-type-compact').find('.lia-image-slider .carousel').closest('.lia-message-view-display ').addClass('grouphub-slider');jQuery('.lia-byline-item .lia-fa-icon').hover(function() {$(this).attr('title', '');});},1000);});var textCheck = jQuery('.idea:contains("Needs Clarification Testing")');if (textCheck){ jQuery(".cMessageStyleColumn ").addClass("clarification_test");} })(LITHIUM.jQuery); LITHIUM.DropDownMenu({"userMessagesFeedOptionsClass":"div.user-messages-feed-options-menu a.lia-js-menu-opener","menuOffsetContainer":".lia-menu-offset-container","hoverLeaveEvent":"LITHIUM:hoverLeave","mouseoverElementSelector":".lia-js-mouseover-menu","userMessagesFeedOptionsAriaLabel":"Show contributions of the user, selected option is Options. You may choose another option from the dropdown menu.","disabledLink":"lia-link-disabled","menuOpenCssClass":"dropdownHover","menuElementSelector":".lia-menu-navigation-wrapper","dialogSelector":".lia-panel-dialog-trigger","messageOptions":"lia-component-message-view-widget-action-menu","menuBarComponent":"lia-component-menu-bar","closem*nuEvent":"LITHIUM:closem*nu","menuOpenedEvent":"LITHIUM:menuOpened","pageOptions":"lia-component-community-widget-page-options","clickElementSelector":".lia-js-click-menu","menuItemsSelector":".lia-menu-dropdown-items","menuClosedEvent":"LITHIUM:menuClosed"});LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown","menuItemsSelector":".lia-menu-dropdown-items"}});LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#pageInformation","feedbackSelector":".InfoMessage"});LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox","feedbackSelector":".InfoMessage"}); ;(function($){ if('10-23-2020 02:40 PM'=='10-23-2020 02:40 PM'){ $(".datestring").attr('title', 'Posted on'); }else{ $(".datestring").attr('title', '10-23-2020 02:40 PM'); } })(LITHIUM.jQuery);LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_0","feedbackSelector":".InfoMessage"});LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_1","feedbackSelector":".InfoMessage"});LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_2","feedbackSelector":".InfoMessage"});LITHIUM.DropDownMenu({"userMessagesFeedOptionsClass":"div.user-messages-feed-options-menu a.lia-js-menu-opener","menuOffsetContainer":".lia-menu-offset-container","hoverLeaveEvent":"LITHIUM:hoverLeave","mouseoverElementSelector":".lia-js-mouseover-menu","userMessagesFeedOptionsAriaLabel":"Show contributions of the user, selected option is Show Copy feature classes from feature datasets post option menu. You may choose another option from the dropdown menu.","disabledLink":"lia-link-disabled","menuOpenCssClass":"dropdownHover","menuElementSelector":".lia-menu-navigation-wrapper","dialogSelector":".lia-panel-dialog-trigger","messageOptions":"lia-component-message-view-widget-action-menu","menuBarComponent":"lia-component-menu-bar","closem*nuEvent":"LITHIUM:closem*nu","menuOpenedEvent":"LITHIUM:menuOpened","pageOptions":"lia-component-community-widget-page-options","clickElementSelector":".lia-js-click-menu","menuItemsSelector":".lia-menu-dropdown-items","menuClosedEvent":"LITHIUM:menuClosed"});LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown_0","menuItemsSelector":".lia-menu-dropdown-items"}});LITHIUM.MessageBodyDisplay('#bodyDisplay', '.lia-truncated-body-container', '#viewMoreLink', '.lia-full-body-container' );LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_3","feedbackSelector":".InfoMessage"});LITHIUM.InlineMessageReplyContainer({"openEditsSelector":".lia-inline-message-edit","renderEventParams":{"replyWrapperId":"replyWrapper","messageId":527942,"messageActionsId":"messageActions"},"isRootMessage":true,"collapseEvent":"LITHIUM:collapseInlineMessageEditor","confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","messageActionsSelector":"#messageActions","loaderSelector":"#loader","topicMessageSelector":".lia-forum-topic-message-gte-5","containerSelector":"#inlineMessageReplyContainer","loaderEnabled":false,"useSimpleEditor":false,"isReplyButtonDisabled":false,"linearDisplayViewSelector":".lia-linear-display-message-view","threadedDetailDisplayViewSelector":".lia-threaded-detail-display-message-view","replyEditorPlaceholderWrapperSelector":".lia-placeholder-wrapper","renderEvent":"LITHIUM:renderInlineMessageReply","expandedRepliesSelector":".lia-inline-message-reply-form-expanded","isLazyLoadEnabled":false,"layoutView":"linear","isAllowAnonUserToReply":true,"replyButtonSelector":".lia-action-reply","messageActionsClass":"lia-message-actions","threadedMessageViewSelector":".lia-threaded-display-message-view-wrapper","lazyLoadScriptsEvent":"LITHIUM:lazyLoadScripts","isGteForumV5":true});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineMessageReply"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer","action":"renderInlineMessageReply","feedbackSelector":"#inlineMessageReplyContainer","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:renderinlinemessagereply?t:ac=board-id/python-questions/thread-id/41362&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"QtnvA1RAMJdaeaykutJP8s6s6GOSdNGvsdWWHx8umE4."});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lazyLoadScripts"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer","action":"lazyLoadScripts","feedbackSelector":"#inlineMessageReplyContainer","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:lazyloadscripts?t:ac=board-id/python-questions/thread-id/41362&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"IfN_cwOBkNQgkx5Dg8SmMVjZCoeO8vCBtvuYSHnAY8c."});LITHIUM.AjaxSupport.fromLink('#kudoEntity', 'kudoEntity', '#ajaxfeedback', 'LITHIUM:ajaxError', {}, 'V6w06aYqLyX8Sr9OyZvSfpt_UpBDy_CO_-dl-D1rNUE.', 'ajax');LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "kudoEntity", "actions" : [ { "context" : "envParam:entity", "action" : "rerender" } ] } ], "componentId" : "kudos.widget.button", "initiatorBinding" : true, "selector" : "#kudosButtonV2", "parameters" : { "displayStyle" : "horizontal", "disallowZeroCount" : "false", "revokeMode" : "true", "kudosable" : "true", "showCountOnly" : "false", "disableKudosForAnonUser" : "false", "useCountToKudo" : "false", "entity" : "527942", "linkDisabled" : "false" }, "initiatorDataMatcher" : "data-lia-kudos-id"});LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "approveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "unapproveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "deleteMessage", "actions" : [ { "context" : "lia-deleted-state", "action" : "addClassName" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "QuickReply", "actions" : [ { "context" : "envParam:feedbackData", "action" : "rerender" } ] }, { "event" : "expandMessage", "actions" : [ { "context" : "envParam:quiltName,expandedQuiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswer", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswerComment", "actions" : [ { "context" : "envParam:selectedMessage", "action" : "rerender" } ] }, { "event" : "editProductMessage", "actions" : [ { "context" : "envParam:quiltName,message", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAction", "actions" : [ { "context" : "envParam:quiltName,message,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "ProductMessageEdit", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "MessagesWidgetMessageEdit", "actions" : [ { "context" : "envParam:quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "AcceptSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "RevokeSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "markAsSpamWithoutRedirect", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "MessagesWidgetAnswerForm", "actions" : [ { "context" : "envParam:messageUid,page,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAnswerForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] } ], "componentId" : "forums.widget.message-view", "initiatorBinding" : true, "selector" : "#messageview", "parameters" : { "disableLabelLinks" : "false", "truncateBodyRetainsHtml" : "false", "forceSearchRequestParameterForBlurbBuilder" : "false", "kudosLinksDisabled" : "false", "useSubjectIcons" : "true", "quiltName" : "ForumMessage", "truncateBody" : "true", "message" : "527942", "includeRepliesModerationState" : "false", "useSimpleView" : "false", "useTruncatedSubject" : "true", "disableLinks" : "false", "messageViewOptions" : "1111110111111111111110111110100101011101", "displaySubject" : "true" }, "initiatorDataMatcher" : "data-lia-message-uid"});LITHIUM.MessageViewDisplay({"openEditsSelector":".lia-inline-message-edit","renderInlineFormEvent":"LITHIUM:renderInlineEditForm","componentId":"lineardisplaymessageviewwrapper","componentSelector":"#lineardisplaymessageviewwrapper","editEvent":"LITHIUM:editMessageViaAjax","collapseEvent":"LITHIUM:collapseInlineMessageEditor","messageId":527942,"confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","loaderSelector":"#lineardisplaymessageviewwrapper .lia-message-body-loader .lia-loader","expandedRepliesSelector":".lia-inline-message-reply-form-expanded"});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineEditForm"},"tokenId":"ajax","elementSelector":"#lineardisplaymessageviewwrapper","action":"renderInlineEditForm","feedbackSelector":"#lineardisplaymessageviewwrapper","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.lineardisplay_0.lineardisplaymessageviewwrapper:renderinlineeditform?t:ac=board-id/python-questions/thread-id/41362","ajaxErrorEventName":"LITHIUM:ajaxError","token":"0c7lHhE4LJjhK_dmajOkqiVlIrV2K31qof4bB1lYSQs."});LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_4","feedbackSelector":".InfoMessage"});LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_5","feedbackSelector":".InfoMessage"});LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_6","feedbackSelector":".InfoMessage"});LITHIUM.DropDownMenu({"userMessagesFeedOptionsClass":"div.user-messages-feed-options-menu a.lia-js-menu-opener","menuOffsetContainer":".lia-menu-offset-container","hoverLeaveEvent":"LITHIUM:hoverLeave","mouseoverElementSelector":".lia-js-mouseover-menu","userMessagesFeedOptionsAriaLabel":"Show contributions of the user, selected option is Show comment option menu. You may choose another option from the dropdown menu.","disabledLink":"lia-link-disabled","menuOpenCssClass":"dropdownHover","menuElementSelector":".lia-menu-navigation-wrapper","dialogSelector":".lia-panel-dialog-trigger","messageOptions":"lia-component-message-view-widget-action-menu","menuBarComponent":"lia-component-menu-bar","closem*nuEvent":"LITHIUM:closem*nu","menuOpenedEvent":"LITHIUM:menuOpened","pageOptions":"lia-component-community-widget-page-options","clickElementSelector":".lia-js-click-menu","menuItemsSelector":".lia-menu-dropdown-items","menuClosedEvent":"LITHIUM:menuClosed"});LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown_1","menuItemsSelector":".lia-menu-dropdown-items"}});LITHIUM.MessageBodyDisplay('#bodyDisplay_0', '.lia-truncated-body-container', '#viewMoreLink', '.lia-full-body-container' );LITHIUM.InlineMessageReplyContainer({"openEditsSelector":".lia-inline-message-edit","renderEventParams":{"replyWrapperId":"replyWrapper_0","messageId":527943,"messageActionsId":"messageActions_0"},"isRootMessage":false,"collapseEvent":"LITHIUM:collapseInlineMessageEditor","confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","messageActionsSelector":"#messageActions_0","loaderSelector":"#loader","topicMessageSelector":".lia-forum-topic-message-gte-5","containerSelector":"#inlineMessageReplyContainer_0","loaderEnabled":false,"useSimpleEditor":false,"isReplyButtonDisabled":false,"linearDisplayViewSelector":".lia-linear-display-message-view","threadedDetailDisplayViewSelector":".lia-threaded-detail-display-message-view","replyEditorPlaceholderWrapperSelector":".lia-placeholder-wrapper","renderEvent":"LITHIUM:renderInlineMessageReply","expandedRepliesSelector":".lia-inline-message-reply-form-expanded","isLazyLoadEnabled":false,"layoutView":"linear","isAllowAnonUserToReply":true,"replyButtonSelector":".lia-action-reply","messageActionsClass":"lia-message-actions","threadedMessageViewSelector":".lia-threaded-display-message-view-wrapper","lazyLoadScriptsEvent":"LITHIUM:lazyLoadScripts","isGteForumV5":true});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineMessageReply"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_0","action":"renderInlineMessageReply","feedbackSelector":"#inlineMessageReplyContainer_0","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:renderinlinemessagereply?t:ac=board-id/python-questions/thread-id/41362&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"NGdQrVpIJ657ncTX0OFm0sXDyOyZmTJJls6xYIw7Cxs."});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lazyLoadScripts"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_0","action":"lazyLoadScripts","feedbackSelector":"#inlineMessageReplyContainer_0","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:lazyloadscripts?t:ac=board-id/python-questions/thread-id/41362&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"vjqknXT2Kin8MvOaLRQuK0WiNz47Qp2Tujf8vvRA4Gs."});LITHIUM.AjaxSupport.fromLink('#kudoEntity_0', 'kudoEntity', '#ajaxfeedback_0', 'LITHIUM:ajaxError', {}, 'XIlXFiTKCkGcUU2chVcDr3jPycaiqwKFXoNqWl_nXUo.', 'ajax');LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "kudoEntity", "actions" : [ { "context" : "envParam:entity", "action" : "rerender" } ] } ], "componentId" : "kudos.widget.button", "initiatorBinding" : true, "selector" : "#kudosButtonV2_0", "parameters" : { "displayStyle" : "horizontal", "disallowZeroCount" : "false", "revokeMode" : "true", "kudosable" : "true", "showCountOnly" : "false", "disableKudosForAnonUser" : "false", "useCountToKudo" : "false", "entity" : "527943", "linkDisabled" : "false" }, "initiatorDataMatcher" : "data-lia-kudos-id"});LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "approveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "unapproveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "deleteMessage", "actions" : [ { "context" : "lia-deleted-state", "action" : "addClassName" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "QuickReply", "actions" : [ { "context" : "envParam:feedbackData", "action" : "rerender" } ] }, { "event" : "expandMessage", "actions" : [ { "context" : "envParam:quiltName,expandedQuiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswer", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswerComment", "actions" : [ { "context" : "envParam:selectedMessage", "action" : "rerender" } ] }, { "event" : "editProductMessage", "actions" : [ { "context" : "envParam:quiltName,message", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAction", "actions" : [ { "context" : "envParam:quiltName,message,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "ProductMessageEdit", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "MessagesWidgetMessageEdit", "actions" : [ { "context" : "envParam:quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "AcceptSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "RevokeSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "markAsSpamWithoutRedirect", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "MessagesWidgetAnswerForm", "actions" : [ { "context" : "envParam:messageUid,page,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAnswerForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] } ], "componentId" : "forums.widget.message-view", "initiatorBinding" : true, "selector" : "#messageview_0", "parameters" : { "disableLabelLinks" : "false", "truncateBodyRetainsHtml" : "false", "forceSearchRequestParameterForBlurbBuilder" : "false", "kudosLinksDisabled" : "false", "useSubjectIcons" : "true", "quiltName" : "ForumMessage", "truncateBody" : "true", "message" : "527943", "includeRepliesModerationState" : "false", "useSimpleView" : "false", "useTruncatedSubject" : "true", "disableLinks" : "false", "messageViewOptions" : "1111110111111111111110111110100101001101", "displaySubject" : "true" }, "initiatorDataMatcher" : "data-lia-message-uid"});LITHIUM.MessageViewDisplay({"openEditsSelector":".lia-inline-message-edit","renderInlineFormEvent":"LITHIUM:renderInlineEditForm","componentId":"lineardisplaymessageviewwrapper_0","componentSelector":"#lineardisplaymessageviewwrapper_0","editEvent":"LITHIUM:editMessageViaAjax","collapseEvent":"LITHIUM:collapseInlineMessageEditor","messageId":527943,"confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","loaderSelector":"#lineardisplaymessageviewwrapper_0 .lia-message-body-loader .lia-loader","expandedRepliesSelector":".lia-inline-message-reply-form-expanded"});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineEditForm"},"tokenId":"ajax","elementSelector":"#lineardisplaymessageviewwrapper_0","action":"renderInlineEditForm","feedbackSelector":"#lineardisplaymessageviewwrapper_0","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.lineardisplay_4.lineardisplaymessageviewwrapper:renderinlineeditform?t:ac=board-id/python-questions/thread-id/41362","ajaxErrorEventName":"LITHIUM:ajaxError","token":"vWmFMJECnO1lPc0TyIFY3oku-XAreCL2BvhYrxzI8_w."});LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_7","feedbackSelector":".InfoMessage"});LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_8","feedbackSelector":".InfoMessage"});LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_9","feedbackSelector":".InfoMessage"});LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown_2","menuItemsSelector":".lia-menu-dropdown-items"}});LITHIUM.MessageBodyDisplay('#bodyDisplay_1', '.lia-truncated-body-container', '#viewMoreLink', '.lia-full-body-container' );LITHIUM.InlineMessageReplyContainer({"openEditsSelector":".lia-inline-message-edit","renderEventParams":{"replyWrapperId":"replyWrapper_1","messageId":527944,"messageActionsId":"messageActions_1"},"isRootMessage":false,"collapseEvent":"LITHIUM:collapseInlineMessageEditor","confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","messageActionsSelector":"#messageActions_1","loaderSelector":"#loader","topicMessageSelector":".lia-forum-topic-message-gte-5","containerSelector":"#inlineMessageReplyContainer_1","loaderEnabled":false,"useSimpleEditor":false,"isReplyButtonDisabled":false,"linearDisplayViewSelector":".lia-linear-display-message-view","threadedDetailDisplayViewSelector":".lia-threaded-detail-display-message-view","replyEditorPlaceholderWrapperSelector":".lia-placeholder-wrapper","renderEvent":"LITHIUM:renderInlineMessageReply","expandedRepliesSelector":".lia-inline-message-reply-form-expanded","isLazyLoadEnabled":false,"layoutView":"linear","isAllowAnonUserToReply":true,"replyButtonSelector":".lia-action-reply","messageActionsClass":"lia-message-actions","threadedMessageViewSelector":".lia-threaded-display-message-view-wrapper","lazyLoadScriptsEvent":"LITHIUM:lazyLoadScripts","isGteForumV5":true});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineMessageReply"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_1","action":"renderInlineMessageReply","feedbackSelector":"#inlineMessageReplyContainer_1","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:renderinlinemessagereply?t:ac=board-id/python-questions/thread-id/41362&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"cXdsYq_QjueHawz9enOB9mMI1YJ2jxcBj6rIwhMoyrs."});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lazyLoadScripts"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_1","action":"lazyLoadScripts","feedbackSelector":"#inlineMessageReplyContainer_1","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:lazyloadscripts?t:ac=board-id/python-questions/thread-id/41362&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"zb8XwlEw3HJaYyheuLc4tAiBjAnhE_TpW0TfTws1pBs."});LITHIUM.AjaxSupport.fromLink('#kudoEntity_1', 'kudoEntity', '#ajaxfeedback_1', 'LITHIUM:ajaxError', {}, 'deR-yZ-23QCh5dvYxGQoQGsEq_EQcxyWWQmjReWulVU.', 'ajax');LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "kudoEntity", "actions" : [ { "context" : "envParam:entity", "action" : "rerender" } ] } ], "componentId" : "kudos.widget.button", "initiatorBinding" : true, "selector" : "#kudosButtonV2_1", "parameters" : { "displayStyle" : "horizontal", "disallowZeroCount" : "false", "revokeMode" : "true", "kudosable" : "true", "showCountOnly" : "false", "disableKudosForAnonUser" : "false", "useCountToKudo" : "false", "entity" : "527944", "linkDisabled" : "false" }, "initiatorDataMatcher" : "data-lia-kudos-id"});LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "approveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "unapproveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "deleteMessage", "actions" : [ { "context" : "lia-deleted-state", "action" : "addClassName" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "QuickReply", "actions" : [ { "context" : "envParam:feedbackData", "action" : "rerender" } ] }, { "event" : "expandMessage", "actions" : [ { "context" : "envParam:quiltName,expandedQuiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswer", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswerComment", "actions" : [ { "context" : "envParam:selectedMessage", "action" : "rerender" } ] }, { "event" : "editProductMessage", "actions" : [ { "context" : "envParam:quiltName,message", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAction", "actions" : [ { "context" : "envParam:quiltName,message,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "ProductMessageEdit", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "MessagesWidgetMessageEdit", "actions" : [ { "context" : "envParam:quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "AcceptSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "RevokeSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "markAsSpamWithoutRedirect", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "MessagesWidgetAnswerForm", "actions" : [ { "context" : "envParam:messageUid,page,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAnswerForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] } ], "componentId" : "forums.widget.message-view", "initiatorBinding" : true, "selector" : "#messageview_1", "parameters" : { "disableLabelLinks" : "false", "truncateBodyRetainsHtml" : "false", "forceSearchRequestParameterForBlurbBuilder" : "false", "kudosLinksDisabled" : "false", "useSubjectIcons" : "true", "quiltName" : "ForumMessage", "truncateBody" : "true", "message" : "527944", "includeRepliesModerationState" : "false", "useSimpleView" : "false", "useTruncatedSubject" : "true", "disableLinks" : "false", "messageViewOptions" : "1111110111111111111110111110100101001101", "displaySubject" : "true" }, "initiatorDataMatcher" : "data-lia-message-uid"});LITHIUM.MessageViewDisplay({"openEditsSelector":".lia-inline-message-edit","renderInlineFormEvent":"LITHIUM:renderInlineEditForm","componentId":"lineardisplaymessageviewwrapper_1","componentSelector":"#lineardisplaymessageviewwrapper_1","editEvent":"LITHIUM:editMessageViaAjax","collapseEvent":"LITHIUM:collapseInlineMessageEditor","messageId":527944,"confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","loaderSelector":"#lineardisplaymessageviewwrapper_1 .lia-message-body-loader .lia-loader","expandedRepliesSelector":".lia-inline-message-reply-form-expanded"});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineEditForm"},"tokenId":"ajax","elementSelector":"#lineardisplaymessageviewwrapper_1","action":"renderInlineEditForm","feedbackSelector":"#lineardisplaymessageviewwrapper_1","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.lineardisplay_4.lineardisplaymessageviewwrapper:renderinlineeditform?t:ac=board-id/python-questions/thread-id/41362","ajaxErrorEventName":"LITHIUM:ajaxError","token":"VA5mDHOBzF0K05s9Ox4nQNaA81SVyzQKIb_lOT-SDpA."});LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_10","feedbackSelector":".InfoMessage"});LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_11","feedbackSelector":".InfoMessage"});LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_12","feedbackSelector":".InfoMessage"});LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown_3","menuItemsSelector":".lia-menu-dropdown-items"}});LITHIUM.MessageBodyDisplay('#bodyDisplay_2', '.lia-truncated-body-container', '#viewMoreLink', '.lia-full-body-container' );LITHIUM.InlineMessageReplyContainer({"openEditsSelector":".lia-inline-message-edit","renderEventParams":{"replyWrapperId":"replyWrapper_2","messageId":527945,"messageActionsId":"messageActions_2"},"isRootMessage":false,"collapseEvent":"LITHIUM:collapseInlineMessageEditor","confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","messageActionsSelector":"#messageActions_2","loaderSelector":"#loader","topicMessageSelector":".lia-forum-topic-message-gte-5","containerSelector":"#inlineMessageReplyContainer_2","loaderEnabled":false,"useSimpleEditor":false,"isReplyButtonDisabled":false,"linearDisplayViewSelector":".lia-linear-display-message-view","threadedDetailDisplayViewSelector":".lia-threaded-detail-display-message-view","replyEditorPlaceholderWrapperSelector":".lia-placeholder-wrapper","renderEvent":"LITHIUM:renderInlineMessageReply","expandedRepliesSelector":".lia-inline-message-reply-form-expanded","isLazyLoadEnabled":false,"layoutView":"linear","isAllowAnonUserToReply":true,"replyButtonSelector":".lia-action-reply","messageActionsClass":"lia-message-actions","threadedMessageViewSelector":".lia-threaded-display-message-view-wrapper","lazyLoadScriptsEvent":"LITHIUM:lazyLoadScripts","isGteForumV5":true});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineMessageReply"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_2","action":"renderInlineMessageReply","feedbackSelector":"#inlineMessageReplyContainer_2","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:renderinlinemessagereply?t:ac=board-id/python-questions/thread-id/41362&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"YOrGVf_OUz00eYaEO2tWumapfEVCqu34VAtKTuS5gpc."});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lazyLoadScripts"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_2","action":"lazyLoadScripts","feedbackSelector":"#inlineMessageReplyContainer_2","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:lazyloadscripts?t:ac=board-id/python-questions/thread-id/41362&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"nn8s1jDp-M9pgsf21c1gOVcF1pQV2pTbRByR2KHNRow."});LITHIUM.AjaxSupport.fromLink('#kudoEntity_2', 'kudoEntity', '#ajaxfeedback_2', 'LITHIUM:ajaxError', {}, 'r10BkiuGI5cdQpQNw4fw29tti0hkrMuIzMo6FGe7uxE.', 'ajax');LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "kudoEntity", "actions" : [ { "context" : "envParam:entity", "action" : "rerender" } ] } ], "componentId" : "kudos.widget.button", "initiatorBinding" : true, "selector" : "#kudosButtonV2_2", "parameters" : { "displayStyle" : "horizontal", "disallowZeroCount" : "false", "revokeMode" : "true", "kudosable" : "true", "showCountOnly" : "false", "disableKudosForAnonUser" : "false", "useCountToKudo" : "false", "entity" : "527945", "linkDisabled" : "false" }, "initiatorDataMatcher" : "data-lia-kudos-id"});LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "approveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "unapproveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "deleteMessage", "actions" : [ { "context" : "lia-deleted-state", "action" : "addClassName" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "QuickReply", "actions" : [ { "context" : "envParam:feedbackData", "action" : "rerender" } ] }, { "event" : "expandMessage", "actions" : [ { "context" : "envParam:quiltName,expandedQuiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswer", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswerComment", "actions" : [ { "context" : "envParam:selectedMessage", "action" : "rerender" } ] }, { "event" : "editProductMessage", "actions" : [ { "context" : "envParam:quiltName,message", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAction", "actions" : [ { "context" : "envParam:quiltName,message,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "ProductMessageEdit", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "MessagesWidgetMessageEdit", "actions" : [ { "context" : "envParam:quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "AcceptSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "RevokeSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "markAsSpamWithoutRedirect", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "MessagesWidgetAnswerForm", "actions" : [ { "context" : "envParam:messageUid,page,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAnswerForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] } ], "componentId" : "forums.widget.message-view", "initiatorBinding" : true, "selector" : "#messageview_2", "parameters" : { "disableLabelLinks" : "false", "truncateBodyRetainsHtml" : "false", "forceSearchRequestParameterForBlurbBuilder" : "false", "kudosLinksDisabled" : "false", "useSubjectIcons" : "true", "quiltName" : "ForumMessage", "truncateBody" : "true", "message" : "527945", "includeRepliesModerationState" : "false", "useSimpleView" : "false", "useTruncatedSubject" : "true", "disableLinks" : "false", "messageViewOptions" : "1111110111111111111110111110100101001101", "displaySubject" : "true" }, "initiatorDataMatcher" : "data-lia-message-uid"});LITHIUM.MessageViewDisplay({"openEditsSelector":".lia-inline-message-edit","renderInlineFormEvent":"LITHIUM:renderInlineEditForm","componentId":"lineardisplaymessageviewwrapper_2","componentSelector":"#lineardisplaymessageviewwrapper_2","editEvent":"LITHIUM:editMessageViaAjax","collapseEvent":"LITHIUM:collapseInlineMessageEditor","messageId":527945,"confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","loaderSelector":"#lineardisplaymessageviewwrapper_2 .lia-message-body-loader .lia-loader","expandedRepliesSelector":".lia-inline-message-reply-form-expanded"});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineEditForm"},"tokenId":"ajax","elementSelector":"#lineardisplaymessageviewwrapper_2","action":"renderInlineEditForm","feedbackSelector":"#lineardisplaymessageviewwrapper_2","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.lineardisplay_4.lineardisplaymessageviewwrapper:renderinlineeditform?t:ac=board-id/python-questions/thread-id/41362","ajaxErrorEventName":"LITHIUM:ajaxError","token":"QjOlwLJFt62xMs8Bm4spkrF-Msmvr27pyNUMs5gCi6c."});LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_13","feedbackSelector":".InfoMessage"});LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_14","feedbackSelector":".InfoMessage"});LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_15","feedbackSelector":".InfoMessage"});LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown_4","menuItemsSelector":".lia-menu-dropdown-items"}});LITHIUM.MessageBodyDisplay('#bodyDisplay_3', '.lia-truncated-body-container', '#viewMoreLink', '.lia-full-body-container' );LITHIUM.InlineMessageReplyContainer({"openEditsSelector":".lia-inline-message-edit","renderEventParams":{"replyWrapperId":"replyWrapper_3","messageId":527946,"messageActionsId":"messageActions_3"},"isRootMessage":false,"collapseEvent":"LITHIUM:collapseInlineMessageEditor","confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","messageActionsSelector":"#messageActions_3","loaderSelector":"#loader","topicMessageSelector":".lia-forum-topic-message-gte-5","containerSelector":"#inlineMessageReplyContainer_3","loaderEnabled":false,"useSimpleEditor":false,"isReplyButtonDisabled":false,"linearDisplayViewSelector":".lia-linear-display-message-view","threadedDetailDisplayViewSelector":".lia-threaded-detail-display-message-view","replyEditorPlaceholderWrapperSelector":".lia-placeholder-wrapper","renderEvent":"LITHIUM:renderInlineMessageReply","expandedRepliesSelector":".lia-inline-message-reply-form-expanded","isLazyLoadEnabled":false,"layoutView":"linear","isAllowAnonUserToReply":true,"replyButtonSelector":".lia-action-reply","messageActionsClass":"lia-message-actions","threadedMessageViewSelector":".lia-threaded-display-message-view-wrapper","lazyLoadScriptsEvent":"LITHIUM:lazyLoadScripts","isGteForumV5":true});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineMessageReply"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_3","action":"renderInlineMessageReply","feedbackSelector":"#inlineMessageReplyContainer_3","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:renderinlinemessagereply?t:ac=board-id/python-questions/thread-id/41362&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"xphTPecOGJ3bXfXzDNCANnqlILvobfX0dEIO1Ra1x4s."});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lazyLoadScripts"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_3","action":"lazyLoadScripts","feedbackSelector":"#inlineMessageReplyContainer_3","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:lazyloadscripts?t:ac=board-id/python-questions/thread-id/41362&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"rYHOTidvUY2D-UnVBa2eQ_f2kRVa1G7lHYt-uTwoWJU."});LITHIUM.AjaxSupport.fromLink('#kudoEntity_3', 'kudoEntity', '#ajaxfeedback_3', 'LITHIUM:ajaxError', {}, 'f16CSPHOUR46vPTg_JIDcw6CUwQ-INDsxPFaA8Dkt_M.', 'ajax');LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "kudoEntity", "actions" : [ { "context" : "envParam:entity", "action" : "rerender" } ] } ], "componentId" : "kudos.widget.button", "initiatorBinding" : true, "selector" : "#kudosButtonV2_3", "parameters" : { "displayStyle" : "horizontal", "disallowZeroCount" : "false", "revokeMode" : "true", "kudosable" : "true", "showCountOnly" : "false", "disableKudosForAnonUser" : "false", "useCountToKudo" : "false", "entity" : "527946", "linkDisabled" : "false" }, "initiatorDataMatcher" : "data-lia-kudos-id"});LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "approveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "unapproveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "deleteMessage", "actions" : [ { "context" : "lia-deleted-state", "action" : "addClassName" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "QuickReply", "actions" : [ { "context" : "envParam:feedbackData", "action" : "rerender" } ] }, { "event" : "expandMessage", "actions" : [ { "context" : "envParam:quiltName,expandedQuiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswer", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswerComment", "actions" : [ { "context" : "envParam:selectedMessage", "action" : "rerender" } ] }, { "event" : "editProductMessage", "actions" : [ { "context" : "envParam:quiltName,message", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAction", "actions" : [ { "context" : "envParam:quiltName,message,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "ProductMessageEdit", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "MessagesWidgetMessageEdit", "actions" : [ { "context" : "envParam:quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "AcceptSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "RevokeSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "markAsSpamWithoutRedirect", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "MessagesWidgetAnswerForm", "actions" : [ { "context" : "envParam:messageUid,page,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAnswerForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] } ], "componentId" : "forums.widget.message-view", "initiatorBinding" : true, "selector" : "#messageview_3", "parameters" : { "disableLabelLinks" : "false", "truncateBodyRetainsHtml" : "false", "forceSearchRequestParameterForBlurbBuilder" : "false", "kudosLinksDisabled" : "false", "useSubjectIcons" : "true", "quiltName" : "ForumMessage", "truncateBody" : "true", "message" : "527946", "includeRepliesModerationState" : "false", "useSimpleView" : "false", "useTruncatedSubject" : "true", "disableLinks" : "false", "messageViewOptions" : "1111110111111111111110111110100101001101", "displaySubject" : "true" }, "initiatorDataMatcher" : "data-lia-message-uid"});LITHIUM.MessageViewDisplay({"openEditsSelector":".lia-inline-message-edit","renderInlineFormEvent":"LITHIUM:renderInlineEditForm","componentId":"lineardisplaymessageviewwrapper_3","componentSelector":"#lineardisplaymessageviewwrapper_3","editEvent":"LITHIUM:editMessageViaAjax","collapseEvent":"LITHIUM:collapseInlineMessageEditor","messageId":527946,"confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","loaderSelector":"#lineardisplaymessageviewwrapper_3 .lia-message-body-loader .lia-loader","expandedRepliesSelector":".lia-inline-message-reply-form-expanded"});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineEditForm"},"tokenId":"ajax","elementSelector":"#lineardisplaymessageviewwrapper_3","action":"renderInlineEditForm","feedbackSelector":"#lineardisplaymessageviewwrapper_3","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.lineardisplay_4.lineardisplaymessageviewwrapper:renderinlineeditform?t:ac=board-id/python-questions/thread-id/41362","ajaxErrorEventName":"LITHIUM:ajaxError","token":"g5-kIdrwHD-lZj3wE9YQIcz5sA_yI0-oyUgv-fGXs8k."});LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_16","feedbackSelector":".InfoMessage"});LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_17","feedbackSelector":".InfoMessage"});LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_18","feedbackSelector":".InfoMessage"});LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown_5","menuItemsSelector":".lia-menu-dropdown-items"}});LITHIUM.MessageBodyDisplay('#bodyDisplay_4', '.lia-truncated-body-container', '#viewMoreLink', '.lia-full-body-container' );LITHIUM.InlineMessageReplyContainer({"openEditsSelector":".lia-inline-message-edit","renderEventParams":{"replyWrapperId":"replyWrapper_4","messageId":527947,"messageActionsId":"messageActions_4"},"isRootMessage":false,"collapseEvent":"LITHIUM:collapseInlineMessageEditor","confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","messageActionsSelector":"#messageActions_4","loaderSelector":"#loader","topicMessageSelector":".lia-forum-topic-message-gte-5","containerSelector":"#inlineMessageReplyContainer_4","loaderEnabled":false,"useSimpleEditor":false,"isReplyButtonDisabled":false,"linearDisplayViewSelector":".lia-linear-display-message-view","threadedDetailDisplayViewSelector":".lia-threaded-detail-display-message-view","replyEditorPlaceholderWrapperSelector":".lia-placeholder-wrapper","renderEvent":"LITHIUM:renderInlineMessageReply","expandedRepliesSelector":".lia-inline-message-reply-form-expanded","isLazyLoadEnabled":false,"layoutView":"linear","isAllowAnonUserToReply":true,"replyButtonSelector":".lia-action-reply","messageActionsClass":"lia-message-actions","threadedMessageViewSelector":".lia-threaded-display-message-view-wrapper","lazyLoadScriptsEvent":"LITHIUM:lazyLoadScripts","isGteForumV5":true});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineMessageReply"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_4","action":"renderInlineMessageReply","feedbackSelector":"#inlineMessageReplyContainer_4","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:renderinlinemessagereply?t:ac=board-id/python-questions/thread-id/41362&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"6_qGJpwj5N7SBkltI00HIPn6fBiqVI2pSyLJcLmJBAk."});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lazyLoadScripts"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_4","action":"lazyLoadScripts","feedbackSelector":"#inlineMessageReplyContainer_4","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:lazyloadscripts?t:ac=board-id/python-questions/thread-id/41362&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"UvmASbEwCKPmRw95EdcixF7dB9PUBGv3G8-OYkpnzEY."});LITHIUM.AjaxSupport.fromLink('#kudoEntity_4', 'kudoEntity', '#ajaxfeedback_4', 'LITHIUM:ajaxError', {}, 'fPuV1lX2D9FbW7BZO7EPIcLZ_exyoKWPeDfdre5zjNU.', 'ajax');LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "kudoEntity", "actions" : [ { "context" : "envParam:entity", "action" : "rerender" } ] } ], "componentId" : "kudos.widget.button", "initiatorBinding" : true, "selector" : "#kudosButtonV2_4", "parameters" : { "displayStyle" : "horizontal", "disallowZeroCount" : "false", "revokeMode" : "true", "kudosable" : "true", "showCountOnly" : "false", "disableKudosForAnonUser" : "false", "useCountToKudo" : "false", "entity" : "527947", "linkDisabled" : "false" }, "initiatorDataMatcher" : "data-lia-kudos-id"});LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "approveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "unapproveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "deleteMessage", "actions" : [ { "context" : "lia-deleted-state", "action" : "addClassName" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "QuickReply", "actions" : [ { "context" : "envParam:feedbackData", "action" : "rerender" } ] }, { "event" : "expandMessage", "actions" : [ { "context" : "envParam:quiltName,expandedQuiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswer", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswerComment", "actions" : [ { "context" : "envParam:selectedMessage", "action" : "rerender" } ] }, { "event" : "editProductMessage", "actions" : [ { "context" : "envParam:quiltName,message", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAction", "actions" : [ { "context" : "envParam:quiltName,message,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "ProductMessageEdit", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "MessagesWidgetMessageEdit", "actions" : [ { "context" : "envParam:quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "AcceptSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "RevokeSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "markAsSpamWithoutRedirect", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "MessagesWidgetAnswerForm", "actions" : [ { "context" : "envParam:messageUid,page,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAnswerForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] } ], "componentId" : "forums.widget.message-view", "initiatorBinding" : true, "selector" : "#messageview_4", "parameters" : { "disableLabelLinks" : "false", "truncateBodyRetainsHtml" : "false", "forceSearchRequestParameterForBlurbBuilder" : "false", "kudosLinksDisabled" : "false", "useSubjectIcons" : "true", "quiltName" : "ForumMessage", "truncateBody" : "true", "message" : "527947", "includeRepliesModerationState" : "false", "useSimpleView" : "false", "useTruncatedSubject" : "true", "disableLinks" : "false", "messageViewOptions" : "1111110111111111111110111110100101001101", "displaySubject" : "true" }, "initiatorDataMatcher" : "data-lia-message-uid"});LITHIUM.MessageViewDisplay({"openEditsSelector":".lia-inline-message-edit","renderInlineFormEvent":"LITHIUM:renderInlineEditForm","componentId":"lineardisplaymessageviewwrapper_4","componentSelector":"#lineardisplaymessageviewwrapper_4","editEvent":"LITHIUM:editMessageViaAjax","collapseEvent":"LITHIUM:collapseInlineMessageEditor","messageId":527947,"confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","loaderSelector":"#lineardisplaymessageviewwrapper_4 .lia-message-body-loader .lia-loader","expandedRepliesSelector":".lia-inline-message-reply-form-expanded"});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineEditForm"},"tokenId":"ajax","elementSelector":"#lineardisplaymessageviewwrapper_4","action":"renderInlineEditForm","feedbackSelector":"#lineardisplaymessageviewwrapper_4","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.lineardisplay_4.lineardisplaymessageviewwrapper:renderinlineeditform?t:ac=board-id/python-questions/thread-id/41362","ajaxErrorEventName":"LITHIUM:ajaxError","token":"so4nyjPT3FuwEl_DhTKiIA7GjwFhh1Fr80ik951nNjA."});LITHIUM.InlineMessageReplyEditor({"openEditsSelector":".lia-inline-message-edit","ajaxFeebackSelector":"#inlinemessagereplyeditor .lia-inline-ajax-feedback","collapseEvent":"LITHIUM:collapseInlineMessageEditor","confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","topicMessageSelector":".lia-forum-topic-message-gte-5","focusEditor":false,"hidePlaceholderShowFormEvent":"LITHIUM:hidePlaceholderShowForm","formWrapperSelector":"#inlinemessagereplyeditor .lia-form-wrapper","reRenderInlineEditorEvent":"LITHIUM:reRenderInlineEditor","ajaxBeforeSendEvent":"LITHIUM:ajaxBeforeSend:InlineMessageReply","element":"input","clientIdSelector":"#inlinemessagereplyeditor","loadAutosaveAction":false,"newPostPlaceholderSelector":".lia-new-post-placeholder","placeholderWrapperSelector":"#inlinemessagereplyeditor .lia-placeholder-wrapper","messageId":527942,"formSelector":"#inlinemessagereplyeditor","expandedClass":"lia-inline-message-reply-form-expanded","expandedRepliesSelector":".lia-inline-message-reply-form-expanded","newPostPlaceholderClass":"lia-new-post-placeholder","isLazyLoadEnabled":false,"editorLoadedEvent":"LITHIUM:editorLoaded","replyEditorPlaceholderWrapperCssClass":"lia-placeholder-wrapper","messageActionsClass":"lia-message-actions","cancelButtonSelector":"#inlinemessagereplyeditor .lia-button-Cancel-action","isGteForumV5":true,"messageViewWrapperSelector":".lia-linear-display-message-view","disabledReplyClass":"lia-inline-message-reply-disabled-reply"});LITHIUM.Text.set({"ajax.reRenderInlineEditor.loader.feedback.title":"Loading..."});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"useLoader":true,"blockUI":"","event":"LITHIUM:reRenderInlineEditor","parameters":{"clientId":"inlinemessagereplyeditor"}},"tokenId":"ajax","elementSelector":"#inlinemessagereplyeditor","action":"reRenderInlineEditor","feedbackSelector":"#inlinemessagereplyeditor","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.lineardisplay_4.inlinemessagereplyeditor:rerenderinlineeditor?t:ac=board-id/python-questions/thread-id/41362","ajaxErrorEventName":"LITHIUM:ajaxError","token":"CY1KzpqLKiWiGsyGibfi3ztPyg6hUiVubZwAP0qYggs."});LITHIUM.InlineMessageEditor({"ajaxFeebackSelector":"#inlinemessagereplyeditor .lia-inline-ajax-feedback","submitButtonSelector":"#inlinemessagereplyeditor .lia-button-Submit-action"});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lazyLoadComponent","parameters":{"componentId":"messages.widget.emoticons-lazy-load-runner"}},"tokenId":"ajax","elementSelector":"#inlinemessagereplyeditor","action":"lazyLoadComponent","feedbackSelector":false,"url":"https://community.esri.com/t5/forums/v5/forumtopicpage.lineardisplay_4.inlinemessagereplyeditor:lazyloadcomponent?t:ac=board-id/python-questions/thread-id/41362","ajaxErrorEventName":"LITHIUM:ajaxError","token":"gGABZy02ii55QhGqbDKy6bezXQiNuRkbUXenzikSQ3c."});LITHIUM.lazyLoadComponent({"selectors":{"elementSelector":"#inlinemessagereplyeditor"},"events":{"lazyLoadComponentEvent":"LITHIUM:lazyLoadComponent"},"misc":{"isLazyLoadEnabled":false}});LITHIUM.Components.renderInPlace('recommendations.widget.recommended-content-taplet', {"componentParams":"{\n \"mode\" : \"slim\",\n \"componentId\" : \"recommendations.widget.recommended-content-taplet\"\n}","componentId":"recommendations.widget.recommended-content-taplet"}, {"errorMessage":"An Unexpected Error has occurred.","type":"POST","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.recommendedcontenttaplet:lazyrender?t:ac=board-id/python-questions/thread-id/41362&t:cp=recommendations/contributions/page"}, 'lazyload');LITHIUM.Components.renderInPlace('tags.widget.tag-cloud-actual', {"componentParams":"{}","componentId":"tags.widget.tag-cloud-actual"}, {"errorMessage":"An Unexpected Error has occurred.","type":"POST","url":"https://community.esri.com/t5/forums/v5/forumtopicpage.tagcloudtaplet:lazyrender?t:ac=board-id/python-questions/thread-id/41362&t:cp=tagging/contributions/page"}, 'lazyload_0');;(function($) {try {}//End try block catch(err) { console.log(err); }//End catch block })(LITHIUM.jQuery);;(function($) {$( window ).load(function() { sourceIdentifier();});$('body').on('DOMNodeInserted',function(event) {if($(event.target).hasClass("lia-component-messages-threaded-detail-message-list") || $(event.target).hasClass("MessageView")) {sourceIdentifier();}});function sourceIdentifier(){try{Array.prototype.removeDuplicates = function () { return this.filter(function (item, index, self) { return self.indexOf(item) == index; }); };var uid_size = $('.lia-message-view-wrapper').size();var uids ="";for (var i = 0; i < uid_size; i++) {var tid = $('.lia-message-view-wrapper')[i].dataset.liaMessageUid;if(tid != "undefined" && tid != undefined && tid != "null" && tid != null){if (uids =="") {uids += tid} else {uids +=',' + tid;}}}if("ForumTopicPage" == "OccasionPage"){var uid_size = $(".discussions .thread-discussion").size();for (var i = 0; i < uid_size; i++) {var message_ids = $(".discussions .thread-discussion")[i];var tid = $(message_ids).attr("id").split("-")[2];if(tid != "undefined" && tid != undefined && tid != "null" && tid != null){if (uids =="") {uids += tid} else {uids +=',' + tid;}}}}var threadId = "527942";var list =uids.split(',');if(!list.includes(threadId)){if (uids == "") {uids += threadId;} else {uids +=',' + threadId;}}uids = uids.split(",").removeDuplicates().join(",");if (uids != "") {$.ajax({ type: 'GET', url: '/plugins/custom/esri/esri/cross_community_custom_field', "async": false, data: { "uids": uids, "request_type":"source_identifier" }, success: function(response) { //console.log(response); var json_obj = response; for (var i = 0; i < json_obj.msg_custom_field_list.length; i++) { if(json_obj.msg_custom_field_list[i].messages != ""){ if(!$(".message-uid-"+json_obj.msg_custom_field_list[i].id+" .lia-message-body").prev().hasClass("source-identifier")){ $(".message-uid-"+json_obj.msg_custom_field_list[i].id+" .lia-message-body").before("

"+json_obj.msg_custom_field_list[i].messages+"

"); }else{ if($(".message-uid-"+json_obj.msg_custom_field_list[i].id+" .lia-accepted-solution").length > 0){ var solution_len = $(".message-uid-"+json_obj.msg_custom_field_list[i].id+" .lia-accepted-solution"); for(var j=0;j"+json_obj.msg_custom_field_list[i].messages+""); }else{ $(".message-uid-"+json_obj.msg_custom_field_list[i].id+" .source-identifier").remove(); } } } } } } }, error: function(response) { //console.log(response); } });}}//End try block catch(err) { console.log("error:"+ err); }//End catch block}})(LITHIUM.jQuery);var mbasMessagesIconDetails = ""; function processSyndicatedData(res){ ;(function($) { var quiltObj = getQuiltDetails(); var iconDetails = {}; var iconDetailsArray =[]; if (quiltObj.isQuilt == true) { var uids = getmessageIds(quiltObj.get_ids_class); var resMsgArray = res.msg_custom_field_list; if(uids != ""){ uids.split(",").map(msgId => {var result = resMsgArray.filter(obj => { return obj.id === msgId});if(result != "" && result != null && result != undefined ){iconDetailsArray.push(result[0]);}});iconDetails.msg_custom_field_list = iconDetailsArray;appendSyndicationIcons(iconDetails, quiltObj.add_custom_data_class, quiltObj.reply_add_custom_data_class, quiltObj.quiltName); } } })(LITHIUM.jQuery); }function showSyndicationIcon(){}function getmessageIds(getMessageIdClassName){var uids = "";;(function($) {var get_id_length = $(getMessageIdClassName).length;//get all messages id'sfor (var j = 0; j < get_id_length; j++) {if($(".discussions .thread-discussion").length > 0){var threadId = "527942"; var uid_size = $(".discussions .thread-discussion").size();for (var i = 0; i < uid_size; i++) {var div = $(".discussions .thread-discussion")[i];var tid = $(div).attr("id").split("-")[2];if(tid != "undefined" && tid != undefined && tid != "null" && tid != null){if (uids =="") {uids += tid} else {uids +=',' + tid;}}}var list =uids.split(',');if(!list.includes(threadId)){if (uids == "") {uids += threadId;} else {uids +=',' + threadId;}}}else{var threadId = "527942";var list =uids.split(',');if(!list.includes(threadId)){if (uids == "") {uids += threadId;} else {uids +=',' + threadId;}}var tid = $(getMessageIdClassName)[j].dataset.liaMessageUid;if(tid != "undefined" && tid != undefined && tid != "null" && tid != null){if (uids == "") {uids += tid;} else {uids +=',' + tid;}}}}var threadId = "527942";var list =uids.split(',');if(!list.includes(threadId)){if (uids == "") {uids += threadId;} else {uids +=',' + threadId;}}uids = [...new Set(uids.split(","))];})(LITHIUM.jQuery);return uids.join(",");}function getsyndicationIconDetails(MessageIds, boardID){var res="";;(function($) {if(MessageIds != "" || boardID != ""){$.ajax({ type: 'GET', url: '/plugins/custom/esri/esri/cross_community_custom_field', "async": false, data: { "uids": MessageIds, "request_type":"syndcation_icon", "boardID":boardID }, success: function(response) { //console.log(response); res = response; }, error: function(response) { //console.log(response); } });}})(LITHIUM.jQuery); return res;}function appendSyndicationIcons(jsonObj, classThreadLevel, classReplyLevel,quiltName){;(function($) {if(jsonObj != ""){$('.syndcation-message-icon').remove();for (var i = 0; i < jsonObj.msg_custom_field_list.length; i++) { var metadata_value = jsonObj.msg_custom_field_list[i].messages; var messages_id = jsonObj.msg_custom_field_list[i].id; var messageOriginType = jsonObj.msg_custom_field_list[i].messageOriginType; var sourceIconType = jsonObj.msg_custom_field_list[i].sourceIconType; // The message is target then will display the syndication icon if(messageOriginType == "target" || (messageOriginType == "source" && sourceIconType != "")){ var icon = document.createElement("img");icon.setAttribute("class" , "syndcation-message-icon");if(messageOriginType == "target"){icon.setAttribute("alt","Syndicated - Inbound");icon.setAttribute("title","Shared");icon.setAttribute("src","/html/assets/ics-data-transfer-img-cisco.png");}else if(messageOriginType == "source"){if(sourceIconType == "partialSyndication"){icon.setAttribute("alt","Partially syndicated - Outbound");icon.setAttribute("title","Shared");icon.setAttribute("src","/html/assets/ics-partial-syndication-img-cisco.png");}else if(sourceIconType == "fullSyndication"){icon.setAttribute("alt","Syndicated - Outbound");icon.setAttribute("title","Shared");icon.setAttribute("src","/html/assets/ics-fully-syndication-img-cisco.png");}} if("527942" != messages_id){ if($(".thread-body.lia-message-body-content").length > 0){ $(icon).insertBefore($(classThreadLevel)[i]) }else{ $(icon).insertBefore($(".message-uid-"+messages_id+" "+classReplyLevel)[0]) } }else{ if(quiltName == "occasion-page-user-group-event"){$(".occasion-title-content").prepend(icon); }else{ $(icon).insertBefore($(classThreadLevel)[i]) } } } }//for loop end } })(LITHIUM.jQuery);}function getQuiltDetails(){var details = {"isQuilt":false};;(function($) {var quiltObj = JSON.parse('[{"add_class":".lia-messages-message-card a .message-subject","get_ids_class":".lia-messages-message-card a","quilt_name":"forum-page-video-gallery","reply_add_class":""},{"add_class":".lia-messages-message-card a .message-subject","get_ids_class":".lia-messages-message-card a","quilt_name":"forum-page-mbas-gallery","reply_add_class":""},{"add_class":".MessageSubject .MessageSubjectIcons","get_ids_class":".MessageList .lia-list-row .MessageSubject .lia-link-navigation","quilt_name":"forum-page","reply_add_class":""},{"add_class":".MessageSubject .MessageSubjectIcons","get_ids_class":".MessageList .lia-list-row .MessageSubject .lia-link-navigation","quilt_name":"tkb-page","reply_add_class":""},{"add_class":".lia-message-view-blog-message .lia-message-subject","get_ids_class":".lia-message-view-blog-message .MessageSubject .message-subject .lia-link-navigation","quilt_name":"blog-page","reply_add_class":""},{"add_class":".lia-message-subject .MessageSubject .MessageSubjectIcons","get_ids_class":".lia-message-subject .MessageSubject .lia-link-navigation","quilt_name":"idea-exchange-page","reply_add_class":""},{"add_class":".lia-message-subject h1","get_ids_class":".lia-message-view-wrapper","quilt_name":"forum-topic-page-video-gallery","reply_add_class":".lia-message-body-content"},{"add_class":".message-subject","get_ids_class":".lia-message-view-wrapper","quilt_name":"forum-topic-page","reply_add_class":".lia-message-body-content"},{"add_class":".message-subject","get_ids_class":".lia-message-view-wrapper","quilt_name":"tkb-article-page","reply_add_class":".lia-message-body-content"},{"add_class":".message-subject","get_ids_class":".lia-message-view-wrapper","quilt_name":"idea-page","reply_add_class":".lia-message-body-content"},{"add_class":".message-subject","get_ids_class":".lia-message-view-wrapper","quilt_name":"blog-article-page","reply_add_class":".lia-message-body-content"},{"add_class":".MessageSubject .MessageSubjectIcons","get_ids_class":".lia-message-view-wrapper","quilt_name":"search-page","reply_add_class":""},{"add_class":".lia-messages-message-card a .message-subject","get_ids_class":".lia-messages-message-card a","quilt_name":"forum-page-mbas","reply_add_class":""},{"add_class":".lia-message-subject h1","get_ids_class":".lia-message-view-wrapper","quilt_name":"forum-topic-page-mbas","reply_add_class":".lia-message-body-content"},{"add_class":".lia-messages-message-card a .message-subject","get_ids_class":".lia-messages-message-card a","quilt_name":"forum-page-gallery","reply_add_class":""},{"add_class":".lia-message-subject h1","get_ids_class":".lia-message-view-wrapper","quilt_name":"forum-topic-page-gallery","reply_add_class":".lia-message-body-content"}]');for (var i = 0; i < quiltObj.length; i++) {if ($(".lia-quilt-"+quiltObj[i].quilt_name).length > 0) {details.isQuilt = true;details.get_ids_class = quiltObj[i].get_ids_class;details.add_custom_data_class = quiltObj[i].add_class;details.reply_add_custom_data_class = quiltObj[i].reply_add_class;details.quiltName = quiltObj[i].quilt_name;}}})(LITHIUM.jQuery);return details};(function($) {try {$( window ).load(function() { syndicationIcon();});$('body').on('DOMNodeInserted',function(event) {if($(event.target).hasClass("lia-component-messages-threaded-detail-message-list")) {syndicationIcon();}});function syndicationIcon(){try {var quiltObj = getQuiltDetails();if (quiltObj.isQuilt == true) {var uids = getmessageIds(quiltObj.get_ids_class);var iconDetails = getsyndicationIconDetails(uids,"");appendSyndicationIcons(iconDetails, quiltObj.add_custom_data_class, quiltObj.reply_add_custom_data_class, quiltObj.quiltName);}}//End try block catch(err) { console.log(err); }//End catch block}}//End try block catch(err) { console.log(err); }//End catch block})(LITHIUM.jQuery); ;(function($) {$(document).ready(function() {var offset = 200, shown = false;$(window).scroll(function(){if ($(window).scrollTop() > offset) {if (!shown) {$('.li-common-scroll-to-wrapper').show().animate({opacity: 1}, 300);shown = true;}} else {if (shown) {$('.li-common-scroll-to-wrapper').animate({opacity: 0}, 300, function() { $(this).hide() });shown = false;}}});}); })(LITHIUM.jQuery);;(function($) { $(document).ready(function () { $('body').click(function() { $('.user-profile-card').hide(); }); $('body').on('click', 'a.lia-link-navigation.lia-page-link.lia-user-name-link,.UserAvatar.lia-link-navigation', function(evt) { if ($(this).parents('.lia-component-common-widget-user-avatar').length > 0) { return } if ($(this).parents('.lia-component-users-widget-menu').length > 0) { return; } evt.preventDefault(); evt.stopPropagation(); $('.user-profile-card').hide(); if ($('.user-profile-card', this).length > 0) { $('.user-profile-card', this).show(); return; } var divContainer = $('
'); $(this).append(divContainer); $(divContainer).fadeIn(); var userId = $(this).attr('href').replace(/.*\/user-id\//gi,''); var windowWidth = $(window).width(); var left = $(this).offset().left; var cardWidth = divContainer.outerWidth(); if ((left + cardWidth) > (windowWidth - 25)) { var adjustment = (left + cardWidth) - (windowWidth + 25) + 50; divContainer.css('left', (-1 * adjustment) + 'px'); } $.ajax({ url: '/plugins/custom/esri/esri/theme-lib.profile-card?tid=2945944802725296884', type: 'post', dataType: 'html', data: {"userId": userId}, beforeSend: function() {}, success: function(data) { $('.info-container', divContainer).append(data); }, error: function() { $('.info-container', divContainer).append(''); }, complete: function() { $('.spinner', divContainer).remove(); } }); }); $('body').on('click', '.user-profile-card', function(evt) { if (!$(evt.target).hasClass('profile-link')) { evt.preventDefault(); } evt.stopPropagation(); }); });})(LITHIUM.jQuery);LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lightboxRenderComponent","parameters":{"componentParams":"{\n \"surveyType\" : {\n \"value\" : \"communityexperience\",\n \"class\" : \"java.lang.String\"\n },\n \"surveyId\" : {\n \"value\" : \"3\",\n \"class\" : \"java.lang.Integer\"\n },\n \"triggerSelector\" : {\n \"value\" : \"#valueSurveyLauncher\",\n \"class\" : \"lithium.util.css.CssSelector\"\n }\n}","componentId":"valuesurveys.widget.survey-prompt-dialog"},"trackableEvent":false},"tokenId":"ajax","elementSelector":"#valueSurveyLauncher","action":"lightboxRenderComponent","feedbackSelector":false,"url":"https://community.esri.com/t5/forums/v5/forumtopicpage.liabase.basebody.valuesurveylauncher.valuesurveylauncher:lightboxrendercomponent?t:ac=board-id/python-questions/thread-id/41362","ajaxErrorEventName":"LITHIUM:ajaxError","token":"jiBh83RFrucpHpsS4M44cMmV41KNK6pZ2DfzLuoP1fI."});LITHIUM.Dialog.options['-978782123'] = {"contentContext":"valuesurveys.widget.survey-prompt-dialog","dialogOptions":{"minHeight":399,"draggable":false,"maxHeight":800,"resizable":false,"autoOpen":false,"width":610,"minWidth":610,"dialogClass":"lia-content lia-panel-dialog lia-panel-dialog-modal-simple lia-panel-dialog-modal-valuesurvey","position":["center","center"],"modal":true,"maxWidth":610,"ariaLabel":"Feedback for community"},"contentType":"ajax"};LITHIUM.Dialog({ "closeImageIconURL" : "https://community.esri.com/skins/images/EE68A35796FEF60A0C693F4D1DDFE618/responsive_peak/images/button_dialog_close.svg", "activecastFullscreen" : false, "dialogTitleHeadingLevel" : "2", "dropdownMenuSelector" : ".lia-menu-navigation-wrapper", "accessibility" : false, "triggerSelector" : ".lia-panel-dialog-trigger-event-click", "ajaxEvent" : "LITHIUM:lightboxRenderComponent", "focusOnDialogTriggerWhenClosed" : false, "closeEvent" : "LITHIUM:lightboxCloseEvent", "defaultAriaLabel" : "", "dropdownMenuOpenerSelector" : ".lia-js-menu-opener", "buttonDialogCloseAlt" : "Close", "dialogContentCssClass" : "lia-panel-dialog-content", "triggerEvent" : "click", "dialogKey" : "dialogKey"});LITHIUM.ValueSurveyLauncher({"detectPopUpCSS":".lia-dialog-open","dialogLinkSelector":"#valueSurveyLauncher","launchDelay":1804629}); ;(function($) { $(document).ready(function() {$(".lia-form.lia-form-inline.SearchForm .lia-search-input-field").append('') $(".search-input.lia-search-input-message").keyup(function(ev) {var measureText = $(this).parent().find("span.esri-header-search-dialog-measure-text");var measureTextParent = measureText.parent();var inputPaddingRight = $(this).css("padding-right");if ($(this).parents(".dropdown-search").length == 0) {measureTextParent.css("max-width",measureTextParent.parent().parent()[0].offsetWidth - 30 + "px")} else {measureTextParent.css("max-width",measureTextParent.parent().parent()[0].offsetWidth + "px")} measureText.text(ev.target.value);measureTextParent.css("width", measureText[0].offsetWidth) }) }) })(LITHIUM.jQuery)LITHIUM.PartialRenderProxy({"limuirsComponentRenderedEvent":"LITHIUM:limuirsComponentRendered","relayEvent":"LITHIUM:partialRenderProxyRelay","listenerEvent":"LITHIUM:partialRenderProxy"});LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:partialRenderProxyRelay","parameters":{"javascript.ignore_combine_and_minify":"true"}},"tokenId":"ajax","elementSelector":document,"action":"partialRenderProxyRelay","feedbackSelector":false,"url":"https://community.esri.com/t5/forums/v5/forumtopicpage.liabase.basebody.partialrenderproxy:partialrenderproxyrelay?t:ac=board-id/python-questions/thread-id/41362","ajaxErrorEventName":"LITHIUM:ajaxError","token":"iUfSLKst3Tv-7isPrLONQ5lj6yvqdLl-UNslhvB85gM."});LITHIUM.Auth.API_URL = "/t5/util/authcheckpage";LITHIUM.Auth.LOGIN_URL_TMPL = "/plugins/common/feature/oauth2sso_v2/sso_login_redirect?referer=https%3A%2F%2FREPLACE_TEXT";LITHIUM.Auth.KEEP_ALIVE_URL = "/t5/status/blankpage?keepalive";LITHIUM.Auth.KEEP_ALIVE_TIME = 300000;LITHIUM.Auth.CHECK_SESSION_TOKEN = 'a5JkpG7kT8zvJX_Bc-to5IhDGJfyxnBk7RUXRTLs0Ss.';LITHIUM.AjaxSupport.useTickets = false;LITHIUM.Loader.runJsAttached();});// -->
Copy feature classes from feature datasets (2024)

FAQs

Copy feature classes from feature datasets? ›

On the Project tab in the Catalog pane, right-click the feature dataset layer and point to the Export drop-down menu. Click Feature Class(es) To Geodatabase to open the Feature Class To Geodatabase geoprocessing tool.

How do I Export a feature class in Arcgis? ›

On the Project tab in the Catalog pane, right-click the feature dataset layer and point to the Export drop-down menu. Click Feature Class(es) To Geodatabase to open the Feature Class To Geodatabase geoprocessing tool.

What is the difference between feature dataset and feature class? ›

Feature classes are created and stored in a geodatabase either as stand-alone objects or organized into a feature dataset. Feature datasets are used to spatially or thematically integrate related feature classes.

How do I import a feature class into a feature dataset? ›

Importing a feature class (single)
  1. In the Catalog tree, right-click the geodatabase or feature dataset to which you want to import a dataset. Click Import > Feature Class (single). This opens the Feature Class To Feature Class tool from the Conversion toolbox.
  2. Set the following parameters for this tool:

How to copy attributes from one feature class to another in ArcGIS Pro? ›

Copying and pasting attribute values
  1. Click the Edit tool. on the Editor toolbar and select the features.
  2. Click the Attributes button. ...
  3. In the Attributes window, right-click the feature you want to copy from and click Copy Attributes. ...
  4. Right-click the feature you want to paste into and click Paste Attributes.

Which steps do you complete to copy and paste a feature class from one geodatabase into another? ›

In the Catalog tree, right-click the feature dataset, feature class, or table you want to copy. Click Copy. Right-click the geodatabase to which you want to copy the data. Click Paste.

How do I export a feature class schema in ArcGIS? ›

Available with Standard or Advanced license.
  • In the Catalog tree, right-click the geodatabase, feature dataset, feature class, or table you want to export and point to Export.
  • Click XML Workspace Document.
  • If you want to export the schema and data, click Data.
  • Specify the path and name of the new file you will create.

What is the difference between a shapefile and a feature class? ›

Although a shapefile may appear similar to a feature class stored in a geodatabase, a shapefile does not support the advanced capabilities found in geodatabases (such as topologies, networks, attribute rules, or subtypes), which allow you to model real-world behaviors, apply rules for managing and maintaining data ...

How do I share a feature class in ArcGIS online? ›

Publishing a feature layer to ArcGIS Online
  1. On the Share ribbon, click Publish Feature Layer. ...
  2. Verify your ArcGIS Online user name and password.
  3. Click OK. ...
  4. Enter a title for the map package.
  5. Enter a description for the map package.
  6. Enter tags for the map package. ...
  7. Select a thumbnail for the map package: ...
  8. Click Next.

Why do feature classes need to be in a geodatabase? ›

Feature classes allow hom*ogeneous features to be grouped into a single unit for data storage purposes. For example, highways, primary roads, and secondary roads can be grouped into a line feature class named roads. In a geodatabase, feature classes can also store annotation and dimensions.

How do I convert a shapefile to a feature class? ›

Migrating shapefile turn data to a geodatabase network dataset
  1. On the menu bar, click Geoprocessing > Search For Tools. ...
  2. In the list of toolboxes in the Search window, click Conversion Tools. ...
  3. Click the To Geodatabase toolset link. ...
  4. Click Feature Class To Feature Class.

Is a feature class the same as a feature layer? ›

The feature class contains geographic features, such as buildings, parcels, cities, roads, and earthquake epicenters, and attribute information about the features. The feature layer is a part of the map or scene, and the map or scene is stored in the project.

How do I copy a feature class in ArcMap? ›

Note:
  1. Click the Edit tool. on the Editor toolbar.
  2. Click the feature you want to copy. Hold down SHIFT while clicking features to select additional features.
  3. Click the Copy button. on the Standard toolbar.
  4. Click the Paste button. on the Standard toolbar.
  5. Click the layer in which to store the pasted feature. ...
  6. Click OK.

How do I publish a feature class to ArcGIS server? ›

To publish a feature service to ArcGIS Server, just publish a map service and enable the Feature Access capability on it. This generates a URL through which you can use the feature service. The lifetime of the map service controls the lifetime of the feature service.

How to copy assignments from one class to another in Infinite Campus? ›

1) Log into Infinite Campus, and select the section which contains the assignments you want to copy. (You must first have already created the assignments in one class.) 2) Under Instruction on the left menu, click Lesson Planner. 3) You will see a button for Lesson Plan Copier.

How to copy one class object to another in Java? ›

Clone() Method

This method belongs to the Object class, which is a base class of every class created in Java. This method helps to create a copy of the object, but if the class doesn't support a cloneable interface then it leads to the exception, " CloneNotSupportedException".

Top Articles
Australian breaker Raygun earns mixed reviews, praised for ‘courage’ and ‘character’ after viral performances at Paris Games | CNN
NYC's 29 best pizza places
Craigslist Myrtle Beach Motorcycles For Sale By Owner
Craigslist Home Health Care Jobs
Dannys U Pull - Self-Service Automotive Recycling
Tyrunt
Tabler Oklahoma
Scentsy Dashboard Log In
Max 80 Orl
Luciipurrrr_
litter - tłumaczenie słowa – słownik angielsko-polski Ling.pl
Cincinnati Bearcats roll to 66-13 win over Eastern Kentucky in season-opener
Syracuse Jr High Home Page
What Is A Good Estimate For 380 Of 60
Troy Athens Cheer Weebly
How Much Is Tj Maxx Starting Pay
Find Such That The Following Matrix Is Singular.
Honda cb750 cbx z1 Kawasaki kz900 h2 kz 900 Harley Davidson BMW Indian - wanted - by dealer - sale - craigslist
Craigslist In Visalia California
If you bought Canned or Pouched Tuna between June 1, 2011 and July 1, 2015, you may qualify to get cash from class action settlements totaling $152.2 million
Diakimeko Leaks
67-72 Chevy Truck Parts Craigslist
Www Craigslist Madison Wi
Boston Dynamics’ new humanoid moves like no robot you’ve ever seen
Walgreens Bunce Rd
Feathers
Maine Racer Swap And Sell
Umn Biology
Weather Underground Durham
Puffin Asmr Leak
Tokioof
Pdx Weather Noaa
Edward Walk In Clinic Plainfield Il
Wednesday Morning Gifs
Tmka-19829
Kerry Cassidy Portal
Shuaiby Kill Twitter
11301 Lakeline Blvd Parkline Plaza Ctr Ste 150
18 terrible things that happened on Friday the 13th
Improving curriculum alignment and achieving learning goals by making the curriculum visible | Semantic Scholar
Gfs Ordering Online
Craigslist - Pets for Sale or Adoption in Hawley, PA
The Wait Odotus 2021 Watch Online Free
Grand Valley State University Library Hours
Academic Notice and Subject to Dismissal
Tlc Africa Deaths 2021
Spreading Unverified Info Crossword Clue
City Of Irving Tx Jail In-Custody List
Ty Glass Sentenced
Heat Wave and Summer Temperature Data for Oklahoma City, Oklahoma
Rétrospective 2023 : une année culturelle de renaissances et de mutations
De Donde Es El Area +63
Latest Posts
Article information

Author: Duane Harber

Last Updated:

Views: 6603

Rating: 4 / 5 (71 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Duane Harber

Birthday: 1999-10-17

Address: Apt. 404 9899 Magnolia Roads, Port Royceville, ID 78186

Phone: +186911129794335

Job: Human Hospitality Planner

Hobby: Listening to music, Orienteering, Knapping, Dance, Mountain biking, Fishing, Pottery

Introduction: My name is Duane Harber, I am a modern, clever, handsome, fair, agreeable, inexpensive, beautiful person who loves writing and wants to share my knowledge and understanding with you.