DBA Data[Home] [Help]

APPS.PA_COST_RATE_PUB dependencies on PA_MOAC_UTILS

Line 97: it is not passed then it needs to be derived using pa_moac_utils.get_current_org_id. This API would return

93: pa_cc_utils.log_message(l_stage);
94: end if;
95:
96: /* Bug 9913685: If p_org_id is passed through the concurrent program, then that should be assigned to l_curr_org_id. In case
97: it is not passed then it needs to be derived using pa_moac_utils.get_current_org_id. This API would return
98: the org_id in case of single-org context and would return NULL in case of multi-org context. The nvl handling below
99: makes sure to pick up all orgs in case of multi-org context. */
100:
101: l_curr_org_id := p_org_id; -- bug 9913685

Line 104: l_curr_org_id := pa_moac_utils.get_current_org_id; /* Added for bug 7365397 */

100:
101: l_curr_org_id := p_org_id; -- bug 9913685
102:
103: if l_curr_org_id is null then -- bug 9913685: added if condition
104: l_curr_org_id := pa_moac_utils.get_current_org_id; /* Added for bug 7365397 */
105: end if;
106:
107: /*===================================================================+
108: | If the calling module is 'REQUIREMENT' - both job id and |