DBA Data[Home] [Help]

APPS.GL_PERIOD_TYPES_PKG dependencies on GL_PERIOD_TYPES_S

Line 102: fnd_message.set_token('TAB_S', 'GL_PERIOD_TYPES_S');

98:
99: IF chk_dups%FOUND THEN
100: CLOSE chk_dups;
101: fnd_message.set_name('SQLGL', 'GL_DUP_UNIQUE_ID');
102: fnd_message.set_token('TAB_S', 'GL_PERIOD_TYPES_S');
103: app_exception.raise_exception;
104: END IF;
105:
106: CLOSE chk_dups;

Line 118: select GL_PERIOD_TYPES_S.NEXTVAL

114:
115: PROCEDURE Get_New_Id(x_period_type IN OUT NOCOPY VARCHAR2) IS
116:
117: BEGIN
118: select GL_PERIOD_TYPES_S.NEXTVAL
119: into x_period_type
120: from dual;
121:
122: IF (x_period_type is NULL) THEN

Line 124: fnd_message.set_token('TAB_S', 'GL_PERIOD_TYPES_S');

120: from dual;
121:
122: IF (x_period_type is NULL) THEN
123: fnd_message.set_name('SQLGL', 'GL_SEQUENCE_NOT_FOUND');
124: fnd_message.set_token('TAB_S', 'GL_PERIOD_TYPES_S');
125: app_exception.raise_exception;
126: END IF;
127: EXCEPTION
128: WHEN app_exception.application_exception THEN RAISE;

Line 361: gl_period_types_s.nextval,

357: x_period_type,
358: x_number_per_fiscal_year ,
359: x_year_type_in_name ,
360: x_user_period_type ,
361: gl_period_types_s.nextval,
362: x_description ,
363: x_attribute1,
364: x_attribute2,
365: x_attribute3,