Retrieving the Existing Table Data Associated with a Non-revisable Regulatory Submission
You can retrieve the existing table data objects and table data subtypes for an existing non-revisable regulatory submission.
The request returns the ID, CreatedOn, LastModified, and ObjectType attributes. Additionally, the request returns the @odata.type and subtype attributes for the subtypes.
The following example shows you how to retrieve the existing table data objects associated to an existing non-revisable regulatory submission. In this example, the non-revisable regulatory submission has four base table data objects and a table data subtype associated to it.
Use the following GET URI.
URI
GET /Windchill/servlet/odata/RegMstr/RegulatorySubmissions('OR:com.ptc.qualitymanagement.regmstr.RegulatorySubmission:237897')/TableData
The request returns all five objects along with their corresponding attributes.
Example: Retrieving a Specific Type of Table Data Using a Typecast
The following example shows you how to retrieve a specific table-data type associated with an existing non-revisable regulatory submission by specifying the table-data type in the typecast that is specified in the request URI.
Use the following GET URI.
URI
GET /Windchill/servlet/odata/RegMstr/RegulatorySubmissions('OR:com.ptc.qualitymanagement.regmstr.RegulatorySubmission:237897')/TableData/PTC.RegMstr.SimpleTableData
The request returns the SimpleTableData table-data type along with its attributes.
The following example shows you how to retrieve a specific table-data subtype associated with an existing non-revisable regulatory submission by specifying the table-data type in the typecast that is specified in the request URI.
Use the following GET URI.
URI
GET /Windchill/servlet/odata/RegMstr/RegulatorySubmissions('OR:com.ptc.qualitymanagement.regmstr.RegulatorySubmission:237897')/TableData/PTC.RegMstr.SimpleTDSubtype1
The request returns the SimpleTDSubtype1 table data subtype along with its attributes.