DBA Data[Home] [Help]

APPS.GL_REP_ATTRIBUTES dependencies on FND_PROFILE

Line 150: FND_PROFILE.GET_SPECIFIC('INDUSTRY',

146: lp_resp_appl_id := FND_GLOBAL.RESP_APPL_ID;
147: lp_user_resp_id := FND_GLOBAL.RESP_ID;
148: lp_user_id := FND_GLOBAL.USER_ID;
149:
150: FND_PROFILE.GET_SPECIFIC('INDUSTRY',
151: lp_user_id,
152: lp_user_resp_id,
153: lp_resp_appl_id,
154: lc_int_industry,

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

174:
175: END IF;
176:
177: --
178: fnd_profile.get('USER_ID',ln_userid);
179: fnd_profile.get('ATTRIBUTE_REPORTING',lc_rep_profile);
180: IF lc_rep_profile = 'N' THEN
181: lc_err_message := 'The Value for the Profile Option: ATTRIBUTE REPORTING is not set ';
182: RAISE lexp_error;

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

175: END IF;
176:
177: --
178: fnd_profile.get('USER_ID',ln_userid);
179: fnd_profile.get('ATTRIBUTE_REPORTING',lc_rep_profile);
180: IF lc_rep_profile = 'N' THEN
181: lc_err_message := 'The Value for the Profile Option: ATTRIBUTE REPORTING is not set ';
182: RAISE lexp_error;
183: END IF;

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

618: ----------------------------------------------------------------------
619: --Perform the Validation to Check for the Reporting Attributes Profile
620: ----------------------------------------------------------------------
621: BEGIN
622: fnd_profile.get('USER_ID',ln_userid);
623: ln_last_updated_by := to_number(ln_userid);
624: IF ln_userid is NULL THEN
625: lc_err_message := 'The Value for the Profile Option: USERID is NULL ';
626: RAISE lexp_error;

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

625: lc_err_message := 'The Value for the Profile Option: USERID is NULL ';
626: RAISE lexp_error;
627: END IF;
628: --
629: fnd_profile.get('ATTRIBUTE_REPORTING',lc_rep_profile);
630: --
631: IF lc_rep_profile = 'N' THEN
632: lc_err_message := 'The Value for the Profile Option: ATTRIBUTE REPORTING is not set ';
633: RAISE lexp_error;

Line 645: FND_PROFILE.GET_SPECIFIC('INDUSTRY',

641: lp_resp_appl_id := FND_GLOBAL.RESP_APPL_ID;
642: lp_user_resp_id := FND_GLOBAL.RESP_ID;
643: lp_user_id := FND_GLOBAL.USER_ID;
644:
645: FND_PROFILE.GET_SPECIFIC('INDUSTRY',
646: lp_user_id,
647: lp_user_resp_id,
648: lp_resp_appl_id,
649: lc_int_industry,