DBA Data[Home] [Help]

APPS.JTF_DISPLAYCONTEXT_GRP dependencies on FND_MESSAGE

Line 273: FND_MESSAGE.set_name('JTF','JTF_DSP_CONTEXT_ACCNAME_REQ');

269:
270: WHEN jtf_dspmgrvalidation_grp.context_accname_req_exception THEN
271: ROLLBACK TO save_display_context;
272: x_return_status := FND_API.g_ret_sts_error;
273: FND_MESSAGE.set_name('JTF','JTF_DSP_CONTEXT_ACCNAME_REQ');
274: FND_MSG_PUB.ADD;
275: FND_MSG_PUB.count_and_get(
276: p_encoded => FND_API.g_false,
277: p_count => x_msg_count,

Line 378: FND_MESSAGE.set_name('JTF','JTF_DSP_CONTEXT_ID_REQ');

374: x_msg_data
375: );
376:
377: else
378: FND_MESSAGE.set_name('JTF','JTF_DSP_CONTEXT_ID_REQ');
379: FND_MSG_PUB.ADD;
380: raise FND_API.g_exc_error;
381: END IF;
382:

Line 728: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');

724: open c;
725: fetch c into recinfo;
726: if (c%notfound) then
727: close c;
728: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
729: app_exception.raise_exception;
730: end if;
731: close c;
732: if ( ((recinfo.SECURITY_GROUP_ID = X_SECURITY_GROUP_ID)

Line 742: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

738: OR ((recinfo.ITEM_ID is null) AND (X_ITEM_ID is null)))
739: ) then
740: null;
741: else
742: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
743: app_exception.raise_exception;
744: end if;
745:
746: for tlinfo in c1 loop

Line 755: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

751: OR ((tlinfo.DESCRIPTION is null) AND (X_DESCRIPTION is null)))
752: ) then
753: null;
754: else
755: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
756: app_exception.raise_exception;
757: end if;
758: end if;
759: end loop;