DBA Data[Home] [Help]

APPS.FND_RESPONSIBILITY_PKG dependencies on FND_RESPONSIBILITY_PKG

Line 1: package body FND_RESPONSIBILITY_PKG as

1: package body FND_RESPONSIBILITY_PKG as
2: /* $Header: AFSCRSPB.pls 120.4.12010000.4 2010/03/23 18:42:34 jvalenti ship $ */
3:
4:
5: procedure INSERT_ROW (

Line 141: fnd_responsibility_pkg.translate_row(

137: appl_id number;
138: resp_id number;
139: begin
140:
141: fnd_responsibility_pkg.translate_row(
142: X_APP_SHORT_NAME => X_APP_SHORT_NAME,
143: X_RESP_KEY => X_RESP_KEY,
144: X_RESPONSIBILITY_NAME => X_RESPONSIBILITY_NAME,
145: X_DESCRIPTION => X_DESCRIPTION,

Line 215: fnd_responsibility_pkg.resp_synch(appl_id, resp_id);

211: from fnd_responsibility
212: where responsibility_key = X_RESP_KEY
213: and application_id = appl_id;
214:
215: fnd_responsibility_pkg.resp_synch(appl_id, resp_id);
216: end if;
217: exception
218: when no_data_found then
219: null;

Line 245: fnd_responsibility_pkg.load_row(

241: X_WEB_HOST_NAME in VARCHAR2,
242: X_WEB_AGENT_NAME in VARCHAR2 )
243: is
244: begin
245: fnd_responsibility_pkg.load_row(
246: X_APP_SHORT_NAME => X_APP_SHORT_NAME,
247: X_RESP_KEY => upper(X_RESP_KEY),
248: X_RESPONSIBILITY_ID => X_RESPONSIBILITY_ID,
249: X_RESPONSIBILITY_NAME => X_RESPONSIBILITY_NAME,

Line 290: fnd_responsibility_pkg.load_row(

286: X_CUSTOM_MODE in VARCHAR2,
287: X_LAST_UPDATE_DATE in VARCHAR2 )
288: is
289: begin
290: fnd_responsibility_pkg.load_row(
291: X_APP_SHORT_NAME => X_APP_SHORT_NAME,
292: X_RESP_KEY => upper(X_RESP_KEY),
293: X_RESPONSIBILITY_NAME => X_RESPONSIBILITY_NAME,
294: X_OWNER => X_OWNER,

Line 816: fnd_responsibility_pkg.UPDATE_ROW (

812: and APPLICATION_ID = app_id;
813:
814: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
815: db_ludate, X_CUSTOM_MODE)) then
816: fnd_responsibility_pkg.UPDATE_ROW (
817: X_RESPONSIBILITY_ID => resp_id,
818: X_APPLICATION_ID => app_id,
819: X_WEB_HOST_NAME => L_WEB_HOST_NAME,
820: X_WEB_AGENT_NAME => L_WEB_AGENT_NAME,

Line 846: fnd_responsibility_pkg.INSERT_ROW(

842: into resp_id
843: from sys.dual;
844: end if;
845:
846: fnd_responsibility_pkg.INSERT_ROW(
847: X_ROWID => row_id,
848: X_RESPONSIBILITY_ID => resp_id,
849: X_APPLICATION_ID => app_id,
850: X_WEB_HOST_NAME => L_WEB_HOST_NAME,

Line 871: end FND_RESPONSIBILITY_PKG;

867: X_LAST_UPDATE_LOGIN => 0 );
868: end;
869: end LOAD_ROW;
870:
871: end FND_RESPONSIBILITY_PKG;