DBA Data[Home] [Help]

APPS.IEX_DUNNING_PLANS_PKG dependencies on IEX_DUNNING_PLANS_PKG

Line 1: package body IEX_DUNNING_PLANS_PKG as

1: package body IEX_DUNNING_PLANS_PKG as
2: /* $Header: iextdplb.pls 120.0 2005/07/09 21:55:04 ctlee noship $ */
3: procedure INSERT_ROW (
4: X_ROWID in out nocopy VARCHAR2,
5: x_dunning_plan_id in NUMBER,

Line 382: iex_dunning_plans_pkg.UPDATE_ROW (

378: row_id varchar2(64);
379: l_dunning_plan_id NUMBER;
380: begin
381:
382: iex_dunning_plans_pkg.UPDATE_ROW (
383: x_dunning_plan_id => x_dunning_plan_id,
384: x_name => x_name,
385: x_description => x_description,
386: x_START_DATE => x_start_date,

Line 405: iex_dunning_plans_pkg.INSERT_ROW (

401: );
402: exception
403: when NO_DATA_FOUND then
404: l_dunning_plan_id := x_dunning_plan_id;
405: iex_dunning_plans_pkg.INSERT_ROW (
406: x_rowid => row_id,
407: x_dunning_plan_id => l_dunning_plan_id,
408: x_name => x_name,
409: x_description => x_description,

Line 430: end iex_dunning_plans_pkg;

426:
427: end;
428: end LOAD_ROW;
429:
430: end iex_dunning_plans_pkg;