目前分類:ERP - Dynamics 365 ( AX) (115)
- Jan 24 Fri 2020 09:07
[Dynamics AX/365] Batch Job - 防止無限LOOP 轉成CONTINUE 完成再出LOG
- Dec 11 Wed 2019 14:43
[Dynamics AX/365] 查找有沒有此Query
public boolean validateWrite()
{
- Dec 11 Wed 2019 14:34
[Dynamics AX/365] 尋找/儲存 Table Field , 自訂 temp table 儲存指定Table的 FieldName, FieldId, FieldLable
public class DGS_FieldNameListTmp extends common
{
- Nov 26 Tue 2019 17:06
[Dynamics AX/365] 根據選擇轉換頁面內容
- Nov 26 Tue 2019 15:35
[Dynamic Ax/365] 查詢 Lookup Table Name
- Nov 04 Mon 2019 10:37
[Dynamic AX/365] UAT調試 Config Settings
- Nov 01 Fri 2019 12:06
[Dynamics AX/365] 還原無效的銷售訂單(還原SalesTableDelete)
- Oct 30 Wed 2019 12:47
[Dynamics AX/365] 刪除銷售訂單(Sales Order),保留在系統不會消失,繼續擁有歷史數據。
如果您不希望由於各種原因而刪除銷售訂單(Sales Order),AX中有一個很好的功能,可以將這些銷售訂單標記為無效(Voided)。 它使您能夠跟踪錯過的交易或任何原因,因為這些訂單仍將保留在系統中並且不會消失。 使用此功能,您將繼續擁有歷史數據。
轉到Accounts receivable > Setup > Accounts receivable parameters.。
- Oct 24 Thu 2019 14:27
[Dynamics AX/365]Application Explorer允許輕鬆進行篩選
AX 7中的Application Explorer允許輕鬆進行篩選,這非常有用。 它看起來很簡單,但是功能非常強大。
首先,您只需在Application Explorer頂部的搜索框中輸入一個字符串,然後按Enter。 在AOT中,它將僅顯示名稱包含給定字符串的元素。
- Oct 23 Wed 2019 09:48
[Dynamics AX/365] 找尋FORM TASK EVENT ID
- Oct 22 Tue 2019 11:17
[Dynamics AX/365]Reread, Refresh, Research & ExecuteQuery 的介紹
Refresh (刷新)
This method basically refreshes the data displayed in the form controls with whatever is stored in the form cache for that particular datasource record. Calling refresh() method will NOT reread the record from the database. So if changes happened to the record in another process, these will not be shown after executing refresh().
此方法基本上使用該特定數據源記錄的窗體緩存中存儲的內容刷新窗體控件中顯示的數據。調用refresh()方法不會從數據庫中重新讀取記錄。因此,如果另一個進程中的記錄發生了更改,則在執行refresh()之後將不會顯示這些更改。
- Jul 19 Fri 2019 11:02
[Dynamics AX/365]更改 Dynamics 365 的配置键 – 维护模式 / Changing Configuration keys in Dynamics 365 – Maintenance mode
1.告訴在該環境中工作的其他用戶,因為您將在此過程中重新啟動IIS。
2.登錄到運行AOS服務的服務器,並以管理員模式啟動命令提示符
- Jul 15 Mon 2019 18:02
[Dynamic AX/365] Add new Financial Dimension on SalesOrder (在SalesOrder 內新加建一個Financial Dimension)
- Jun 06 Thu 2019 11:43
[Dynamic AX/365] Programmically Post Sales Confirmation
static void postSalesConfirmation(Args _args)
{
SalesTable salesTable = SalesTable::find(“000747″);
SalesFormLetter salesFormLetter;
salesFormLetter = SalesFormLetter::construct(DocumentStatus::Confirmation);
salesFormLetter.update(salesTable, systemDateGet(), SalesUpdate::All);
}
- May 24 Fri 2019 09:51
[Dynamic AX/365] 文字轉日期時間 (String To utcDateTime)
public utcDateTime parseDateTime(str _csvDateTime)
{
- May 21 Tue 2019 16:36
[Dynamic AX/365] 負倉庫庫存 (Negative Warehouse Inventory)
Dynamics AX以受控方式允許負庫存(物理和/或財務)。只能在項目模型組級別允許否定。這意味著只允許一組物品變為負數。但是,一旦發生交易,更改附加到項目的項目模型組是不可能的(或者至少不可能),因此初始項目模型組分配可能會在以後限制交易功能。所謂的粘性檢票口。
此外,如果配置了零售功能,Dynamics AX允許在商店級別使用負庫存。
- May 21 Tue 2019 09:59
[Dynamic 365/AX] Dynamics AX現有形式數量
Physical inventory – This field represents the physical quantity you should be able to find if you went out and tried to do an inventory count.
- May 16 Thu 2019 16:33
[Dynamics 365/AX] Share the form using Extension
[ExtensionOf(formStr(SalesTable))]
final class SalesTable_Extension
- May 09 Thu 2019 11:39
[Dynamics AX/365] 創建數字序列(number sequence)
- May 07 Tue 2019 15:12
如何在X ++中創建和過帳採購訂單的產品收據。(Post product receipt of purchase order in X++)