DBA Data[Home] [Help]

APPS.GL_BC_OPTIONS_PKG dependencies on GL_BC_OPTIONS_PKG

Line 1: PACKAGE BODY gl_bc_options_pkg AS

1: PACKAGE BODY gl_bc_options_pkg AS
2: /* $Header: glnlsbcb.pls 120.5 2005/05/05 02:06:55 kvora ship $ */
3:
4: Procedure load_row(
5: x_bc_option_id in number,

Line 58: gl_bc_options_pkg.update_row(

54:
55: /* Update only if force_edits is 'Y' or it is seed data */
56: if ((x_force_edits = 'Y') OR (x_owner = 'SEED')) THEN
57: -- update row if present
58: gl_bc_options_pkg.update_row(
59: x_row_id => v_rowid ,
60: x_bc_option_id => x_bc_option_id,
61: x_bc_option_name => x_bc_option_name,
62: x_description => x_description,

Line 88: gl_bc_options_pkg.insert_row(

84: end if;
85:
86: exception
87: when NO_DATA_FOUND then
88: gl_bc_options_pkg.insert_row(
89: x_row_id => v_rowid ,
90: x_bc_option_id => x_bc_option_id,
91: x_bc_option_name => x_bc_option_name,
92: x_description => x_description,

Line 327: end gl_bc_options_pkg;

323: close bc_option_row;
324:
325: end insert_row;
326:
327: end gl_bc_options_pkg;