DBA Data[Home] [Help]

APPS.PSA_REP_ATTRIBUTES dependencies on FND_PROFILE

Line 209: fnd_profile.get_specific

205: debug (l_module_name, 'lp_user_id='||lp_user_id);
206: debug (l_module_name, 'lp_user_resp_id='||lp_user_resp_id);
207: debug (l_module_name, 'lp_resp_appl_id='||lp_resp_appl_id);
208: debug (l_module_name, 'lc_int_industry='||lc_int_industry);
209: fnd_profile.get_specific
210: (
211: 'INDUSTRY',
212: lp_user_id,
213: lp_user_resp_id,

Line 242: fnd_profile.get('USER_ID',ln_userid);

238: END IF;
239: END IF;
240:
241: --
242: fnd_profile.get('USER_ID',ln_userid);
243: fnd_profile.get('ATTRIBUTE_REPORTING',lc_rep_profile);
244: IF lc_rep_profile = 'N' THEN
245: lc_err_message := 'The Value for the Profile Option: ATTRIBUTE REPORTING is not set ';
246: error (l_module_name, lc_err_message);

Line 243: fnd_profile.get('ATTRIBUTE_REPORTING',lc_rep_profile);

239: END IF;
240:
241: --
242: fnd_profile.get('USER_ID',ln_userid);
243: fnd_profile.get('ATTRIBUTE_REPORTING',lc_rep_profile);
244: IF lc_rep_profile = 'N' THEN
245: lc_err_message := 'The Value for the Profile Option: ATTRIBUTE REPORTING is not set ';
246: error (l_module_name, lc_err_message);
247: RAISE lexp_error;

Line 1031: fnd_profile.get('USER_ID',ln_userid);

1027: ----------------------------------------------------------------------
1028: --Perform the Validation to Check for the Reporting Attributes Profile
1029: ----------------------------------------------------------------------
1030: BEGIN
1031: fnd_profile.get('USER_ID',ln_userid);
1032: ln_last_updated_by := to_number(ln_userid);
1033: IF ln_userid is NULL THEN
1034: lc_err_message := 'The Value for the Profile Option: USERID is NULL ';
1035: RAISE lexp_error;

Line 1038: fnd_profile.get('ATTRIBUTE_REPORTING',lc_rep_profile);

1034: lc_err_message := 'The Value for the Profile Option: USERID is NULL ';
1035: RAISE lexp_error;
1036: END IF;
1037: --
1038: fnd_profile.get('ATTRIBUTE_REPORTING',lc_rep_profile);
1039: --
1040: IF lc_rep_profile = 'N' THEN
1041: lc_err_message := 'The Value for the Profile Option: ATTRIBUTE REPORTING is not set ';
1042: RAISE lexp_error;

Line 1054: FND_PROFILE.GET_SPECIFIC('INDUSTRY',

1050: lp_resp_appl_id := FND_GLOBAL.RESP_APPL_ID;
1051: lp_user_resp_id := FND_GLOBAL.RESP_ID;
1052: lp_user_id := FND_GLOBAL.USER_ID;
1053:
1054: FND_PROFILE.GET_SPECIFIC('INDUSTRY',
1055: lp_user_id,
1056: lp_user_resp_id,
1057: lp_resp_appl_id,
1058: lc_int_industry,