Ég hef verið að vinna með BDC dag, coding ADF files by hand and generating myself some errors. One such error:
Umsókn skýring innflutningur mistókst. Eftirfarandi villa kom upp: Gat ekki hlaðið lýst með TypeName TypeDescriptor er. Viðfang nafn: typeName Villa kom upp við eða rétt fyrir Line: '35’ og afstaða: ’20’.
MOSS displayed this error when I tried to import the ADF XML file.
I researched the Internets and found that I was referencing the LOB instance name (from the <LobSystemInstance>) in my <TypeDescriptor> node when I should have referenced the LOB name itself (frá <LobSystem>).
Wrong:
<TypeDescriptor TypeName="Conchango.KeyValue, LOB Instance Name" Name="KeyValue">
Correct:
<TypeDescriptor TypeName="Conchango.KeyValue, LOB Name" Name="KeyValue">
Hope this one saves someone an hour or two of time.
</enda>
Gerast áskrifandi að bloggið mitt!
Takk
I got this error. But my TypeDescriptor was pointing to the LOBName not the LOB instance. So no idea of what is wrong. I searched the entire solution for this. No use.