|
IDEA
|
I have asked for this on several occasions and the only response that I got from Esri is the Heat Map calendar. The only issue I find with that is it doesn't display information in the format that is friendly to end users. However, just because they don't have it readily available, doesn't mean you cannot create your own. Here are the steps to create a basic Calendar: In the Advanced formatting, copy and paste the following var N = TextFormatting.NewLine
var T = Today()
var NShift = {'A':'B','B':'C','C':'A'}
var StartMDay = Date(Year(T),Month(T),1)
var LastMDay = DateAdd(StartMDay,1,'Month')
LastMDay = DateAdd(LastMDay,-1,'day')
var CS = DateAdd(StartMDay,-WeekDay(StartMDay),'day')
var CE = DateAdd(LastMDay,6-WeekDay(LastMDay),'day')
var Labels=[] ; var Values=['T','S']
var Calendar = {}
for(var i = 0; i<42;i++){
var CD = DateAdd(CS,i,'day')
if(Month(CD)==Month(T)&&Day(CD)==Day(T)){
Calendar[Concatenate(i,'T')]='#6d8fcf'//Change current day background color
}
else if (Month(CD)==Month(T)){
Calendar[Concatenate(i,'T')]='#a8bbe2'//Change current month background color
}
}
Calendar['BGC'] = '#d9e1f2'//Change general background color
Calendar['M'] = Text(T,'MMMM Y')
Calendar['W'] = '#4472C4'
Calendar['I'] = 'Total'
Calendar['rs'] = Count(Labels)+Count(Values)
return {
textColor: 'Black',
backgroundColor: '',
separatorColor:'',
selectionColor: '',
selectionTextColor: '',
attributes: Calendar
} In the line item template pane, click source and copy, as shown in step 3 and copy and paste the html in step 4. RPGIS_0-1785772370495.png <table border="1" cellpadding="3%" cellspacing="0" style="background-blend-mode:darken; background-color:{expression/BGC}; border-collapse:collapse; border:3px solid black; margin-left:auto; margin-right:auto; width:100%">
<tbody>
<tr>
<th colspan="14" style="border: 3px solid black; background-color:{expression/W}"><span style="font-size:28px"><span style="color:#ffffff"><strong>{expression/M}</strong></span></span></th>
</tr>
<tr>
<th colspan="2" style="border: 3px solid black;width:14%;background-color:{expression/W}"><span style="font-size:24px"><span style="color:#ffffff"><strong>Sunday</strong></span></span></th>
<th colspan="2" style="border: 3px solid black;width:width:14%;background-color:{expression/W}"><span style="font-size:24px"><span style="color:#ffffff"><strong>Monday</strong></span></span></th>
<th colspan="2" style="border: 3px solid black;width:width:14%;background-color:{expression/W}"><span style="font-size:24px"><span style="color:#ffffff"><strong>Tuesday</strong></span></span></th>
<th colspan="2" style="border: 3px solid black;width:width:14%;background-color:{expression/W}"><span style="font-size:24px"><span style="color:#ffffff"><strong>Wednesday</strong></span></span></th>
<th colspan="2" style="border: 3px solid black;width:width:14%;background-color:{expression/W}"><span style="font-size:24px"><span style="color:#ffffff"><strong>Thursday</strong></span></span></th>
<th colspan="2" style="border: 3px solid black;width:width:14%;background-color:{expression/W}"><span style="font-size:24px"><span style="color:#ffffff"><strong>Friday</strong></span></span></th>
<th colspan="2" style="border: 3px solid black;width:width:14%;background-color:{expression/W}"><span style="font-size:24px"><span style="color:#ffffff"><strong>Saturday</strong></span></span></th>
</tr>
<tr>
<th rowspan="{expression/rs}" style="background-color:{expression/0T}; border-color:{expression/TxtColor};text-shadow:{expression/TxtShadow}; border-style:solid; border-width:1px; width:7%">
<h1 style="text-align:center"><strong>{D0}</strong></h1>
</th>
<td style="background-color:{expression/0T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<th rowspan="{expression/rs}" style="background-color:{expression/1T}; border-color:{expression/TxtColor};text-shadow:{expression/TxtShadow}; border-style:solid; border-width:1px; width:7%">
<h1 style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D1}</strong></span></h1>
</th>
<td style="background-color:{expression/1T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/2T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<h1 style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D2}</strong></span></h1>
</td>
<td style="background-color:{expression/2T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/3T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D3}</strong></span></p>
</td>
<td style="background-color:{expression/3T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/4T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D4}</strong></span></p>
</td>
<td style="background-color:{expression/4T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/5T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D5}</strong></span></p>
</td>
<td style="background-color:{expression/5T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/6T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D6}</strong></span></p>
</td>
<td style="background-color:{expression/6T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
</tr>
<tr>
<td style="background-color:{expression/0T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C0}</strong></span></p>
</td>
<td style="background-color:{expression/1T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C1}</strong></span></p>
</td>
<td style="background-color:{expression/2T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C2}</strong></span></p>
</td>
<td style="background-color:{expression/3T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C3}</strong></span></p>
</td>
<td style="background-color:{expression/4T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C4}</strong></span></p>
</td>
<td style="background-color:{expression/5T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C5}</strong></span></p>
</td>
<td style="background-color:{expression/6T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C6}</strong></span></p>
</td>
</tr>
<tr>
<td rowspan="{expression/rs}" style="background-color:{expression/7T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D7}</strong></span></p>
</td>
<td style="background-color:{expression/7T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/8T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D8}</strong></span></p>
</td>
<td style="background-color:{expression/8T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/9T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D9}</strong></span></p>
</td>
<td style="background-color:{expression/9T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/10T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D10}</strong></span></p>
</td>
<td style="background-color:{expression/10T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/11T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D11}</strong></span></p>
</td>
<td style="background-color:{expression/11T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/12T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D12}</strong></span></p>
</td>
<td style="background-color:{expression/12T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/13T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D13}</strong></span></p>
</td>
<td style="background-color:{expression/13T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
</tr>
<tr>
<td style="background-color:{expression/7T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C7}</strong></span></p>
</td>
<td style="background-color:{expression/8T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C8}</strong></span></p>
</td>
<td style="background-color:{expression/9T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C9}</strong></span></p>
</td>
<td style="background-color:{expression/10T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C10}</strong></span></p>
</td>
<td style="background-color:{expression/11T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C11}</strong></span></p>
</td>
<td style="background-color:{expression/12T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C12}</strong></span></p>
</td>
<td style="background-color:{expression/13T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C13}</strong></span></p>
</td>
</tr>
<tr>
<td rowspan="{expression/rs}" style="background-color:{expression/14T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D14}</strong></span></p>
</td>
<td style="background-color:{expression/14T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/15T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D15}</strong></span></p>
</td>
<td style="background-color:{expression/15T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/16T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D16}</strong></span></p>
</td>
<td style="background-color:{expression/16T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/17T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D17}</strong></span></p>
</td>
<td style="background-color:{expression/17T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/18T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D18}</strong></span></p>
</td>
<td style="background-color:{expression/18T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/19T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D19}</strong></span></p>
</td>
<td style="background-color:{expression/19T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/20T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D20}</strong></span></p>
</td>
<td style="background-color:{expression/20T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
</tr>
<tr>
<td style="background-color:{expression/14T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C14}</strong></span></p>
</td>
<td style="background-color:{expression/15T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C15}</strong></span></p>
</td>
<td style="background-color:{expression/16T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C16}</strong></span></p>
</td>
<td style="background-color:{expression/17T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C17}</strong></span></p>
</td>
<td style="background-color:{expression/18T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C18}</strong></span></p>
</td>
<td style="background-color:{expression/19T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C19}</strong></span></p>
</td>
<td style="background-color:{expression/20T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C20}</strong></span></p>
</td>
</tr>
<tr>
<td rowspan="{expression/rs}" style="background-color:{expression/21T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D21}</strong></span></p>
</td>
<td style="background-color:{expression/21T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/22T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D22}</strong></span></p>
</td>
<td style="background-color:{expression/22T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/23T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D23}</strong></span></p>
</td>
<td style="background-color:{expression/23T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/24T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D24}</strong></span></p>
</td>
<td style="background-color:{expression/24T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/25T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D25}</strong></span></p>
</td>
<td style="background-color:{expression/25T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/26T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D26}</strong></span></p>
</td>
<td style="background-color:{expression/26T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/27T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D27}</strong></span></p>
</td>
<td style="background-color:{expression/27T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
</tr>
<tr>
<td style="background-color:{expression/21T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C21}</strong></span></p>
</td>
<td style="background-color:{expression/22T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C22}</strong></span></p>
</td>
<td style="background-color:{expression/23T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C23}</strong></span></p>
</td>
<td style="background-color:{expression/24T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C24}</strong></span></p>
</td>
<td style="background-color:{expression/25T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C25}</strong></span></p>
</td>
<td style="background-color:{expression/26T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C26}</strong></span></p>
</td>
<td style="background-color:{expression/27T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C27}</strong></span></p>
</td>
</tr>
<tr>
<td rowspan="{expression/rs}" style="background-color:{expression/28T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D28}</strong></span></p>
</td>
<td style="background-color:{expression/28T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/29T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D29}</strong></span></p>
</td>
<td style="background-color:{expression/29T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/30T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D30}</strong></span></p>
</td>
<td style="background-color:{expression/30T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/31T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D31}</strong></span></p>
</td>
<td style="background-color:{expression/31T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/32T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D32}</strong></span></p>
</td>
<td style="background-color:{expression/32T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/33T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D33}</strong></span></p>
</td>
<td style="background-color:{expression/33T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/34T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D34}</strong></span></p>
</td>
<td style="background-color:{expression/34T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
</tr>
<tr>
<td style="background-color:{expression/28T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C28}</strong></span></p>
</td>
<td style="background-color:{expression/29T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C29}</strong></span></p>
</td>
<td style="background-color:{expression/30T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C30}</strong></span></p>
</td>
<td style="background-color:{expression/31T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C31}</strong></span></p>
</td>
<td style="background-color:{expression/32T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C32}</strong></span></p>
</td>
<td style="background-color:{expression/33T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C33}</strong></span></p>
</td>
<td style="background-color:{expression/34T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C34}</strong></span></p>
</td>
</tr>
<tr>
<td rowspan="{expression/rs}" style="background-color:{expression/35T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D35}</strong></span></p>
</td>
<td style="background-color:{expression/35T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/36T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D36}</strong></span></p>
</td>
<td style="background-color:{expression/36T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/37T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D37}</strong></span></p>
</td>
<td style="background-color:{expression/37T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/38T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D38}</strong></span></p>
</td>
<td style="background-color:{expression/38T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/39T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D39}</strong></span></p>
</td>
<td style="background-color:{expression/39T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/40T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D40}</strong></span></p>
</td>
<td style="background-color:{expression/40T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
<td rowspan="{expression/rs}" style="background-color:{expression/41T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; font-size:32px; text-shadow:{expression/TxtShadow}"><strong>{D41}</strong></span></p>
</td>
<td style="background-color:{expression/41T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{expression/I}</strong></span></p>
</td>
</tr>
<tr>
<td style="background-color:{expression/35T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C35}</strong></span></p>
</td>
<td style="background-color:{expression/36T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C36}</strong></span></p>
</td>
<td style="background-color:{expression/37T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C37}</strong></span></p>
</td>
<td style="background-color:{expression/38T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C38}</strong></span></p>
</td>
<td style="background-color:{expression/39T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C39}</strong></span></p>
</td>
<td style="background-color:{expression/40T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C40}</strong></span></p>
</td>
<td style="background-color:{expression/41T}; border-color:{expression/TxtColor}; border-style:solid; border-width:1px; text-shadow:{expression/TxtShadow}; width:7%">
<p style="text-align:center"><span style="color:{expression/TxtColor}; text-shadow:{expression/TxtShadow}"><strong>{C41}</strong></span></p>
</td>
</tr>
</tbody>
</table> This may get you part of what you are after. I am still working on a more seamless version but this should get you close to what you are needing. Ultimately it should look like the following. RPGIS_1-1785772497414.png I created a blog for this but I have not heard anything from Esri regarding the publishing of said blog.
... View more
3 weeks ago
|
0
|
0
|
26
|
|
IDEA
|
Hi @MarGIS, It would seem like a smart idea to enforce governance of web accessible items, featuresets and tables, and a host of others especially since the scalability of data sources is equivocal to the maintenance of these sources. However, metadata alone doesn't always pertain to the use and nature of a set source, and with the complexity and flexibility of GIS data, it becomes challenging to thoroughly manage these sources/items. What may need to happen is to have a detailed breakdown of the following: Indicate the schema breakdown of the dataset Include which field(s) are used and for what purposes Which groups edit which fields What reporting mechanisms are fed by those fields Indicate/auto update dataset source material Web maps/apps/field applications that incorporate the sources Which fields in the datasets are updated and by which applications Frequency of updates or modifications that incorporate those data sources What is the purpose for the chosen apps/maps Symbology driven requirements Policies that govern the overall use and structure of the data sources Responsibility for varying data sources. Governance gets extremely complicated the more the data sources scale or when use cases expand. Even though Esri is working diligently to create tools to help expedite the metadata information, it would still require the organization to extensively work to establish reliable and consistent policy updates to fully govern the data sources.
... View more
a month ago
|
0
|
0
|
183
|
|
POST
|
Hi @TanithLives, Regarding the attachments I think, if I am understanding the updates correctly, is to enable different types of attachments and to also be able to distinguish between the types of attachments. The workflow should be the same but my guess is that Esri realized that users were requesting the ability to differentiate attachments. It could also be due to file sizes since not all file types are equal in size, similar to photos.
... View more
a month ago
|
1
|
0
|
267
|
|
POST
|
My suggestion, if your goal is to reduce for size, is instead of truncate and append to use the cursor functions to add, update, or delete records. This will skip over rows that don't need updating or add/ delete records.
... View more
07-13-2026
09:13 AM
|
0
|
0
|
105
|
|
POST
|
Hi @doronwen, We are currently using a sequencer in all of our attribute rules for our records and typically you would want to follow the instructions below. Open and Configure the Generate Sequence Tool *Be sure to copy the name of the sequence since the attribute rule will look for that particular name. Once you have that sequence created then, in the attribute rules create an immediate calculation rule. In the rule expression use: var N = $feature.IncrementID
if( IsEmpty(N) ){ N = NextSequenceValue('<name of sequence>') }
return N
// Or Simply iif( IsEmpty(N), NextSequenceValue('<name of sequence>'), N )
// Note: You may need to specify the schema owner if in an sde database Once established and conditions set then the rule will populate accordingly. You can also run the same rule as a standalone field calculation as well.
... View more
06-24-2026
12:07 PM
|
0
|
2
|
224
|
|
POST
|
Hi @Rune_Van_Severen, The issue lies on line 9 where you simply need to replace the line with NextSequenceValue(<name>). Note: You need to run the "Create Database Sequence" tool in prior to running the updated line of code. RPGIS_0-1780951492425.png and then in the line update it with the name as shown here. NextSequenceValue(GenerateNumber)
... View more
06-08-2026
01:45 PM
|
0
|
0
|
263
|
|
IDEA
|
My only suggestion may be to return a text value or replace 999 with "999" in quotes. It could be that it is trying to add a numerical value to all values when they are returned as text. Just a suggestion.
... View more
06-08-2026
01:39 PM
|
0
|
0
|
419
|
|
IDEA
|
One thing that I would recommend, at least until the AI assistant becomes available, is to figure out what questions that get asked around the department and then focus on developing tools around those questions. If what you are suggesting above are some of the more common questions then a simple tool would suffice. Experience Builder supports various tools as well as python scripts in Jupyter Notebook that can be ran like tools. It wouldn't be hard to generate a small language model in Jupyter Notebook that can be configured to answer those simple questions and provide simple maps.
... View more
05-11-2026
08:22 AM
|
0
|
0
|
1111
|
|
POST
|
Noise can be a myriad of factors aside from density alone. Sometimes having greater point density often results in more accurate DEMs due to either nearest neighbor clustering or standard deviation. The thing you may also want to investigate is the variation in z values since a cluster with higher z averages will skew the resulting TIN. I would recommend checking the z groupings or z value doesn't have a high deviation amongst clusters or there are too many individual z values with greater variation which could be contaminating the overall dataset.
... View more
05-08-2026
03:43 PM
|
0
|
0
|
471
|
|
POST
|
Just putting in my two cents into this conversation but it could also be that the mapping of some fields could result in some errors when populating from a csv to a dbf or feature table in a database. I would utilize functions that @HaydenWelch provided to extract the rows in the csv while also doing the same for the table you want to insert records into. You can then compare both sets of values to see if there is any mismatch in datatypes so that you can map the required values. It may also require the use of datetime to convert any text that indicates a time to an actual datetime value if that is another issue you are running into. datetime can also be validated using isinstance(value, datetime) to verify that the value is a datetime value.
... View more
05-07-2026
01:36 PM
|
1
|
1
|
2320
|
|
POST
|
Hi @ZiadGewely, Do you know the relative accuracy of the DEM. Meaning do you know the overall resolution because this can significantly affect the overall outcome of a TIN. I have created several TINs in the past using lidar data sent in by our vendor and it makes a significant difference in the overall outcome of the TIN dataset. I don't know the level of detail you are looking for but I may be able to provide some modest help with this.
... View more
05-07-2026
01:21 PM
|
0
|
2
|
495
|
|
POST
|
Hi @apgis16, There is a way to do this in Dashboards but it may require the creation of a custom data expression, configuring the information: Set one set of fields to indicate the label and another set of fields as date fields and specify a date value you want. For the values, set the values as the labels and the dates as to whatever minimum date you need or it can be acquired automatically from your data. Create a featureset as the returned expression value Create a filter and set the expression as the data to use Set the actions to filter accordingly.
... View more
04-29-2026
10:42 AM
|
0
|
0
|
437
|
|
IDEA
|
Hi @AlfredBaldenweck, I think the capability already exists, at least last time I checked. In field maps you can specify the interval to drop vertices, if it is a line, or points at regular intervals. You would just need to set in in field maps as part of the collection settings. I don't know which version of enterprise supports it but in AGO it is possible.
... View more
04-23-2026
06:21 AM
|
0
|
0
|
1132
|
|
POST
|
I have a few thoughts but it could potentially be related to one of the following: UTM_Aerial_2024 - Supported Query Formats: JSON, geoJSON, PBF UTM_Aerial_2025 - Supported Image Format Types: PNG32,PNG24,PNG,JPG,DIB,TIFF,EMF,PS,PDF,GIF,SVG,SVGZ,BMP Layer: Layer: HennepinCounty_MN_Nearmap_Sp24_6in.sid (ID: 0) Imagery/UTM_Aerial_2024 (MapServer) Format: MIXED - UTM_Aerial_2024///MapServer/0 Compression Quality: 75.0 Origin: X: -1.190968E8 Y: 1.407315E8 Supported Operations: Generate Renderer, Return Updates,Iteminfo, Thumbnail Metadata Supported Operations: Query, Query Attachments, Query Analytic, Generate Renderer, Return Updates, Iteminfo, Thumbnail, Metadata Any number of these could be the issue. Try asking for a differently formatted aerial image with similar specifications and see if that is the issue or pulling in the actual imagery layer using the same direct layer This could also be it below RPGIS_0-1776877103829.png RPGIS_1-1776877118020.png
... View more
04-22-2026
09:49 AM
|
0
|
0
|
1177
|
|
POST
|
Aside from simply enabling tracking, you can also use a simple hosted layer and ask for participants to collect by using the stream capability in field maps. This will create a route based on the paths that are collected along a stream so that it can be seen as they finish editing. It is a bit more simplified than using tracking but, if are looking to collect data along a route, then that could also help. The only limiatation with the above scenario is that it doens't allow for other features to be collected simultaneously. Depending on the use case, if it is simply getting tracking location then a simply streamed editing feature will work. Otherwise, if there is a need for additional information to be collected while walking a route then the location tracking would be needed.
... View more
04-22-2026
08:16 AM
|
0
|
1
|
985
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a month ago | |
| 1 | 05-07-2026 01:36 PM | |
| 1 | 02-10-2026 06:09 AM | |
| 1 | 03-04-2026 01:08 PM | |
| 1 | 02-24-2026 12:59 PM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|