目前分類:ERP - Dynamics 365 ( AX) (115)

瀏覽方式: 標題列表 簡短摘要

Batch Job Keep Continues instead of Retry!

 

文章標籤

lionlionchopper 發表在 痞客邦 留言(0) 人氣()

public boolean validateWrite()
    {

lionlionchopper 發表在 痞客邦 留言(0) 人氣()

public class DGS_FieldNameListTmp extends common
{

文章標籤

lionlionchopper 發表在 痞客邦 留言(0) 人氣()

 

文章標籤

lionlionchopper 發表在 痞客邦 留言(0) 人氣()

您可以在StringEdit控件中使用EDT TableName,並且可以在查找中獲取所有表。

文章標籤

lionlionchopper 發表在 痞客邦 留言(0) 人氣()

Dynamics Link:  https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/database/dbmovement-scenario-debugdiag

 

文章標籤

lionlionchopper 發表在 痞客邦 留言(0) 人氣()

還原無效的銷售訂單:

 static void restoreDeletedSO(SalesTableDelete    salesTableDelete)

文章標籤

lionlionchopper 發表在 痞客邦 留言(0) 人氣()

如果您不希望由於各種原因而刪除銷售訂單(Sales Order),AX中有一個很好的功能,可以將這些銷售訂單標記為無效(Voided)。 它使您能夠跟踪錯過的交易或任何原因,因為這些訂單仍將保留在系統中並且不會消失。 使用此功能,您將繼續擁有歷史數據。

轉到Accounts receivable > Setup > Accounts receivable parameters.

文章標籤

lionlionchopper 發表在 痞客邦 留言(0) 人氣()

AX 7中的Application Explorer允許輕鬆進行篩選,這非常有用。 它看起來很簡單,但是功能非常強大。

首先,您只需在Application Explorer頂部的搜索框中輸入一個字符串,然後按Enter。 在AOT中,它將僅顯示名稱包含給定字符串的元素。

文章標籤

lionlionchopper 發表在 痞客邦 留言(0) 人氣()

COC FORM 身身的TASK method 就可以拎到那一個ACTION 的TASK ID 是甚麼.    

public int task(int _taskId)

文章標籤

lionlionchopper 發表在 痞客邦 留言(0) 人氣()

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()之後將不會顯示這些更改。

文章標籤

lionlionchopper 發表在 痞客邦 留言(0) 人氣()

1.告訴在該環境中工作的其他用戶,因為您將在此過程中重新啟動IIS。
2.登錄到運行AOS服務的服務器,並以管理員模式啟動命令提示符

文章標籤

lionlionchopper 發表在 痞客邦 留言(0) 人氣()

新加一個Financial Dimension:

文章標籤

lionlionchopper 發表在 痞客邦 留言(0) 人氣()

static void postSalesConfirmation(Args _args)
{
SalesTable salesTable = SalesTable::find(“000747″);
SalesFormLetter salesFormLetter;

salesFormLetter = SalesFormLetter::construct(DocumentStatus::Confirmation);
salesFormLetter.update(salesTable, systemDateGet(), SalesUpdate::All);
}

文章標籤

lionlionchopper 發表在 痞客邦 留言(0) 人氣()

 public utcDateTime parseDateTime(str _csvDateTime)
    {

lionlionchopper 發表在 痞客邦 留言(0) 人氣()

Dynamics AX以受控方式允許負庫存(物理和/或財務)。只能在項目模型組級別允許否定。這意味著只允許一組物品變為負數。但是,一旦發生交易,更改附加到項目的項目模型組是不可能的(或者至少不可能),因此初始項目模型組分配可能會在以後限制交易功能。所謂的粘性檢票口。

此外,如果配置了零售功能,Dynamics AX允許在商店級別使用負庫存。

lionlionchopper 發表在 痞客邦 留言(0) 人氣()


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.

文章標籤

lionlionchopper 發表在 痞客邦 留言(0) 人氣()

[ExtensionOf(formStr(SalesTable))]
final class SalesTable_Extension

文章標籤

lionlionchopper 發表在 痞客邦 留言(0) 人氣()

場景:假設我們為任何項目下訂單,我們需要為它生成一個唯一的順序訂單ID。 所以為此我將使用數字序列框架。

以下是創建數字序列(number sequence)所需遵循的步驟。

文章標籤

lionlionchopper 發表在 痞客邦 留言(0) 人氣()

如何在X ++中創建和過帳採購訂單的產品收據。

(Post product receipt of purchase order in X++)

lionlionchopper 發表在 痞客邦 留言(0) 人氣()