RESPONSE_COLUMN

Used in

CONFIG  

Parent elements

ADMIN_TABLE 

Syntax

<RESPONSE_COLUMNAttribute Description Table
     (r)columnname="string"
>

     No Child Elements
</RESPONSE_COLUMN >
(r): Attribute or child element is required.

Description

Specifies columns in the administration table. The column values are returned as attributes of each METADATA_DATASET element in a response.

Restrictions


Notes


Attribute Descriptions for RESPONSE_COLUMN

AttributeUsage
columnnameName of column in the administration table. References can be made only to character columns.
Back to top 

Examples for RESPONSE_COLUMN

<?xml version="1.0" encoding="UTF-8"?>
<ARCXML version="1.1">
  <CONFIG>
    <ENVIRONMENT>
      <LOCALE country="US" language="en" variant="" />
      <UIFONT color="0,0,0" name="Arial" size="12" style="regular" />
    </ENVIRONMENT>
    <METADATA_CONFIG>
      <WORKSPACES>
        <SDEWORKSPACE name="unique_name" server="server_name" instance="port:5151" database="optional_database_name" user="user_name" password="user_password" />
      </WORKSPACES>
      <ADMIN_TABLE tablename="AdminTable" idcolumn="DocUUID" filter="Approved='Y'" insert="INSERT INTO AdminTable (DocUUID, Approved) VALUES ('%s', 'N')">
        <RESPONSE_COLUMN columnname="Approved" />
      </ADMIN_TABLE>
      <METADATA_CONTENT validate="true" />
      <TABLE_NAME prefix="imsmetadata" />
    </METADATA_CONFIG>
  </CONFIG>
</ARCXML>

Back to top