Hi all, Today i was trying DIXF, i want to import financial dimension (entity = dimension) from excel into AX (new legal entity). When i'm in stage "Copy data to target", the job brings me to debug mode, showing me this message : /// /// Checks whether a referenced dimension attribute can be categorized. /// /// /// The dimension attribute record ID to validate. /// /// /// true if the dimension attribute is valid; otherwise, false. /// private static server boolean isDimensionAttributeValid(recId _dimensionAttributeRecId) { DimensionAttribute dimAttribute; select firstonly Type from dimAttribute where dimAttribute.RecId == _dimensionAttributeRecId; if (dimAttribute.Type != DimensionAttributeType::CustomList) { // Only dimension attributes backed by the DimensionFinancialTag table (CustomLists) can be categorized. Do not write the record. Debug::assert(false); return false; } return true; } What's up with that? How can i solved it? Thanks.
↧