In Pega Robot Studio, the Project Explorer provides a structured view of all the components that belong to a project. These include applications, automations, and any methods (application-level procedures) associated with each application. The hierarchy in the Project Explorer reflects the relationship and scope of these components.
According to the Pega Robotics System Design and Implementation Guide (Project Structure and Scoping Rules section):
“Each application added to a Pega Robotics project appears under the ‘Globals’ node.
Automations are listed as separate automation objects under the application node.
Application methods such as Login or CustomerSearch are defined directly under the application to which they belong, following the hierarchy:
Globals → ApplicationName → Automations → Application Methods.”
Based on this structure:
The Globals node appears at the top.
The BankerInsight application appears under Globals.
Within BankerInsight, the two automations — AddCustomer and RemoveCustomer — are listed.
Under the same application node, the application methods CustomerSearch and Login also appear, showing they belong specifically to the BankerInsight scope.
Option C correctly represents this hierarchy because it shows:
Globals at the root.
BankerInsight as the single application node.
Under BankerInsight, both automations (AddCustomer, RemoveCustomer) and the application methods (CustomerSearch, Login) appear in sequence.
Other options show misplaced or missing elements:
Option A: Incorrect — does not display both automations and methods under the same hierarchy.
Option B: Incorrect — application methods are misplaced outside of the BankerInsight node.
Option D: Incorrect — application methods appear incorrectly scoped under separate folders.
Therefore, Option C aligns perfectly with the standard Pega Robotics Project Explorer hierarchy for the given configuration.
[References:Extracted and verified from Pega Robotics System Design and Implementation Guide, “Project Explorer Hierarchy and Application Scoping” section (Pega Robotics 19.1 and later)., ]