In RTC (Microsoft Dynamic Nav 2009 SP1) I try to Export Budget to Excel apparently in the Options section for the Column Dimension field i m not able to select any Dimension.
Hi yes I applied last Hotfix (6.0.32029) to NAV 2009 SP1 and experienced the same issue.
If you run the Export to Budget you cannot tick the Column Dimensions in the RTC Page.
A work around is to comment out the Lookupmode for the DimSelectionMultiple page Variable.
Table 368 Function SetDimSelectionMultiple()
//IBA1.00 DimSelectionMultiple.LOOKUPMODE := TRUE; //IBA1.00 IF DimSelectionMultiple.RUNMODAL = ACTION::LookupOK THEN BEGIN
IF DimSelectionMultiple.RUNMODAL = ACTION::LookupOK THEN; //IBA1.00
DimSelectionMultiple.GetDimSelBuf(TempDimSelectionBuf);
SetDimSelection(ObjectType,ObjectID,'',SelectedDimText,TempDimSelectionBuf); //END;
Comments
If you run the Export to Budget you cannot tick the Column Dimensions in the RTC Page.
A work around is to comment out the Lookupmode for the DimSelectionMultiple page Variable.
Table 368 Function SetDimSelectionMultiple()
//IBA1.00 DimSelectionMultiple.LOOKUPMODE := TRUE;
//IBA1.00 IF DimSelectionMultiple.RUNMODAL = ACTION::LookupOK THEN BEGIN
IF DimSelectionMultiple.RUNMODAL = ACTION::LookupOK THEN; //IBA1.00
DimSelectionMultiple.GetDimSelBuf(TempDimSelectionBuf);
SetDimSelection(ObjectType,ObjectID,'',SelectedDimText,TempDimSelectionBuf);
//END;
Not idea but I think its Hotfix related.