Reputation: 5
When I try to register a custom service, I get this error.
Runtime Error Code: AifSchemaStore (table), no valid executable code in method 'getCachedSchema.
Stack trace:
(S)\Data Dictionary\Tables\AifSchemaStore\Methods\getCachedSchema (S)\Data Dictionary\Tables\AifSchemaStore\Methods\getDocumentSchema - line 16 (S)\Classes\AifSchemaInfo\parmSchemaXml - line 19 (S)\Classes\AifSchemaRepository\getSharedTypesXmlSchema - line 9 (S)\Classes\AifServiceGenerationManager\registerService - line 43 (S)\Classes\AifServiceGenerationManager\main - line 20
So I can't deploy it.
Upvotes: 0
Views: 410
Reputation: 1151
You probably have customizations to the AIF macro that are not merged correctly after installing a CU.
#define.AifSchemaStore_SchemaCacheScope ('AifSchemaStore_SchemaCache')
Compile the AifSchemaStore
table and the error should be gone.
You should probably check all of your customizations if they need upgrading.
Also do a full compile of your code and generate Full CIL, otherwise you'll have a ton of problems (at least do a compile of the AifSchemaStore
table and an incremental CIL).
Upvotes: 2