DBA Data[Home] [Help]

APPS.FND_PROFILE_OPTIONS_PKG dependencies on FND_PROFILE_OPTIONS_PKG

Line 1: package body FND_PROFILE_OPTIONS_PKG as

1: package body FND_PROFILE_OPTIONS_PKG as
2: /* $Header: AFPOMPOB.pls 120.4 2008/01/24 16:14:07 pdeluna ship $ */
3:
4: -- ### OVERLOADED!
5: procedure INSERT_ROW (

Line 185: fnd_profile_options_pkg.INSERT_ROW(

181: X_ORG_ENABLED_FLAG in VARCHAR2 default 'N',
182: X_ORG_UPDATE_ALLOWED_FLAG in VARCHAR2 default 'N'
183: ) is
184: begin
185: fnd_profile_options_pkg.INSERT_ROW(
186: X_ROWID => X_ROWID,
187: X_PROFILE_OPTION_NAME => X_PROFILE_OPTION_NAME,
188: X_APPLICATION_ID => X_APPLICATION_ID,
189: X_PROFILE_OPTION_ID => X_PROFILE_OPTION_ID,

Line 251: fnd_profile_options_pkg.LOCK_ROW(

247: X_ORG_ENABLED_FLAG in VARCHAR2 default 'N',
248: X_ORG_UPDATE_ALLOWED_FLAG in VARCHAR2 default 'N'
249: ) is
250: begin
251: fnd_profile_options_pkg.LOCK_ROW(
252: X_PROFILE_OPTION_NAME => X_PROFILE_OPTION_NAME,
253: X_APPLICATION_ID => X_APPLICATION_ID,
254: X_PROFILE_OPTION_ID => X_PROFILE_OPTION_ID,
255: X_WRITE_ALLOWED_FLAG => X_WRITE_ALLOWED_FLAG,

Line 578: fnd_profile_options_pkg.update_row(

574: ) is
575:
576: begin
577:
578: fnd_profile_options_pkg.update_row(
579: X_PROFILE_OPTION_NAME => X_PROFILE_OPTION_NAME,
580: X_APPLICATION_ID => X_APPLICATION_ID,
581: X_PROFILE_OPTION_ID => X_PROFILE_OPTION_ID,
582: X_WRITE_ALLOWED_FLAG => X_WRITE_ALLOWED_FLAG,

Line 647: fnd_profile_options_pkg.update_row(

643: X_SERVERRESP_ENABLED_FLAG in VARCHAR2,
644: X_SERVERRESP_UPD_ALLOW_FL in VARCHAR2
645: ) is
646: begin
647: fnd_profile_options_pkg.update_row(
648: X_PROFILE_OPTION_NAME => X_PROFILE_OPTION_NAME ,
649: X_APPLICATION_ID => X_APPLICATION_ID ,
650: X_PROFILE_OPTION_ID => X_PROFILE_OPTION_ID ,
651: X_WRITE_ALLOWED_FLAG => X_WRITE_ALLOWED_FLAG ,

Line 868: FND_PROFILE_OPTIONS_PKG.UPDATE_ROW (

864: end if;
865: end if;
866:
867: -- invoke table handler to update the profile
868: FND_PROFILE_OPTIONS_PKG.UPDATE_ROW (
869: X_PROFILE_OPTION_NAME => prof_name,
870: X_APPLICATION_ID => profname_val.application_id,
871: X_PROFILE_OPTION_ID => profname_val.profile_option_id,
872: X_WRITE_ALLOWED_FLAG => profname_val.WRITE_ALLOWED_FLAG,

Line 909: fnd_profile_options_pkg.translate_row(

905: x_owner in varchar2,
906: x_user_profile_option_name in varchar2,
907: x_description in varchar2) is
908: begin
909: fnd_profile_options_pkg.translate_row(
910: x_profile_name => x_profile_name,
911: x_owner => x_owner,
912: x_user_profile_option_name => x_user_profile_option_name,
913: x_description => x_description,

Line 991: fnd_profile_options_pkg.load_row(

987: x_end_date_active in varchar2,
988: x_sql_validation in varchar2)
989: is
990: begin
991: fnd_profile_options_pkg.load_row(
992: x_profile_name => x_profile_name,
993: x_owner => x_owner,
994: x_application_short_name => x_application_short_name,
995: x_user_profile_option_name => x_user_profile_option_name,

Line 1052: fnd_profile_options_pkg.load_row(

1048: x_org_enabled_flag in varchar2,
1049: x_org_update_allowed_flag in varchar2)
1050: is
1051: begin
1052: fnd_profile_options_pkg.load_row(
1053: x_profile_name => x_profile_name,
1054: x_owner => x_owner,
1055: x_application_short_name => x_application_short_name,
1056: x_user_profile_option_name => x_user_profile_option_name,

Line 1199: fnd_profile_options_pkg.update_row(

1195:
1196: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
1197: db_ludate, X_CUSTOM_MODE)) then
1198:
1199: fnd_profile_options_pkg.update_row(
1200: x_profile_option_name=> L_PROFILE_OPTION_NAME,
1201: x_application_id => app_id,
1202: x_profile_option_id => profo_id,
1203: x_write_allowed_flag => x_write_allowed_flag,

Line 1238: fnd_profile_options_pkg.insert_row (

1234: select fnd_profile_options_s.nextval
1235: into profo_id
1236: from dual;
1237:
1238: fnd_profile_options_pkg.insert_row (
1239: x_rowid => row_id,
1240: x_profile_option_name => L_PROFILE_OPTION_NAME,
1241: x_application_id => app_id,
1242: x_profile_option_id => profo_id,

Line 1502: end FND_PROFILE_OPTIONS_PKG;

1498: when no_data_found then
1499: return;
1500: END UPDATE_CAT_OPTIONS_APPL_ID;
1501:
1502: end FND_PROFILE_OPTIONS_PKG;