AWC Expert

AWC Debugging — How to Fix UI Issues in Teamcenter

By Pankaj Verma Last updated: April 8, 2026 9 min read

A practical guide to debugging Active Workspace issues using ctx, ViewModel, and service tracing.

AWC debugging is different from normal UI debugging because many problems are not in custom code. They are in ctx, declarative JSON, service payloads, or wrong assumptions about the selected object.

Best debugging order

  1. check selected object in ctx
  2. inspect ViewModel JSON and condition logic
  3. verify the service call and response payload
  4. confirm property mapping and data provider output
  5. validate panel and command visibility conditions

1. ctx

Is the correct object selected? Are you on item or item revision?

2. ViewModel

Do commands, conditions, and data providers point to the right state?

3. Service

Does the service return the property and object type your panel expects?

Common bugs

Practical rule

Always debug ctx first.

If ctx is wrong, the rest of the UI flow usually becomes misleading.

Continue learning