SOAP API - editDataView

The table summarizes the SOAP API - editDataView.

Request Uses the EditDataViewRequest element (from the BusinessDataServices schema)
Parameter notes
  • viewID. The unique identifier of the dataview.
  • caseClass: The fully qualified name of the case class. For example, com.example.gddemo.Car. You can obtain class names by using getCaseClassInfo .
  • caseModelVersion: The version of the case model. For example, 2 or 2.0.0.
  • name. The name of your dataview.
  • description (optional): A description of your dataview.
  • condition (optional). See Defining Dataview Conditions .
  • sortAttribute (optional). Specifies the sort order of the attribute.
    • attrPath. Specifies the attribute to sort.
    • order. Specifies the sort order, either ASC for ascending or DESC for descending.
  • category (optional). Specifies the category. See Dataview Categories .
Response Returns a EditDataViewResponse element (from the BusinessDataServices schema)
Example Request:
<soapenv:Body>
      <api:EditDataViewRequest>
         <viewID>4</viewID>
         <viewSpecification>
            <caseClassDetails>
               <caseClass>com.example.gddemo.Car</caseClass>
               <majorVersion>2</majorVersion>
            </caseClassDetails>
            <name>Manager's Car Pool</name>
            <description>Cars with awesome features</description>
         </viewSpecification>
      </api:EditDataViewRequest>
</soapenv:Body>
Response:
<SOAP-ENV:Body>
      <EditDataViewResponse xmlns="http://api.bds.tibco.com"/>
</SOAP-ENV:Body>