Search Results billing_offset
Overview
PA_PROJECT_TYPES is a Projects (PA) module view that exposes the definition of project types within Oracle EBS 12.1.1 and 12.2.2. A project type is a reusable template that drives defaulting, validation, and processing behavior for projects created against it — including billing, budgeting, capital asset processing, workflow enablement, and cost/revenue recognition. The view surfaces one row per project type and carries the full set of configuration flags and foreign key references that control how projects of that type behave.
The ETRM metadata classifies this object as "Single-Org," meaning the view is scoped to a single operating unit via the ORG_ID discriminator. In multi-org deployments, ORG_ID determines which operating unit owns a given project type row, and queries must respect the MOAC (Multi-Org Access Control) security context. The ETRM record notes the object is "Not implemented in this database," which indicates that in the documented environment the view was not deployed or was inaccessible at the time of extraction; the view text nonetheless reflects the canonical column projection used by Oracle.
Underlying Base Objects
The ETRM metadata documents no referenced base objects for this view. In standard Oracle implementation, PA_PROJECT_TYPES is a single-table view defined over PA_PROJECT_TYPES_ALL (the multi-org table holding project type definitions), typically filtered or joined to resolve ORG_ID scoping. Because the documented metadata lists no underlying objects, the authoritative column list supplied in the view text should be treated as the reference definition: it is a straight projection of the columns from the underlying project types table without aggregation or joins.
The absence of documented base objects means the view functions as a stability layer — applications and reports can query PA_PROJECT_TYPES rather than the _ALL table directly, insulating them from underlying storage changes.
Key Columns
- PROJECT_TYPE_ID / PROJECT_TYPE / DESCRIPTION — primary key, name, and user-facing description of the type.
- DIRECT_FLAG, SERVICE_TYPE_CODE, BURDEN_COST_FLAG, TOTAL_BURDEN_FLAG — cost accumulation and burdening behavior.
- LABOR_INVOICE_FORMAT_ID, NON_LABOR_INVOICE_FORMAT_ID — default invoice formats for billing.
- LABOR_BILL_RATE_ORG_ID, LABOR_STD_BILL_RATE_SCHDL, NON_LABOR_BILL_RATE_ORG_ID, NON_LABOR_STD_BILL_RATE_SCHDL — billing rate organization and standard bill rate schedules.
- REV_BUDGET_ENTRY_METHOD_CODE, REV_BUDGET_RESOURCE_LIST_ID, ALLOW_REV_BUDGET_ENTRY_FLAG — revenue budgeting entry method and the resource list used when revenue budget entry is permitted. The column REV_BUDGET_RESOURCE_LIST_ID is the user's search target and links the project type to its designated revenue budget resource list.
- COST_BUDGET_ENTRY_METHOD_CODE, COST_BUDGET_RESOURCE_LIST_ID, ALLOW_COST_BUDGET_ENTRY_FLAG, DEFAULT_RESOURCE_LIST_ID — corresponding cost budgeting controls and the default resource list.
- COST_IND_RATE_SCH_ID, REV_IND_RATE_SCH_ID, INV_IND_RATE_SCH_ID — indirect rate schedules for cost, revenue, and invoicing.
- ALLOWABLE_FUNDING_LEVEL_CODE, BASELINE_FUNDING_FLAG, REVALUATE_FUNDING_FLAG — funding control.
- PROJECT_TYPE_CLASS_CODE, CAPITAL_COST_TYPE_CODE — classification and capital cost treatment.
- ENABLE_PROJECT_WF_FLAG, ENABLE_BUDGET_WF_FLAG — Oracle Workflow enablement.
- ORG_ID — operating unit discriminator for single-org scoping.
- INV_IND_RATE_SCH_ID, BILLING_OFFSET, BILLING_CYCLE_ID — invoicing automation.
Common Use Cases and Queries
This view is commonly queried to enumerate project types, audit their defaulting configuration, and drive validation logic in reports and integrations.
- Locate the revenue budget resource list assigned to a project type:
SELECT project_type_id, project_type, description,
rev_budget_entry_method_code, rev_budget_resource_list_id,
allow_rev_budget_entry_flag
FROM pa_project_types
WHERE org_id = :p_org_id
AND rev_budget_resource_list_id IS NOT NULL;
- Compare cost and revenue budgeting configuration across types:
SELECT project_type, cost_budget_entry_method_code, cost_budget_resource_list_id,
rev_budget_entry_method_code, rev_budget_resource_list_id,
default_resource_list_id
FROM pa_project_types
WHERE org_id = :p_org_id;
- Identify types with workflow enabled:
SELECT project_type, enable_project_wf_flag, enable_budget_wf_flag FROM pa_project_types WHERE org_id = :p_org_id AND enable_project_wf_flag = 'Y';
Because the view is Single-Org, every query must supply the appropriate ORG_ID filter to enforce MOAC security and return the correct operating unit's project types.
-
View: PA_PROJECT_TYPES
12.2.2
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_IMPLEMENTATIONS_ALL_MRC_V_O
12.2.2
product: PA - Projects , description: Single currency view , implementation_dba_data: Not implemented in this database ,
-
View: PA_IMPLEMENTATIONS_ALL_MRC_V_O
12.1.1
product: PA - Projects , description: Single currency view , implementation_dba_data: Not implemented in this database ,
-
View: PA_IMPLEMENTATIONS_O
12.2.2
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECT_TYPES
12.1.1
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECTS_O
12.2.2
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_IMPLEMENTATIONS_ALL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_IMPLEMENTATIONS_ALL_MRC_V, object_name:PA_IMPLEMENTATIONS_ALL_MRC_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_IMPLEMENTATIONS_ALL_MRC_V ,
-
View: PA_IMPLEMENTATIONS_MRC_V_O
12.2.2
product: PA - Projects , description: Single-org, single currency view , implementation_dba_data: Not implemented in this database ,
-
View: PA_IMPLEMENTATIONS_ALL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_IMPLEMENTATIONS_ALL_MRC_V, object_name:PA_IMPLEMENTATIONS_ALL_MRC_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_IMPLEMENTATIONS_ALL_MRC_V ,
-
View: PA_IMPLEMENTATIONS_O
12.1.1
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_IMPLEMENTATIONS_ALL_MRC_V2
12.1.1
product: PA - Projects , description: Single currency view , implementation_dba_data: Not implemented in this database ,
-
View: PA_IMPLEMENTATIONS_MRC_V_O
12.1.1
product: PA - Projects , description: Single-org, single currency view , implementation_dba_data: Not implemented in this database ,
-
View: PA_IMPLEMENTATIONS_ALL_MRC_V2
12.2.2
product: PA - Projects , description: Single currency view , implementation_dba_data: Not implemented in this database ,
-
View: PA_IMPLEMENTATIONS
12.1.1
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_IMPLEMENTATIONS_MRC_V
12.1.1
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
View: PA_IMPLEMENTATIONS
12.2.2
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_IMPLEMENTATIONS_MRC_V
12.2.2
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECTS_O
12.1.1
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECTS_AMG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_AMG_V, object_name:PA_PROJECTS_AMG_V, status:VALID, product: PA - Projects , description: Internal , implementation_dba_data: APPS.PA_PROJECTS_AMG_V ,
-
View: PA_PROJECTS
12.2.2
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECTS_AMG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_AMG_V, object_name:PA_PROJECTS_AMG_V, status:VALID, product: PA - Projects , description: Internal , implementation_dba_data: APPS.PA_PROJECTS_AMG_V ,
-
View: PA_PROJECTS
12.1.1
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECTS_V_O
12.2.2
product: PA - Projects , description: 10Sc Only - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECTS_V_O
12.1.1
product: PA - Projects , description: 10Sc Only - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_V, object_name:PA_PROJECTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECTS_V ,
-
View: PA_PROJECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_V, object_name:PA_PROJECTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECTS_V ,
-
View: PA_PROJECTS_PRM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_PRM_V, object_name:PA_PROJECTS_PRM_V, status:VALID, product: PA - Projects , description: Single-Org , implementation_dba_data: APPS.PA_PROJECTS_PRM_V ,
-
View: PA_PROJECTS_PRM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_PRM_V, object_name:PA_PROJECTS_PRM_V, status:VALID, product: PA - Projects , description: Single-Org , implementation_dba_data: APPS.PA_PROJECTS_PRM_V ,