DBA Data[Home] [Help]

APPS.PA_FIN_PLAN_MAINT_VER_GLOBAL dependencies on FND_MESSAGE

Line 315: FND_MESSAGE.SET_NAME('PA','PA_FP_COPY_MESSAGE');

311: select version_name
312: into l_version_name
313: from pa_budget_versions
314: where budget_version_id = px_target_version_id;
315: FND_MESSAGE.SET_NAME('PA','PA_FP_COPY_MESSAGE');
316: l_version_name:= FND_MESSAGE.GET || ': ' || l_version_name;
317: -- bug 3139862 the maximum value version_name column can hold is 60 characters
318: -- It could be that after appending "copy: " the version name exceeds 60 char
319: -- So, the version_name should be truncated

Line 316: l_version_name:= FND_MESSAGE.GET || ': ' || l_version_name;

312: into l_version_name
313: from pa_budget_versions
314: where budget_version_id = px_target_version_id;
315: FND_MESSAGE.SET_NAME('PA','PA_FP_COPY_MESSAGE');
316: l_version_name:= FND_MESSAGE.GET || ': ' || l_version_name;
317: -- bug 3139862 the maximum value version_name column can hold is 60 characters
318: -- It could be that after appending "copy: " the version name exceeds 60 char
319: -- So, the version_name should be truncated
320: l_version_name := substr(l_version_name, 1, 60);