DBA Data[Home] [Help]

APPS.PA_CC_TRANSFER_PRICE dependencies on PA_PROJECT_TYPES_ALL

Line 4375: /* Bug 1729820 _ Changed to pa_projects_all and pa_project_types_all */

4371: x_burdening_allowed OUT NOCOPY VARCHAR2, /*File.sql.39*/
4372: x_burden_amt_display_method OUT NOCOPY VARCHAR2 /*File.sql.39*/
4373: )
4374: IS
4375: /* Bug 1729820 _ Changed to pa_projects_all and pa_project_types_all */
4376:
4377: Cursor c_burdening_details
4378: IS
4379: select type.burden_cost_flag,type.burden_amt_display_method

Line 4380: from pa_projects_all proj ,pa_project_types_all type

4376:
4377: Cursor c_burdening_details
4378: IS
4379: select type.burden_cost_flag,type.burden_amt_display_method
4380: from pa_projects_all proj ,pa_project_types_all type
4381: where proj.project_id = p_project_id
4382: and proj.project_type = type.project_type
4383: and proj.org_id = type.org_id; /** Added this condition while making changes for Org Forecasting **/
4384: BEGIN