Example Problem Sub-Table
A few examples available in the Project-specific domain for problems sub-tables are as follows:
Getting Problem Sub-Table 
To get Problem Sub-Table for a project in Windchill Risk and Reliability, use the following GET URL.
URL
GET /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)Problems(<problemID>)/ProblemSubTable1s?$expand=User
Getting a Specific Problem Sub-Table 
To get details for a Problem Sub-Table for a project in Windchill Risk and Reliability, use the following GET URL.
GET /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)Problems(<problemID>)/ProblemSubTable1s(<problemsubtableID>)?$expand=User
Updating User on a Problem Sub-Table 
To update a user for a Problem Sub-Table for a project in Windchill Risk and Reliability, use the following PUT URL.
URL
PUT /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)Problems(<problemID>)/ProblemSubTable1s(<problemsubtableID>)/User/$ref
Request Body
{
"@odata.id": "/WindchillRiskAndReliability12.0-REST/odata/Administration/Users(<userID>)"
}
Creating Problem Sub-Table 
To create a Problem Sub-Table for a project in Windchill Risk and Reliability, use the following POST URL.
URL
POST /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)Problems(<problemID>)/ProblemSubTable1s?$expand=User
Request Body
{
"@odata.id": "/WindchillRiskAndReliability12.0-REST/odata/Administration/Users(<userID>)"
}
Deleting Problem Sub-Table 
To delete a Problem Sub-Table for a project in Windchill Risk and Reliability, use the following DELETE URL.
URL
DELETE /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)Problems(<problemID>)/ProblemSubTable1s(<problemsubtableID>)