DBA Data[Home] [Help]

APPS.POS_SUPPLIER_USER_REG_PKG dependencies on FND_VAULT

Line 442: lv_unencrypted_password := fnd_vault.get('POS_OSN',

438: FETCH l_cur INTO l_osn_req_id, l_internal_id;
439: IF l_cur%notfound THEN
440: lv_unencrypted_password := NULL;
441: ELSE
442: lv_unencrypted_password := fnd_vault.get('POS_OSN',
443: to_char(l_osn_req_id) || '_' || to_char(l_internal_id) );
444: END IF;
445: CLOSE l_cur;
446:

Line 536: --1. stored in fnd_vault (r12)

532: BEGIN
533: l_initial_password := NULL;
534: l_initial_password := get_password(l_reg_id);
535: --for osn requests, the initial password could be
536: --1. stored in fnd_vault (r12)
537: --2. stored in Initial Pass (before r12)
538: --3. null (if the user exists in oid, but not fnd, and user synch is allowed)
539:
540: IF (l_initial_password IS NULL) THEN

Line 561: fnd_vault.del('POS_OSN',

557: l_user_name,
558: l_initial_password
559: );
560:
561: fnd_vault.del('POS_OSN',
562: to_char(l_osn_req_id) || '_' || to_char(l_internal_id) );
563:
564: RETURN l_retcode;
565: EXCEPTION