Deeplinking to JET Pages

JET Pages

The approach for deep linking to JET pages is :

Consider the URL below for Oracle Health Insurance Capitation application running on

**http://hostName:portNumber/capitation**":
http://hostName:portNumber/capitation/?menu1=contracts&page=capitationcontracts&mode=view-edit-capitationcontracts&key=3451**
  • "menu1=contracts" represents that we are under main menu : Contracts, in other cases we can look at the URL of a particular page that we want to deeplink.

  • "page=capitationcontracts" represents that we are in Capitation Contracts page. other values can be: adjustmentschedules. It is generally entity plural name, only in few cases like rateschedules where it can have different values like calculaterateschedules or managerateshedules.

  • "mode=view-edit-capitationcontracts" we are in view-edit page of a particular Capitation Contract, in case of creating a new record the mode value will be "mode=create-capitationcontracts" and complete URL will be like:

http://hostName:portNumber/capitation/?menu1=contracts&page=capitationcontracts&mode=create-capitationcontracts__.
  • "key=3451" where 3451 is the "id" of the current record that we are looking at. In case of 'create' page 'key' won’t be part of the URL.