ArcGIS 10.3 report writer

762
3
09-06-2017 02:10 PM
VeronicaRaines
New Contributor II

I need only the fields and their properties in the report, no details.  I recall creating this report in the past so I know it can be done. 

https://community.esri.com/groups/geodatabase?sr=search&searchId=eac7a8ac-ff27-4f23-b2e0-e0d0bc91206...

0 Kudos
3 Replies
Asrujit_SenGupta
MVP Regular Contributor

Are you looking for this: X-Ray for ArcCatalog

0 Kudos
RebeccaStrauch__GISP
MVP Emeritus

I wonder if you are looking for ListFields—Help | ArcGIS for Desktop 

From the arcpy samples.

# List field properties.

import arcpy

# For each field in the Hospitals feature class, print
#  the field name, type, and length.
fields = arcpy.ListFields("c:/data/municipal.gdb/hospitals")

for field in fields:
    print("{0} is a type of {1} with a length of {2}"
          .format(field.name, field.type, field.length))
0 Kudos
VeronicaRaines
New Contributor II

Thank you Rebecca!

I'm getting super feedback.

I'm also looking into Xray for ArcCatalog and Xray for ArcGIS (not too

successful with one for 10.3, but I'll keep looking)

Veronica

>>> "Rebecca Strauch, GISP" <geonet@esri.com> 09/07/2017 11:15 AM >>>

GeoNet

( https://community.esri.com/?et=watches.email.thread)

Re: ArcGIS 10.3 report writerreply from Rebecca Strauch, GISP

( https://community.esri.com/people/rastrauch?et=watches.email.thread) in

Managing Data - View the full discussion

(

https://community.esri.com/message/713665-re-arcgis-103-report-writer?commentID=713665&et=watches.email.thread#comment-713665)

I wonder if you are looking for ListFields—Help | ArcGIS for Desktop

(

https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fdesktop.arcgis.com%2Fen%2Farcmap%2F10.3%2Fanalyze%2Farcpy-functions%2Flistfields.htm)

From the arcpy samples.

  1. List field properties.

import arcpy

  1. For each field in the Hospitals feature class, print

  2. the field name, type, and length.

fields = arcpy.ListFields("c:/data/municipal.gdb/hospitals")

for field in fields:

print(" is a type of with a length of "

.format(field.name, field.type, field.length))

Reply to this message by replying to this email, or go to the message

on GeoNet

(

https://community.esri.com/message/713665-re-arcgis-103-report-writer?commentID=713665&et=watches.email.thread#comment-713665)

Start a new discussion in Managing Data by email

( mailto:discussions-community-gis-managing--data@mail.geonet.esri.com)

or at GeoNet

(

https://community.esri.com/choose-container.jspa?contentType=1&containerType=14&container=2050&et=watches.email.thread)

Following Re: ArcGIS 10.3 report writer

(

https://community.esri.com/message/713665-re-arcgis-103-report-writer?commentID=713665&et=watches.email.thread#comment-713665)

in these streams: Inbox

This email was sent by GeoNet because you are a registered user.

You may unsubscribe

(

https://community.esri.com/unsubscribe.jspa?email=veronica.raines%40ci.kinston.nc.us&token=2c39d44fbed88733be86555f03e65edc9eeaf85bae7811c41cac764dc95320f5)

instantly from GeoNet, or adjust email frequency in your email

preferences

( https://community.esri.com/user-preferences!input.jspa)

0 Kudos