DBA Data[Home] [Help]

APPS.UMX_REGISTRATION_UTIL dependencies on FND_MESSAGE

Line 274: -- justification from the FND Message.

270: aname => 'JUSTIFICATION');
271:
272: if (l_justification is null) or (l_justification = '') then
273: -- Jusification is null or empty string. In that case, get the default
274: -- justification from the FND Message.
275: l_regsvc_disp_name := wf_engine.getitemattrtext (
276: itemtype => item_type,
277: itemkey => item_key,
278: aname => 'REGSVC_DISP_NAME');

Line 280: fnd_message.set_name (application => 'FND',

276: itemtype => item_type,
277: itemkey => item_key,
278: aname => 'REGSVC_DISP_NAME');
279:
280: fnd_message.set_name (application => 'FND',
281: name => 'UMX_ROLE_DEFAULT_JUSTIFICATION');
282: fnd_message.set_token (token => 'REG_PROCESS_DISPLAY_NAME',
283: value => l_regsvc_disp_name);
284: l_justification := fnd_message.get;

Line 282: fnd_message.set_token (token => 'REG_PROCESS_DISPLAY_NAME',

278: aname => 'REGSVC_DISP_NAME');
279:
280: fnd_message.set_name (application => 'FND',
281: name => 'UMX_ROLE_DEFAULT_JUSTIFICATION');
282: fnd_message.set_token (token => 'REG_PROCESS_DISPLAY_NAME',
283: value => l_regsvc_disp_name);
284: l_justification := fnd_message.get;
285: end if;
286:

Line 284: l_justification := fnd_message.get;

280: fnd_message.set_name (application => 'FND',
281: name => 'UMX_ROLE_DEFAULT_JUSTIFICATION');
282: fnd_message.set_token (token => 'REG_PROCESS_DISPLAY_NAME',
283: value => l_regsvc_disp_name);
284: l_justification := fnd_message.get;
285: end if;
286:
287: wf_local_synch.propagateUserRole (p_user_name => l_user_name,
288: p_role_name => l_wf_role_name,

Line 538: fnd_message.set_name (application => 'FND',

534: 'fnd.plsql.UMXUTILB.check_mandatory_attributes.end',
535: 'Exception occurs because mandatory attribute (s) is/are missing: ' || l_message_tokens);
536: end if;
537:
538: fnd_message.set_name (application => 'FND',
539: name => 'UMX_MANDATORY_ATTRIBUTES_ERROR');
540: fnd_message.set_token (token => 'ATTRIBUTE_NAMES',
541: value => l_message_tokens);
542:

Line 540: fnd_message.set_token (token => 'ATTRIBUTE_NAMES',

536: end if;
537:
538: fnd_message.set_name (application => 'FND',
539: name => 'UMX_MANDATORY_ATTRIBUTES_ERROR');
540: fnd_message.set_token (token => 'ATTRIBUTE_NAMES',
541: value => l_message_tokens);
542:
543: raise_application_error ('-20000', fnd_message.get);
544: end if;

Line 543: raise_application_error ('-20000', fnd_message.get);

539: name => 'UMX_MANDATORY_ATTRIBUTES_ERROR');
540: fnd_message.set_token (token => 'ATTRIBUTE_NAMES',
541: value => l_message_tokens);
542:
543: raise_application_error ('-20000', fnd_message.get);
544: end if;
545: end if;
546:
547: if (FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) then

Line 793: -- set it as the fnd_message , this is used in the notification wf

789:
790: --invoke this api after fnd provides the correct api
791: -- change the password date to null if reg_service_type is admin_creation
792: -- setdisplay password to password if it has been genereated
793: -- set it as the fnd_message , this is used in the notification wf
794: if (l_expire_password = 'Y') then
795: l_password_date := null;
796: l_password_message := l_password;
797: else

Line 799: --get this from fnd messages

795: l_password_date := null;
796: l_password_message := l_password;
797: else
798: l_password_date := sysdate;
799: --get this from fnd messages
800: l_password_message := fnd_message.get_string ('FND', 'UMX_NTFY_DSPLY_PASSWD');
801: end if;
802:
803: add_param_to_event (p_item_type, p_item_key, 'DISPLAY_PASSWORD', l_password_message);

Line 800: l_password_message := fnd_message.get_string ('FND', 'UMX_NTFY_DSPLY_PASSWD');

796: l_password_message := l_password;
797: else
798: l_password_date := sysdate;
799: --get this from fnd messages
800: l_password_message := fnd_message.get_string ('FND', 'UMX_NTFY_DSPLY_PASSWD');
801: end if;
802:
803: add_param_to_event (p_item_type, p_item_key, 'DISPLAY_PASSWORD', l_password_message);
804:

Line 824: raise_application_error ('-20000', fnd_message.get);

820: if ((l_return_status = fnd_user_pkg.USER_INVALID_NAME) or
821: (l_return_status = fnd_user_pkg.USER_EXISTS_IN_FND) or
822: (l_return_status = fnd_user_pkg.USER_EXISTS_NO_LINK_ALLOWED)) then
823: -- There is problem with the username. Throw error
824: raise_application_error ('-20000', fnd_message.get);
825: else
826: add_param_to_event (p_item_type, p_item_key, 'TESTUSERNAME_RET_STATUS', l_return_status);
827: end if;
828: