DBA Data[Home] [Help]

APPS.UMX_REGISTRATION_UTIL dependencies on FND_USER_PKG

Line 721: -- Wrapper around Fnd_user_pkg.create_username with status as pending

717:
718: -- Procedure
719: -- Reserve UserName
720: -- Description
721: -- Wrapper around Fnd_user_pkg.create_username with status as pending
722: -- IN
723: -- itemtype - A valid item type from (WF_ITEM_TYPES table).
724: -- itemkey - A string generated from the application object's primary key.
725: -- actid - The function activity (instance id).

Line 809: 'Before invoking fnd_user_pkg.TestUserName API with username is ' || l_username);

805: -- Check if the username is available
806: if (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
807: FND_LOG.STRING (FND_LOG.LEVEL_STATEMENT,
808: 'fnd.plsql.UMXUTILB.reserveusername',
809: 'Before invoking fnd_user_pkg.TestUserName API with username is ' || l_username);
810: end if;
811:
812: l_return_status := fnd_user_pkg.TestUserName (x_user_name => l_username);
813:

Line 812: l_return_status := fnd_user_pkg.TestUserName (x_user_name => l_username);

808: 'fnd.plsql.UMXUTILB.reserveusername',
809: 'Before invoking fnd_user_pkg.TestUserName API with username is ' || l_username);
810: end if;
811:
812: l_return_status := fnd_user_pkg.TestUserName (x_user_name => l_username);
813:
814: if (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
815: FND_LOG.STRING (FND_LOG.LEVEL_STATEMENT,
816: 'fnd.plsql.UMXUTILB.reserveusername',

Line 817: 'After invoking fnd_user_pkg.TestUserName API with return status is ' || l_return_status);

813:
814: if (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
815: FND_LOG.STRING (FND_LOG.LEVEL_STATEMENT,
816: 'fnd.plsql.UMXUTILB.reserveusername',
817: 'After invoking fnd_user_pkg.TestUserName API with return status is ' || l_return_status);
818: end if;
819:
820: if ((l_return_status = fnd_user_pkg.USER_INVALID_NAME) or
821: (l_return_status = fnd_user_pkg.USER_EXISTS_IN_FND) or

Line 820: if ((l_return_status = fnd_user_pkg.USER_INVALID_NAME) or

816: 'fnd.plsql.UMXUTILB.reserveusername',
817: 'After invoking fnd_user_pkg.TestUserName API with return status is ' || l_return_status);
818: end if;
819:
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);

Line 821: (l_return_status = fnd_user_pkg.USER_EXISTS_IN_FND) or

817: 'After invoking fnd_user_pkg.TestUserName API with return status is ' || l_return_status);
818: end if;
819:
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

Line 822: (l_return_status = fnd_user_pkg.USER_EXISTS_NO_LINK_ALLOWED)) then

818: end if;
819:
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);

Line 829: if (l_return_status = fnd_user_pkg.user_synched) then

825: else
826: add_param_to_event (p_item_type, p_item_key, 'TESTUSERNAME_RET_STATUS', l_return_status);
827: end if;
828:
829: if (l_return_status = fnd_user_pkg.user_synched) then
830: -- Because the account will be synched, we no longer needs to keep
831: -- the user password in apps. Password will be managed "EXTERNALLY".
832: l_password := null;
833: wf_engine.setitemattrtext (itemtype => p_item_type,

Line 892: -- Wrapper around Fnd_user_pkg.update_username with status as approved

888:
889: -- Procedure
890: -- activate_userName
891: -- Description
892: -- Wrapper around Fnd_user_pkg.update_username with status as approved
893: -- IN
894: -- itemtype - A valid item type from (WF_ITEM_TYPES table).
895: -- itemkey - A string generated from the application object's primary key.
896: -- actid - The function activity (instance id).

Line 976: -- Wrapper around Fnd_user_pkg.delete_username with status as cancelled

972:
973: -- Procedure
974: -- release_userName
975: -- Description
976: -- Wrapper around Fnd_user_pkg.delete_username with status as cancelled
977: -- IN
978: -- itemtype - A valid item type from (WF_ITEM_TYPES table).
979: -- itemkey - A string generated from the application object's primary key.
980: -- actid - The function activity (instance id).

Line 1819: -- Wrapper around Fnd_user_pkg.delete_username with status as cancelled

1815:
1816: -- Procedure
1817: -- cancel_username
1818: -- Description
1819: -- Wrapper around Fnd_user_pkg.delete_username with status as cancelled
1820: -- this is for failed identity verification
1821: -- IN
1822: -- itemtype - A valid item type from (WF_ITEM_TYPES table).
1823: -- itemkey - A string generated from the application object's primary key.