Posts

Showing posts from May, 2018

X++ code to get Financial Dimensions in D365FO

  public void getFinancialDimensions()     {        DimensionAttributeValueSet  dimAttrValueSet;         DimensionAttributeValueSetItem  dimAttrValueSetItem;         DimensionAttributeValue     dimAttrValue;         DimensionAttribute          dimAttribute;         LedgerJournalTable          ledgerJourTable;         VendTable                   vendTable;         CustTable                   custTable;               ledgerJourTable = LedgerJournalTable::find('');//JournalNum         vendTable = VendTable::find('');//AccountNum         custTable = CustTable::find('');//Accoun...