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.3.12000000.2 2007/03/16 23:27:12 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 => 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 => X_RESP_KEY,
293: X_RESPONSIBILITY_NAME => X_RESPONSIBILITY_NAME,
294: X_OWNER => X_OWNER,

Line 811: fnd_responsibility_pkg.UPDATE_ROW (

807: and APPLICATION_ID = app_id;
808:
809: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
810: db_ludate, X_CUSTOM_MODE)) then
811: fnd_responsibility_pkg.UPDATE_ROW (
812: X_RESPONSIBILITY_ID => resp_id,
813: X_APPLICATION_ID => app_id,
814: X_WEB_HOST_NAME => L_WEB_HOST_NAME,
815: X_WEB_AGENT_NAME => L_WEB_AGENT_NAME,

Line 841: fnd_responsibility_pkg.INSERT_ROW(

837: into resp_id
838: from sys.dual;
839: end if;
840:
841: fnd_responsibility_pkg.INSERT_ROW(
842: X_ROWID => row_id,
843: X_RESPONSIBILITY_ID => resp_id,
844: X_APPLICATION_ID => app_id,
845: X_WEB_HOST_NAME => L_WEB_HOST_NAME,

Line 866: end FND_RESPONSIBILITY_PKG;

862: X_LAST_UPDATE_LOGIN => 0 );
863: end;
864: end LOAD_ROW;
865:
866: end FND_RESPONSIBILITY_PKG;