DBA Data[Home] [Help]

APPS.PA_CC_TRANSFER_PRICE dependencies on PA_PROJECT_TYPES_ALL

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

4275: x_burdening_allowed OUT NOCOPY VARCHAR2, /*File.sql.39*/
4276: x_burden_amt_display_method OUT NOCOPY VARCHAR2 /*File.sql.39*/
4277: )
4278: IS
4279: /* Bug 1729820 _ Changed to pa_projects_all and pa_project_types_all */
4280:
4281: Cursor c_burdening_details
4282: IS
4283: select type.burden_cost_flag,type.burden_amt_display_method

Line 4284: from pa_projects_all proj ,pa_project_types_all type

4280:
4281: Cursor c_burdening_details
4282: IS
4283: select type.burden_cost_flag,type.burden_amt_display_method
4284: from pa_projects_all proj ,pa_project_types_all type
4285: where proj.project_id = p_project_id
4286: and proj.project_type = type.project_type
4287: and proj.org_id = type.org_id; /** Added this condition while making changes for Org Forecasting **/
4288: BEGIN