Hello!
I have two agent one for inbound and one for outbound.
The one for inbound is called ProjektAgentPerson and the other is called
ProjektAgentHomeDirectory.
In the ProjektAgentPerson agent I set this
case "startdatum" :
mventry["startdatum"].Value = csentry["startdatum"].Value;
break;
in method void IMASynchronization.MapAttributesForImport( string FlowRuleName, CSEntry csentry, MVEntry mventry)
This works good and mventry["startdatum"].Value will get a value
But in agent ProjektHomeDirectory method
void IMASynchronization.MapAttributesForExport (string FlowRuleName, MVEntry mventry, CSEntry csentry)
When I do this bool b = mventry["startdatum"].IsPresent;
I get this error
get Attribute "startdatum" is not declared as a dependency.
If I look in MV I can clearly see that startdatum has a value
I can't understand this. How on earth can I get error when attribute has a value in MV.
//Tony