All Archives in this blog may be used for the Junior,Dummies or someone who just started for career at Dynamics Ax ... A Place Where U can Start ur Code - right here ...
Senin, 08 November 2021
Multiple If Expression di SSRS
Rabu, 08 September 2021
SSRS dengan multiple design
Senin, 12 Juli 2021
AX restart setelah membuka sabuah form
Selasa, 15 Juni 2021
Sabtu, 08 Mei 2021
Tidak bisa Deploy SSRS
A.
The
deployment was aborted. You do not have privileges to deploy to server: . For
deployment, you must have administrative rights to the SQL Server Reporting
Services (SSRS) server. Contact your administrator to deploy.
Go to SSRS Server > Services > Hidupkan
Remote Registry
Rabu, 14 April 2021
Mengaktifkan tombol di Docuview
Hi,
please have a look inside DocuView form, doReSearch method, around line number 160 and below. Hopefully you will see that there is already some code there that sets variable called 'allowEditBasedOnActualForm'.
In my installation there is even some code for Norway, which checks the calling table and sets the variable based on some fields - looks like exactly what you need ?
if (SysCountryRegionCode::isLegalEntityInCountryRegion([#isoNO]) &&
(testCursor.TableId == tablenum(CustInvoiceJour) || testCursor.TableId == tablenum(ProjInvoiceJour)))
{
switch (testCursor.TableId)
{
case tablenum(CustInvoiceJour):
custTable = CustTable::find(CustInvoiceJour::findRecId(testCursor.RecId).InvoiceAccount, false);
break;
case tablenum(ProjInvoiceJour):
custTable = CustTable::find(ProjInvoiceJour::findRecId(testCursor.RecId).InvoiceAccount, false);
break;
}
if (custTable.EInvoice)
{
allowEditBasedOnActualForm = true;
}
}
Thanks,
Maciej
Senin, 12 April 2021
Mendefinisikan value dengan tipe data UTCDateTime
Minggu, 11 April 2021
Export data to Excel via x++
Convert Amount to String
Hi Guys,
to do this dynamically, here is a solution:
System.Double netDouble;
anytype r1 = 1.125;
str s1;
netDouble = Global::real2double(r1);
s1 = netDouble.ToString();
info(strFmt("%1",s1));
https://community.dynamics.com/ax/f/microsoft-dynamics-ax-forum/73896/convert-amount-money-to-string
Rabu, 07 April 2021
Menambah/menampilkan icon untuk mengetahui suatu line ada attachmentnnya
Membuat string sql statement dan mengeksekusinya
void Sample_1(void)
{
Connection Con = new Connection();
Statement Stmt = Con.createStatement();
ResultSet R =Stmt.executeQuery(‘SELECT VALUE FROM SQLSYSTEMVARIABLES’);
while ( R.next() )
{
print R.getString(1);
}
}
Minggu, 21 Februari 2021
Menambahkan file .dll untuk bisa dikenali AX
Jumat, 29 Januari 2021
Memutus proses Workflow diAX
Erorr CS1963 - An expression tree may not contain a dynamic operation.
Kali ini saya mendapatkan erorr dengan code CS1963, padahal sebelumnya saya sudah mendefinisikan 'var item in Model' di @foreach(var...
-
"Error while setting server report parameters. Error Message: The item ´/DynamicsAx/PurchPurchaseOrderreport.Report4´ cannot be found ...
-
When we work with entries data that contain sequence number sometime we need an improvement to create in another way, a Generate perhaps. ...
-
SrsReportViewer|AxReportViewer_RefreshComplete