DBA Data[Home] [Help]

APPS.PSB_POSITION_PAY_DISTR_PVT dependencies on FND_MESSAGE

Line 161: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');

157: if P_LAST_UPDATE_LOGIN is NULL then
158: P_LAST_UPDATE_LOGIN := -1;
159: end if;
160: else
161: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
162: FND_MSG_PUB.Add ;
163: raise FND_API.G_EXC_ERROR;
164: end if;
165: --

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

328: --
329: open c1;
330: fetch c1 into tlinfo;
331: if (c1%notfound) then
332: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
333: fnd_msg_pub.add ;
334: close c1;
335: raise fnd_api.g_exc_error ;
336: end if;

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

396:
397: ) then
398: null;
399: else
400: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
401: fnd_msg_pub.add ;
402: raise fnd_api.g_exc_error ;
403: end if;
404:

Line 499: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');

495: if P_LAST_UPDATE_LOGIN is NULL then
496: P_LAST_UPDATE_LOGIN := -1;
497: end if;
498: else
499: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
500: FND_MSG_PUB.Add ;
501: raise FND_API.G_EXC_ERROR ;
502: end if;
503:

Line 2529: -- Calls FND_MESSAGE server package to set the Message Stack. This message is

2525: /* ----------------------------------------------------------------------- */
2526:
2527: -- Define a Message Token with a Value and set the Message Name
2528:
2529: -- Calls FND_MESSAGE server package to set the Message Stack. This message is
2530: -- retrieved by the calling program.
2531:
2532: PROCEDURE add_message(appname IN VARCHAR2,
2533: msgname IN VARCHAR2) IS

Line 2542: FND_MESSAGE.SET_NAME(appname, msgname);

2538:
2539: if ((appname is not null) and
2540: (msgname is not null)) then
2541:
2542: FND_MESSAGE.SET_NAME(appname, msgname);
2543:
2544: if no_msg_tokens is not null then
2545: for i in 1..no_msg_tokens loop
2546: FND_MESSAGE.SET_TOKEN(msg_tok_names(i), msg_tok_val(i));

Line 2546: FND_MESSAGE.SET_TOKEN(msg_tok_names(i), msg_tok_val(i));

2542: FND_MESSAGE.SET_NAME(appname, msgname);
2543:
2544: if no_msg_tokens is not null then
2545: for i in 1..no_msg_tokens loop
2546: FND_MESSAGE.SET_TOKEN(msg_tok_names(i), msg_tok_val(i));
2547: end loop;
2548: end if;
2549:
2550: FND_MSG_PUB.Add;