DBA Data[Home] [Help]

APPS.PSP_SUB_LINE_REASONS_PKG dependencies on APP_EXCEPTION

Line 32: app_exception.raise_exception;

28: X_LAST_UPDATE_LOGIN := -1;
29: end if;
30: else
31: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
32: app_exception.raise_exception;
33: end if;
34: insert into PSP_SUB_LINE_REASONS (
35: PAYROLL_SUB_LINE_ID,
36: REASON_CODE,

Line 82: app_exception.raise_exception;

78: open c1;
79: fetch c1 into tlinfo;
80: if (c1%notfound) then
81: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
82: app_exception.raise_exception;
83: close c1;
84: return;
85: end if;
86: close c1;

Line 93: app_exception.raise_exception;

89: ) then
90: null;
91: else
92: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
93: app_exception.raise_exception;
94: end if;
95: return;
96: end LOCK_ROW;
97:

Line 123: app_exception.raise_exception;

119: X_LAST_UPDATE_LOGIN := -1;
120: end if;
121: else
122: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
123: app_exception.raise_exception;
124: end if;
125: update PSP_SUB_LINE_REASONS set
126: PARENT_LINE_ID = X_PARENT_LINE_ID,
127: LAST_UPDATE_DATE = X_LAST_UPDATE_DATE,