Search Results lookup_code
Overview
PA_FCST_PROJ_SHOW_AMT_V is a VALID Oracle Projects (PA) view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. Its documented purpose is to show the project forecasting amount type. In practical terms, it is a security-filtered lookup list: rather than exposing a physical forecasting table, it returns the set of forecast amount types (LOOKUP_CODE and MEANING) that the current user is permitted to see for the project currently loaded in the forecasting session. The view is therefore an enabling component of the project forecasting UI and of any integration or report that must present, validate, or default a forecast amount type. Because membership in the result set is conditional on project type class and on labor cost viewing privileges, the view is also a reference example of Oracle Projects row-level and column-level security implemented through lookup filtering. For users searching on "lookup_code," the view is the canonical place in the PA forecast schema where a LOOKUP_CODE is both the key column and the security decision variable.
Underlying Base Objects
The view text is a single SELECT over PA_LOOKUPS, filtered to LOOKUP_TYPE = 'PA_FORECAST_AMOUNT_TYPE'. PA_LOOKUPS is itself an APPS view in the Oracle Projects lookup framework and supplies the LOOKUP_CODE and MEANING pairs returned to the caller. The filter is not static: the WHERE clause invokes two PL/SQL packages that form the documented base objects of this view.
- PA_FCST_GLOBAL — supplies the session context through GETPROJECTTYPECLASS and GETPROJECTID, which return the project type class (for example, CONTRACT) and the project identifier currently active in the forecasting flow.
- PA_SECURITY — supplies VIEW_LABOR_COSTS(PA_FCST_GLOBAL.GETPROJECTID), returning 'Y' when the user may view labor costs for that project.
The DECODE ladder evaluates the project type class first, then the labor cost privilege, and returns the LOOKUP_CODE only when the combination is permitted; otherwise it returns a sentinel such as 'X' that cannot equal a real lookup code, so the row is suppressed. This construct means the view has no independent storage and its contents change with session state.
Key Columns
- LOOKUP_CODE — the forecast amount type identifier. Documented values referenced in the view logic include COST, REVENUE, MARGIN, and MARGIN_PERCENTAGE, mirroring the PA_FORECAST_AMOUNT_TYPE lookup type. It is the column searched when users query for "lookup_code" and functions as the value list item passed into forecasting forms.
- MEANING — the user-facing, translatable description of the corresponding LOOKUP_CODE, displayed in LOVs and reports.
The effective visibility rules are: for non-contract projects, COST, REVENUE, MARGIN, and MARGIN_PERCENTAGE are all shown when labor costs may be viewed, while COST is suppressed when they may not. For contract projects, COST is shown only when labor costs may be viewed, and the other amount types are filtered as well. Only the two documented columns are exposed; no project identifier, user identifier, or privilege flag is surfaced.
Common Use Cases and Queries
Typical uses include populating the forecast amount type LOV in Oracle Projects forecasting windows, validating a user-supplied amount type before insert or update, and reproducing the UI list in custom reports or interfaces. The following retrieves the visible amount types for the current forecasting context:
SELECT lookup_code, meaning FROM apps.pa_fcst_proj_show_amt_v ORDER BY lookup_code;SELECT meaning FROM apps.pa_fcst_proj_show_amt_v WHERE lookup_code = 'COST';SELECT lookup_code FROM apps.pa_fcst_proj_show_amt_v WHERE lookup_code IN ('MARGIN','MARGIN_PERCENTAGE');
Because the result depends on PA_FCST_GLOBAL session values set by the forecasting form, ad hoc queries from SQL*Plus or a reporting tool may return fewer rows than the UI, typically only COST, when no project context has been established. Integrations should therefore call the view inside the same session initialization used by the forecast forms, or query PA_LOOKUPS directly when an unfiltered list of PA_FORECAST_AMOUNT_TYPE values is required.
-
View: PA_FCST_PROJ_SHOW_AMT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FCST_PROJ_SHOW_AMT_V, object_name:PA_FCST_PROJ_SHOW_AMT_V, status:VALID, product: PA - Projects , description: PA_FCST_PROJ_SHOW_AMT_V is a view that shows project forecasting amount type , implementation_dba_data: APPS.PA_FCST_PROJ_SHOW_AMT_V ,
-
View: PA_FCST_PROJ_SHOW_AMT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FCST_PROJ_SHOW_AMT_V, object_name:PA_FCST_PROJ_SHOW_AMT_V, status:VALID, product: PA - Projects , description: PA_FCST_PROJ_SHOW_AMT_V is a view that shows project forecasting amount type , implementation_dba_data: APPS.PA_FCST_PROJ_SHOW_AMT_V ,
-
View: PA_RES_SCH_LEGEND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_SCH_LEGEND_V, object_name:PA_RES_SCH_LEGEND_V, status:VALID, product: PA - Projects , description: The purpose of this view is to provide the legend for the resource schedules timeline , implementation_dba_data: APPS.PA_RES_SCH_LEGEND_V ,
-
View: PA_PROJ_ASGN_LEGEND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_ASGN_LEGEND_V, object_name:PA_PROJ_ASGN_LEGEND_V, status:VALID, product: PA - Projects , description: The purpose of this view is to provide a legend for the project assignments / requirments timeline , implementation_dba_data: APPS.PA_PROJ_ASGN_LEGEND_V ,
-
View: PA_RES_SCH_LEGEND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_SCH_LEGEND_V, object_name:PA_RES_SCH_LEGEND_V, status:VALID, product: PA - Projects , description: The purpose of this view is to provide the legend for the resource schedules timeline , implementation_dba_data: APPS.PA_RES_SCH_LEGEND_V ,
-
View: PA_PROJ_ASGN_LEGEND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_ASGN_LEGEND_V, object_name:PA_PROJ_ASGN_LEGEND_V, status:VALID, product: PA - Projects , description: The purpose of this view is to provide a legend for the project assignments / requirments timeline , implementation_dba_data: APPS.PA_PROJ_ASGN_LEGEND_V ,
-
View: PA_ALLOC_RUNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ALLOC_RUNS_V, object_name:PA_ALLOC_RUNS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ALLOC_RUNS_V ,
-
View: PA_ALLOC_RUNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ALLOC_RUNS_V, object_name:PA_ALLOC_RUNS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ALLOC_RUNS_V ,
-
View: PA_RES_ASGN_LEGEND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_ASGN_LEGEND_V, object_name:PA_RES_ASGN_LEGEND_V, status:VALID, product: PA - Projects , description: The purpose of this view is to provide a legend for the resource assignments / requirements timeline , implementation_dba_data: APPS.PA_RES_ASGN_LEGEND_V ,
-
View: PA_REP_YES_NO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_YES_NO_V, object_name:PA_REP_YES_NO_V, status:VALID, product: PA - Projects , description: A view for Yes/No selection , implementation_dba_data: APPS.PA_REP_YES_NO_V ,
-
View: PA_REP_YES_NO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_YES_NO_V, object_name:PA_REP_YES_NO_V, status:VALID, product: PA - Projects , description: A view for Yes/No selection , implementation_dba_data: APPS.PA_REP_YES_NO_V ,
-
View: PA_RES_ASGN_LEGEND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_ASGN_LEGEND_V, object_name:PA_RES_ASGN_LEGEND_V, status:VALID, product: PA - Projects , description: The purpose of this view is to provide a legend for the resource assignments / requirements timeline , implementation_dba_data: APPS.PA_RES_ASGN_LEGEND_V ,
-
View: PA_ALLOC_RULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ALLOC_RULES_V, object_name:PA_ALLOC_RULES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ALLOC_RULES_V ,
-
View: PA_ALLOC_RULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ALLOC_RULES_V, object_name:PA_ALLOC_RULES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ALLOC_RULES_V ,
-
View: PA_STRUCTURE_NAMES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STRUCTURE_NAMES_V, object_name:PA_STRUCTURE_NAMES_V, status:VALID, product: PA - Projects , description: PA_STRUCTURE_NAMES_V selects structure name and structure number. - For future use , implementation_dba_data: APPS.PA_STRUCTURE_NAMES_V ,
-
View: PA_STRUCTURE_NAMES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STRUCTURE_NAMES_V, object_name:PA_STRUCTURE_NAMES_V, status:VALID, product: PA - Projects , description: PA_STRUCTURE_NAMES_V selects structure name and structure number. - For future use , implementation_dba_data: APPS.PA_STRUCTURE_NAMES_V ,
-
View: PA_BUDGET_VERSIONS_DRAFT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_VERSIONS_DRAFT_V, object_name:PA_BUDGET_VERSIONS_DRAFT_V, status:VALID, product: PA - Projects , description: 10SC Only - Retrofitted , implementation_dba_data: APPS.PA_BUDGET_VERSIONS_DRAFT_V ,
-
View: PA_BUDGET_VERSIONS_DRAFT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_VERSIONS_DRAFT_V, object_name:PA_BUDGET_VERSIONS_DRAFT_V, status:VALID, product: PA - Projects , description: 10SC Only - Retrofitted , implementation_dba_data: APPS.PA_BUDGET_VERSIONS_DRAFT_V ,
-
View: PA_CP_GENERATE_ASSET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CP_GENERATE_ASSET_V, object_name:PA_CP_GENERATE_ASSET_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_CP_GENERATE_ASSET_V ,
-
View: PA_CP_GENERATE_ASSET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CP_GENERATE_ASSET_V, object_name:PA_CP_GENERATE_ASSET_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_CP_GENERATE_ASSET_V ,
-
View: PA_AS_PERSON_ROLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_AS_PERSON_ROLES_V, object_name:PA_AS_PERSON_ROLES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_AS_PERSON_ROLES_V ,
-
View: PA_AS_PERSON_ROLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_AS_PERSON_ROLES_V, object_name:PA_AS_PERSON_ROLES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_AS_PERSON_ROLES_V ,
-
View: PA_ALLOC_GL_AMOUNT_TYPE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ALLOC_GL_AMOUNT_TYPE_V, object_name:PA_ALLOC_GL_AMOUNT_TYPE_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ALLOC_GL_AMOUNT_TYPE_V ,
-
View: PA_ALLOC_GL_AMOUNT_TYPE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ALLOC_GL_AMOUNT_TYPE_V, object_name:PA_ALLOC_GL_AMOUNT_TYPE_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ALLOC_GL_AMOUNT_TYPE_V ,
-
View: PA_FIN_STRUCTURE_VERSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_STRUCTURE_VERSIONS_V, object_name:PA_FIN_STRUCTURE_VERSIONS_V, status:VALID, product: PA - Projects , description: PA_FIN_STRUCTURE_VERSIONS_V selects all structure-related attributes. , implementation_dba_data: APPS.PA_FIN_STRUCTURE_VERSIONS_V ,
-
View: PA_FIN_STRUCTURE_VERSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_STRUCTURE_VERSIONS_V, object_name:PA_FIN_STRUCTURE_VERSIONS_V, status:VALID, product: PA - Projects , description: PA_FIN_STRUCTURE_VERSIONS_V selects all structure-related attributes. , implementation_dba_data: APPS.PA_FIN_STRUCTURE_VERSIONS_V ,
-
View: PA_REP_VIEW_RES_SUP_HIER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_VIEW_RES_SUP_HIER_V, object_name:PA_REP_VIEW_RES_SUP_HIER_V, status:VALID, product: PA - Projects , description: PA_REP_VIEW_RES_SUP_HIER_V is a view that lists all choices for View Resources LOV , implementation_dba_data: APPS.PA_REP_VIEW_RES_SUP_HIER_V ,
-
View: PA_ALLOC_PA_AMOUNT_TYPE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ALLOC_PA_AMOUNT_TYPE_V, object_name:PA_ALLOC_PA_AMOUNT_TYPE_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ALLOC_PA_AMOUNT_TYPE_V ,
-
View: PA_ALLOC_PA_AMOUNT_TYPE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ALLOC_PA_AMOUNT_TYPE_V, object_name:PA_ALLOC_PA_AMOUNT_TYPE_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ALLOC_PA_AMOUNT_TYPE_V ,
-
View: PA_STRUCT_TASK_EDIT_V
12.1.1
product: PA - Projects , description: PA_STRUCT_TASK_EDIT_V selects all the attributes of a structure version and a task version. - For future use , implementation_dba_data: Not implemented in this database ,
-
View: PA_REP_VIEW_RES_SUP_HIER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_VIEW_RES_SUP_HIER_V, object_name:PA_REP_VIEW_RES_SUP_HIER_V, status:VALID, product: PA - Projects , description: PA_REP_VIEW_RES_SUP_HIER_V is a view that lists all choices for View Resources LOV , implementation_dba_data: APPS.PA_REP_VIEW_RES_SUP_HIER_V ,
-
View: PA_REP_REQT_DTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_REQT_DTS_V, object_name:PA_REP_REQT_DTS_V, status:VALID, product: PA - Projects , description: PA_REP_REQT_DTS_V is a view to show the details of the requirements for organizations and projects , implementation_dba_data: APPS.PA_REP_REQT_DTS_V ,
-
View: PA_STRUCT_TASK_EDIT_V
12.2.2
product: PA - Projects , description: PA_STRUCT_TASK_EDIT_V selects all the attributes of a structure version and a task version. - For future use , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJ_STATUSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_STATUSES_V, object_name:PA_PROJ_STATUSES_V, status:VALID, product: PA - Projects , description: This view provides the project statuses. , implementation_dba_data: APPS.PA_PROJ_STATUSES_V ,
-
View: PA_REP_REQT_DTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_REQT_DTS_V, object_name:PA_REP_REQT_DTS_V, status:VALID, product: PA - Projects , description: PA_REP_REQT_DTS_V is a view to show the details of the requirements for organizations and projects , implementation_dba_data: APPS.PA_REP_REQT_DTS_V ,
-
View: PA_EVENT_TYPE_CLASSES_RES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EVENT_TYPE_CLASSES_RES_V, object_name:PA_EVENT_TYPE_CLASSES_RES_V, status:VALID, product: PA - Projects , description: 10Sc Only , implementation_dba_data: APPS.PA_EVENT_TYPE_CLASSES_RES_V ,
-
View: PA_EVENT_TYPE_CLASSES_RES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EVENT_TYPE_CLASSES_RES_V, object_name:PA_EVENT_TYPE_CLASSES_RES_V, status:VALID, product: PA - Projects , description: 10Sc Only , implementation_dba_data: APPS.PA_EVENT_TYPE_CLASSES_RES_V ,
-
View: PA_REP_ASMT_DTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_ASMT_DTS_V, object_name:PA_REP_ASMT_DTS_V, status:VALID, product: PA - Projects , description: PA_REP_ASMT_DTS_V is a view to show the deails of the assignments for organizations and projects , implementation_dba_data: APPS.PA_REP_ASMT_DTS_V ,
-
View: PA_PRODUCT_INSTALLATION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PRODUCT_INSTALLATION_V, object_name:PA_PRODUCT_INSTALLATION_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PRODUCT_INSTALLATION_V ,
-
View: PA_PRODUCT_INSTALLATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PRODUCT_INSTALLATION_V, object_name:PA_PRODUCT_INSTALLATION_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PRODUCT_INSTALLATION_V ,
-
View: PA_TASK_BILLING_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_BILLING_INFO_V, object_name:PA_TASK_BILLING_INFO_V, status:VALID, product: PA - Projects , description: PA_TASK_BILLING_INFO_V provides the billing information for tasks. , implementation_dba_data: APPS.PA_TASK_BILLING_INFO_V ,
-
View: PA_REP_ASMT_DTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_ASMT_DTS_V, object_name:PA_REP_ASMT_DTS_V, status:VALID, product: PA - Projects , description: PA_REP_ASMT_DTS_V is a view to show the deails of the assignments for organizations and projects , implementation_dba_data: APPS.PA_REP_ASMT_DTS_V ,
-
View: PA_TASK_BILLING_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_BILLING_INFO_V, object_name:PA_TASK_BILLING_INFO_V, status:VALID, product: PA - Projects , description: PA_TASK_BILLING_INFO_V provides the billing information for tasks. , implementation_dba_data: APPS.PA_TASK_BILLING_INFO_V ,
-
View: PA_RESOURCE_GROUPS_VALID_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_GROUPS_VALID_V, object_name:PA_RESOURCE_GROUPS_VALID_V, status:VALID, product: PA - Projects , description: This view displays all the valid resource types which you can group a Resource List by , implementation_dba_data: APPS.PA_RESOURCE_GROUPS_VALID_V ,
-
View: PA_RESOURCE_GROUPS_VALID_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_GROUPS_VALID_V, object_name:PA_RESOURCE_GROUPS_VALID_V, status:VALID, product: PA - Projects , description: This view displays all the valid resource types which you can group a Resource List by , implementation_dba_data: APPS.PA_RESOURCE_GROUPS_VALID_V ,
-
View: PA_ALLOC_EXCEPTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ALLOC_EXCEPTIONS_V, object_name:PA_ALLOC_EXCEPTIONS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ALLOC_EXCEPTIONS_V ,
-
View: PA_ALLOC_EXCEPTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ALLOC_EXCEPTIONS_V, object_name:PA_ALLOC_EXCEPTIONS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ALLOC_EXCEPTIONS_V ,
-
View: PA_BUDGET_ENTRY_METHODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_ENTRY_METHODS_V, object_name:PA_BUDGET_ENTRY_METHODS_V, status:VALID, product: PA - Projects , description: This view displays the valid budget entry methods which control how a budget is entered , implementation_dba_data: APPS.PA_BUDGET_ENTRY_METHODS_V ,
-
View: PA_BUDGET_ENTRY_METHODS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_ENTRY_METHODS_V, object_name:PA_BUDGET_ENTRY_METHODS_V, status:VALID, product: PA - Projects , description: This view displays the valid budget entry methods which control how a budget is entered , implementation_dba_data: APPS.PA_BUDGET_ENTRY_METHODS_V ,
-
View: PA_TRX_FUNDS_CHK_DET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TRX_FUNDS_CHK_DET_V, object_name:PA_TRX_FUNDS_CHK_DET_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TRX_FUNDS_CHK_DET_V ,