Skip to main content

How to fix AX 2009 AIF Service Operation error "there is no schema associated with the specified class."

We usually get this error message when we do a data refresh from PROD to TEST / QA or DEV environments.

The Schema document for AIF Service Operations stored in a table called "AifSchemaStore" and  the reference data stored in "AifDocumentSchemaTable".

1. AifDocumentSchemaTable : - https://msdn.microsoft.com/en-us/library/aifdocumentschematable.aspx

2. AifSchemaStore : - https://msdn.microsoft.com/en-us/library/aifschemastore.aspx

So when we do a data refresh I think sometimes the refRecid's wont synch (Which is happened in my environment).

Fix : So I found the record in AifDocumentSchemaTable using the AIF ClassId and deleted that record, then I re generated the service (Basic >> Setup >> AIF >> Service >> Click on Generate.

It recreated the new schema and stored in the AifSchemaStore and linked to AifDocumentSchemaTable record.

Then everything worked fine.

Note : This will also adds the service in Configuration screen too. You can better try this if you miss the service in AIF configuration screen.

This is only an advice to fix this issue, but try this at your own risk.


Comments

  1. One of the new gambling formats. Players can gamble with other players via the internet. Golden slot Players must use devices that can connect to the Internet, such as computers and smart phones. To play through the website of the provider by playing online betting. Anyone who is able to play or bet. But yes, everyone can. Online gambling is a profitable business because gambling is a must have is a common thing. But there are some people that are suitable for playing. Gambling Online If these people have to play it. Always make a profit. The amount of money to play a lot. Then how do people look to be suitable for online gambling? Online casino pioneered gambling. สล็อตออนไลน์ Baccarat Online Through the site, live gambler games with Real Dealer Direct from GClub Six Six Nine Casino Players via the website in Thailand are the first casino that do not need to download, install. Online gambling is open 24 hours a day, more exciting online gambling.

    ReplyDelete
  2. Hey, did you know you can change your business for the better just by going for microsoft dynamics 365 - Anegis Consulting will help you with the implementation and support you after it's done. See it yourself!

    ReplyDelete

Post a Comment

Popular posts from this blog

Using File path on a form getting Error in Axapta

Hi Folks, After a long time am coming  back to posting few new things here for AX Developer... When we want to select the file path in form level. Normally what we will do create one EDT and extends with filepath (EDT), but that time when you are trying to select the path we will get error like stack-trace/Error message .Don’t worry there is no problem with your ax application. Simple we need to provide the method to the form like filepathLookUpTitle (). Below method we need to add it into form level methods, i.e. str filePathLookupTitle() {     return "Select document folder"; } Thanks Happy Daxing....

How to add Filter functionality to Display method in dynamics AXAPTA

Hi Friends, Normally filters will work only in table fields but we can't do filters to display method. This below code will work for filters to display method also. Step 1: Go to the form design right click on particular control properties Auto Declaration No to Yes. Step 2: Override the context() method on the display method  . public void context() {     int             selectedMenu;     formrun         fr;     Args            ag;     Name            strtext;     querybuilddataSource qb1;     queryrun    qr;     query       q;     PopupMenu menu = new PopupMenu(element.hWnd());     int a = menu.insertItem('Filter By Field');     int b = menu.insertItem('Filter By Selection');     i...

Split string useing List in AX2009

static void Job277(Args _args) {     List _list = new List(Types::String);     Container packedList;     ListIterator iterator;     str cade = "Jhon*,smt*,and*,caro*";     ;     _list = Global::strSplit(cade,",");     iterator = new ListIterator(_list);     while(iterator.more())     {         packedList += iterator.value();         iterator.next();     }     info(conpeek(packedList,2));     info(strfmt("%1",conlen(packedList)));   }