18.04.2011, 11:52 | #21 |
Moderator
|
Цитата:
Сообщение от George Nordic
Сергей. Разработчики могут называть объекты, как им заблагорассудится. На то и ставят ведущих, которые обучают новичков и контролируют качество кода и соблюдение BestPractises. А когда дело касается столь существенных изменений, то всем заправляет Архитектор Системы - именно он отвечает за правильную работу всей функциональности, корректность взаимосвязей и т.п. И я не верю, что на таком уровне может твориться подобный бардак. Или так было задуманно специально, и последуют изменения ВР в части именования объектов, или дело не в разработчиках, а в архитекторах. Но это было бы крайне печально....
С Уважением, Георгий |
|
18.04.2011, 12:34 | #22 |
Administrator
|
Цитата:
Сам общий журнал (LedgerJournalTable) получается "переехал" в GeneralJournalEntry (general journal header). Опять-таки - а чтобы Ledger не вынести в начало? Допускаю, что у этой таблицы могут быть наследники (типа InventJournalTable). Ну пусть тогда будет начинаться с Journal, т.к. определяющим в данном случае является Journal, а не General. Т.е варианты: JournalEntryTable или LedgerJournalEntryTable. Связь между ваучером (надо пойти почитать мануал на эту тему) и общим журналом (SubledgerVoucherGeneralJournalEntry) опять-таки просится как LedgerJournalVourcherEntry или LedgerJournalVoucherEntryLink. В любом случае хочется оставить начало LedgerJournal,
__________________
Возможно сделать все. Вопрос времени |
|
18.04.2011, 12:43 | #23 |
Axapta
|
Цитата:
Accounting distributions and subledger journal entries are the foundational pieces of the new accounting framework. Accounting distributions enable a user to define how amounts on a source document impact account balances, such as ledger accounts in General ledger or projects. A subledger journal entry is the accounting entry created for a source document. The subledger journal entry remains in the subledger and can be previewed before a source document is journalized.
With the addition of subledger journal entries, additional performance optimization and summarization rules can be defined for the transfer of the subledger journal entries to General ledger. The transfer process can be defined to occur synchronously or asynchronously. During the transfer process, a user also has the option to summarize the subledger journal entries for similar source documents to reduce the quantity of data in General ledger. ... New functionality Before you journalize a source document, you can preview the accounting entry to verify that the amounts are being journalized to the correct ledger accounts. This view of the accounting entry is called a subledger journal entry. ... New terminology is used in Microsoft Dynamics AX 2012, as shown in the following table. Journalize - To record a documented business event in the subledger journal. Post - To record the monetary value of an economic event in a specific account, or to summarize and reclassify general and subsidiary journal account entries into general and subsidiary ledger account entries. Source document - An original record that evidences the occurrence of one or more business events. Journal entry - A record of a business event. Transaction - A social or physical economic exchange action. |
|
|
За это сообщение автора поблагодарили: Михаил Андреев (5), mazzy (5), sukhanchik (5). |
18.04.2011, 13:05 | #24 |
Участник
|
Цитата:
Вот, например, цитата: Axapta standard Prefix: "Tmp" for temporary tables + Module short name, for example TmpCustLedger. Infix: Logical description of contents, for example CustCollectionLetterTrans. The postfix typically denotes the type of contents, for example *Trans, *Jour, *Line. The primary tables for the major business areas are postfixed with the word “table”. Examples are CustTable InventTableLedgerTable ProjTable VendTable VendTrans Не помню, где-то ещё видел... |
|
18.04.2011, 13:29 | #25 |
Administrator
|
Не... я имел в виду не это. Принцип именования - да, был. А вот большого талмута какая таблица за что отвечает - не было. А сейчас получается - что без документации (талмута), ориентируясь только на принцип именования таблиц - ее назначение непонятно.
__________________
Возможно сделать все. Вопрос времени |
|
18.04.2011, 13:37 | #26 |
MCT
|
Коллеги бы же документ AX40datamodel_ru.doc.
В нем общие модули описывались. Где бы получить новый документ по 2012? Я бы перевел...
__________________
Axapta book for developer |
|
|
За это сообщение автора поблагодарили: mazzy (2). |
18.04.2011, 13:46 | #27 |
Moderator
|
Цитата:
То есть - это не было частью нормального релиза программного продукта, а просто некоторым экстроординарным проектом, предпринятым только для того чтобы успокоить конкретного клиента. Так что я бы не стал ждать чего-то подобного для очередной версии. (Могу ошибаться). |
|
18.04.2011, 13:59 | #28 |
Administrator
|
Документ был по 4.0 и разовый, как верно заметил fed. Но не по 3.0
__________________
Возможно сделать все. Вопрос времени |
|
19.10.2013, 17:24 | #29 |
MCT
|
Подумал, что логично будет в этот раскрученный топик закинуть инфу по расчету курса
X++: static void ExchangeRate(Args _args) { // from CurrencyExchangeHelper class CurrencyExchangeHelper currencyExchangeHelper; TransDate transactionDate = today(); CurrencyCode transactionCurrency = 'USD'; AmountCur amountToConvert = 100.50; boolean shouldRoundResult = true; AmountMst result; currencyExchangeHelper = CurrencyExchangeHelper::newExchangeDate( Ledger::current(), transactionDate); result = currencyExchangeHelper.calculateTransactionToAccounting( transactionCurrency, amountToConvert, shouldRoundResult); info(strfmt("%1",result)); } X++: static void ExchangeRate2(Args _args) { ExchangeRateHelper exchangeRateHelper; TransDate transactionDate = today(); CurrencyCode transactionCurrency = 'USD'; CurrencyExchangeRate exchangeRate1; CurrencyExchangeRate exchangeRate2; exchangeRateHelper = ExchangeRateHelper::newExchangeDate( Ledger::current(), transactionCurrency, transactionDate); exchangeRate1 = exchangeRateHelper.getExchangeRate1(); exchangeRate2 = exchangeRateHelper.getExchangeRate2(); info (strfmt("ExchRate1= %1; ExchRate2= %2", exchangeRate1, exchangeRate2)); }
__________________
Axapta book for developer |
|
Теги |
ax2012, как правильно |
|
|