Has anyone tried this or is there an example of how to start a mapping using Application Engine?
Hi Daniel,
it's pretty simple. Here are the examples.
For hierarchies
void ExecuteHierarchyMapping(string ApplicationUniqueName, string MappingUniqueName)@Description: "...";@Category: "...";@Parameter[ApplicationUniqueName]: "Mandatory - Application Unique Name";@Parameter[MappingUniqueName]: "Mandatory - Hierarchy Mapping Unique Name";
{
ModelingExecuteHierarchyMapping(ApplicationUniqueName, MappingUniqueName);
}
For facts
void ExecuteFactMapping(string ApplicationUniqueName, string MappingUniqueName)@Description: "...";@Category: "...";@Parameter[ApplicationUniqueName]: "Mandatory - Application Unique Name";@Parameter[MappingUniqueName]: "Mandatory - Fact Mapping Unique Name";
ModelingExecuteFactMapping(ApplicationUniqueName, MappingUniqueName);
You can find more about modeling functions here in the documentation.
Best,
Standa
I already use it both, Hierarchy and Fact-Mappings.
Pretty easy and works fine, as Standa described.
However, too bad that there is no return status of these functions, so actually you have no information if the mapping finally was successful or not.
Regards,
Ralf
Hi Stanislav
Perfect. Thank you!!
I will try it as soon as my mapping works without any error message.
At the moment I am still struggling with the base table or my idea of how it should work.Do you have much experience with building the mappings?