51: l_industry varchar2(30);
52:
53: begin
54:
55: if fnd_installation.get_app_info('ISC', l_status, l_industry, l_isc_schema) then
56: x_schema_name := l_isc_schema;
57: else
58: x_error_message := 'FND_INSTALLATION.GET_APP_INFO returned false';
59: return -1;
54:
55: if fnd_installation.get_app_info('ISC', l_status, l_industry, l_isc_schema) then
56: x_schema_name := l_isc_schema;
57: else
58: x_error_message := 'FND_INSTALLATION.GET_APP_INFO returned false';
59: return -1;
60: end if;
61:
62: return 0;