DBA Data[Home] [Help]

APPS.FND_RESPONSIBILITY_PKG dependencies on FND_DATA_GROUP_UNITS

Line 693: from fnd_data_group_units dgu, fnd_data_groups dg, fnd_application a

689:
690: begin
691: select dgu.data_group_id, dgu.application_id
692: into dataGroup_Id, dataGroupApp_id
693: from fnd_data_group_units dgu, fnd_data_groups dg, fnd_application a
694: where dgu.data_group_id = dg.data_group_id
695: and dg.data_group_name = X_DATA_GROUP_NAME
696: and dgu.application_id = a.application_id
697: and a.application_short_name = X_DATA_GROUP_APP_SHORT_NAME;

Line 701: fnd_message.set_token('TABLE', 'FND_DATA_GROUP_UNITS');

697: and a.application_short_name = X_DATA_GROUP_APP_SHORT_NAME;
698: exception
699: when no_data_found then
700: fnd_message.set_name('FND', 'SQL_NO_DATA_FOUND');
701: fnd_message.set_token('TABLE', 'FND_DATA_GROUP_UNITS');
702: fnd_message.set_token('COLUMN',
703: '(DATA_GROUP_NAME, DATA_GROUP_APP_SHORT_NAME)');
704: fnd_message.set_token('VALUE', '('||X_DATA_GROUP_NAME||', '||
705: X_DATA_GROUP_APP_SHORT_NAME||')');