DBA Data[Home] [Help]

APPS.PA_FIN_PLAN_MAINT_VER_GLOBAL dependencies on FND_MESSAGE

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

322: select version_name
323: into l_version_name
324: from pa_budget_versions
325: where budget_version_id = px_target_version_id;
326: FND_MESSAGE.SET_NAME('PA','PA_FP_COPY_MESSAGE');
327: l_version_name:= FND_MESSAGE.GET || ': ' || l_version_name;
328: -- bug 3139862 the maximum value version_name column can hold is 60 characters
329: -- It could be that after appending "copy: " the version name exceeds 60 char
330: -- So, the version_name should be truncated

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

323: into l_version_name
324: from pa_budget_versions
325: where budget_version_id = px_target_version_id;
326: FND_MESSAGE.SET_NAME('PA','PA_FP_COPY_MESSAGE');
327: l_version_name:= FND_MESSAGE.GET || ': ' || l_version_name;
328: -- bug 3139862 the maximum value version_name column can hold is 60 characters
329: -- It could be that after appending "copy: " the version name exceeds 60 char
330: -- So, the version_name should be truncated
331: l_version_name := substr(l_version_name, 1, 60);