DBA Data[Home] [Help]

APPS.JTF_RS_RESOURCE_VALUES_PVT dependencies on FND_VAULT

Line 260: -- Password will be stored using fnd_vault API

256: END IF;
257: CLOSE c_rs_values_dup;
258:
259: -- This is for bug fix # 3870910
260: -- Password will be stored using fnd_vault API
261: OPEN c_get_type(l_resource_param_id);
262: FETCH c_get_type INTO l_type;
263: CLOSE c_get_type;
264:

Line 315: -- Password will be stored using fnd_vault API

311:
312: x_resource_param_value_id := l_resource_param_value_id;
313:
314: -- This is for bug fix # 3870910
315: -- Password will be stored using fnd_vault API
316: if (l_resource_param_value_id is NOT NULL and p_value is NOT NULL and l_type = 'PASSWORD') then
317: fnd_vault.put(l_resource_param_value_id, 'JTF_RS_RESOURCE_VALUES', p_value);
318: end if;
319:

Line 317: fnd_vault.put(l_resource_param_value_id, 'JTF_RS_RESOURCE_VALUES', p_value);

313:
314: -- This is for bug fix # 3870910
315: -- Password will be stored using fnd_vault API
316: if (l_resource_param_value_id is NOT NULL and p_value is NOT NULL and l_type = 'PASSWORD') then
317: fnd_vault.put(l_resource_param_value_id, 'JTF_RS_RESOURCE_VALUES', p_value);
318: end if;
319:
320: --Make the post processing call to the user hooks
321:

Line 681: -- Password will be stored using fnd_vault API

677: --Update the Object Version Number By Incrementing it
678: l_object_version_number := p_object_version_number +1;
679:
680: -- This is for bug fix # 3870910
681: -- Password will be stored using fnd_vault API
682: OPEN c_get_type(l_resource_param_id);
683: FETCH c_get_type INTO l_type;
684: CLOSE c_get_type;
685:

Line 728: -- Password will be stored using fnd_vault API

724: RAISE fnd_api.g_exc_unexpected_error;
725: END IF;
726:
727: -- This is for bug fix # 3870910
728: -- Password will be stored using fnd_vault API
729: if (l_resource_param_value_id is NOT NULL and resource_param_value_rec.l_value is NOT NULL and l_type = 'PASSWORD') then
730: fnd_vault.put(l_resource_param_value_id, 'JTF_RS_RESOURCE_VALUES', resource_param_value_rec.l_value);
731: end if;
732:

Line 730: fnd_vault.put(l_resource_param_value_id, 'JTF_RS_RESOURCE_VALUES', resource_param_value_rec.l_value);

726:
727: -- This is for bug fix # 3870910
728: -- Password will be stored using fnd_vault API
729: if (l_resource_param_value_id is NOT NULL and resource_param_value_rec.l_value is NOT NULL and l_type = 'PASSWORD') then
730: fnd_vault.put(l_resource_param_value_id, 'JTF_RS_RESOURCE_VALUES', resource_param_value_rec.l_value);
731: end if;
732:
733: --Make the post processing call to the user hooks
734: