Pages

Banner 468 x 60px

 

Thursday, November 23, 2017

Error SQL Server Reporting Service

0 comments
Error SQL Server Reporting Service : ...
Read more...

Starting sharepoint service

0 comments
Starting sharepoint service : ...
Read more...

Wednesday, November 22, 2017

Export Import data model AXutiL

0 comments
Export Import data model AXutiL : cd C:\Program Files\Microsoft Dynamics AX\60\Server\MicrosoftDynamicsAX\bin => letak folder untuk eksport axutil export /model:"USR Model" /db:MicrosoftDynamicsAX_Model /file:JTC2012MOdel.axmodel ...
Read more...

controller in SSRS

0 comments
controller in SSRS : protected void prePromptModifyContract() { #ISOCountryRegionCodes DeliveryOrderContract contract; TECDeliveryOrderTable TECDeliveryOrderTable; FormDataSource fds; str range; ; contract = this parmReportContrat().parmRDPContract() as TECDeliveryOrderTable; TECDeliveryOrderTable = args.record(); fds = args.record().datasource(); contract } How does your class look like? Just to be sure, I'll show you a step by step 1. You create a class which extends from SrsReportRunController. Then you define a macro with the report name and the Data Contract class. class...
Read more...

element Args() in x++

0 comments
element Args() in x++ public class ReportRun extends ObjetRun {    PurchTable tmpPurchTable } Public void init() {    super();    tmpPurchTable = element.args().record();...
Read more...

Format dates in SSRS reports

0 comments
Format dates in SSRS reports : Untuk PrintDate (kalo kasih tanggal sekarang di report) =Today() =Format(Fields!myDate.Value, “M/d/yy”) - 2/11/08 =Format(Fields!myDate.Value, “MM/dd/yyyy”) - 02/11/2008 =Format(Fields!myDate.Value, “d-MMMM-yy”) - 11-December-08 =Format(Fields!myDate.Value, “d-MMM-yyyy”) - 11-Dec-2008 =Format(Fields!myDate.Value, “M/d/yyyy H:mm”) - 2/11/2008 13:50 =Format(Fields!myDate.Value, “MMM-dd-yyyy”) - Feb-11-2008&nbs...
Read more...

Melihat sesion DB SQL 2008

0 comments
Untuk melihat sesion AOS di DB SQL Server 2008 dbo.SYSSERVERSESSIO...
Read more...

Running Number in SSRS

0 comments
Running Number in SSRS : =RunningValue(Fields!ItemId.Value, CountDistinct, Nothing) ...
Read more...

update_recordSet in x++

0 comments
update_recordSet in x++ : TECDOWithdrawalList     DOWithdrawalList;     TECCustInOutClaimTable  CustInOutClaimTable, CustInOutClaimTable2; update_recordSet CustInOutClaimTable2         setting TECRefDOWithdrawalRecId = DOWithdrawalList.RecId,                 TECRefWithdrawalId = DOWithdrawalList.TECWithdrawalId             where CustInOutClaimTable2.RecId == CustInOutClaimTable.RecI...
Read more...

Disable Date in VirtualBox

0 comments
Disable Date in VirtualBox : Open CMD, type: 1. Cd C:\Program Files\Oracle\VirtualBox 2. vboxmanage setextradata [VMname] "VBoxInternal/Devices/VMMDev/0/Config/GetHostTimeDisabled" "1" contoh : C:\Program Files\Oracle\VirtualBox>vboxmanage setextradata "MS AX 2012R2 Contoso " "VBoxInternal/Devices/VMMDev/0/Config/GetHostTimeDisabled" "1" or if you want to Turn it back on: 3. vboxmanage setextradata [VMname] "VBoxInternal/Devices/VMMDev/0/Config/GetHostTimeDisabled" "0" ...
Read more...

Fixing throw error datbase dynamics AX

0 comments
Fixing throw error datbase dynamics AX : • Right click on data Dictionary and synchronize the data Dictionary. • Right click on AOT and compile it, it step take longer time. In the case of any error in any class, fix the issue and compiled. • Generate full CI...
Read more...

init using x++

0 comments
init using x++ : public void init() {     super();       if(element.args().record().TableId == tableNum(VendPackingSlipJour))     {         _AmbilRecordVendPackingSlipJour = element.args().record();     }     else if(element.args().record().TableId == tableNum(InventTransferParmTable))     {         _InventTransferParmTable = element.args().record();          }...
Read more...

Get record args with menuitem in x++

0 comments
Get record args with menuitem in x++ :   Lihat Callernya !!!! protected void afterOperationEnd() {     // start-dxl-ESLOG010TransferOrder-2013-05-29-01-58-pm     PurchLine             purchLine;     TECTransferOrderTable TECTransferOrderTable;     boolean              ...
Read more...

Only 1 layer in Dynamics AX

0 comments
Only 1 layer in Dynamics AX : Cara narik 1 layer VAR, USR 1. Buat Project baru, lalu Open 2. Pilih tombol Filter Klik OK ...
Read more...

Cara melihat siapa aja yg panggil kelas itu dengan x++

0 comments
Cara melihat siapa aja yg panggil kelas itu dengan x++ : ...
Read more...

More Than 2 Remote Desktop Sessions

0 comments
More Than 2 Remote Desktop Sessions : Pada server ketik command promtgpedit.msc> computer configuration > Administrative Template > Windows Component > Remote Desktop Service > Remote Desktop Session Host > Connection. ganti jadi Disable Buka Remote Desktop Session Host  Configuration Klik kanan RDP-Tcp> Network Adapter, kemudian ganti maximum connection sesuai kebutuhan. Buka server manager, kemudian tambah role untuk remote desktop Add role >tambahkan role remote desktop Next…next kemudian restart                ...
Read more...

Relation Custtable and CustInvoiceJour in x++

0 comments
Relation Custtable and CustInvoiceJour in x++ : select _CustTable where _CustTable.AccountNum == CustInvoiceJour.SalesId; .:: Atau methode ini sudah disediakan di table CustInvoiceJour ::.          CustInvoiceJour.custTable_OrderAccount(...
Read more...

Cara Enable Remote untuk Report SSRS

0 comments
Cara Enable Remote untuk Report SSRS : Kalo muncul error pas buka report ssrs : "cannot remote ........" Masuk ke Sql, buka database report, buka table ConfigurationInfo field EnableRemoteErrors diganti True. ...
Read more...

Calling report using menu item (args.record(namatable)) in x++

0 comments
Calling report using menu item (args.record(namatable)) in x++ : void clicked() {     InventJournalTable     inventJournalTable;     InventJournalTrans     inventJournalTrans;     InventDim              localInventDim;     CustInvoiceTrans       custInvoiceTrans;     TECCustInOutClaimTable localTECCustInOutClaimTable;     TECCustInOutClaimLine  localTECCustInOutClaimLine, CustInOutClaimLine;     RetailTransactionSalesTrans retailTransactionSalesTrans;  ...
Read more...

Container and unbounded string fields are not allowed in ax WHERE expression

0 comments
Container and unbounded string fields are not allowed in ax WHERE expression :  Kalo muncul error karena -> str di public static boolean TIDCheckingKTP(str NomorKTP) -> tidak boleh str, harusnya EDT. ...
Read more...

Print Barcode Code using x++

0 comments
Print Barcode Code using x++ : void clicked() {     //AIFD_PrintBarcode     AI_PrintBarcodeController  aiBarcode = new AI_PrintBarcodeController();     AI_PrintBarcodeContract    aiContract = new AI_PrintBarcodeContract();     ProdJournalProd            prodJournalProdLoc;     SRSPrintDestinationSettings  printSettings = new SRSPrintDestinationSettings();     PrintJobSettings    printJobSettings = new PrintJobSettings();     Dialog         ...
Read more...

What is the difference between AmountCur and AmountMst in Dynamics AX

0 comments
What is the difference between AmountCur and AmountMst in Dynamics AX : What is the difference between AmountCur and AmountMst in Dynamics AX? AmountCur is the amount in the entered currency and AmountMST is the amount in the base currency for the company ...
Read more...

Kalau ada error di Presyncronize maka masuk ke System administrator Enterprise Portal

0 comments
Kalau ada error di Presyncronize maka masuk ke System administrator Enterprise Portal : Kalau ada error di Presyncronize maka masuk ke System administrator > Setup > Batch Group > pindahkan semuanya ke Selected Server...
Read more...

Jika EP AX2012R3 tidak bisa dibuka di dalam VM itu sendiri

0 comments
Jika EP AX2012R3 tidak bisa dibuka di dalam VM itu sendiri : Jika VM AX2012R3 tidak bisa membuka web portal AX, maka kita perlu mendaftarkan alamat Enterprise portal yang ada di AX (System Administrator -> Setup -> Enterprise Portal -> Website), ke dalam folder hosts (Windows -> System32 -> drivers -> etc). ...
Read more...

Untuk ambil data dengan methode menggunakan find dengan x++

0 comments
Untuk ambil data dengan methode menggunakan find dengan x++ : _BuyBackGuaranteeTMP.CustomerId = SalesTable::find(_TECBuyBGuaranteeTable.SalesId).CustAccount; contoh : Saya mau ambil CustAccount dari table SalesTable 1.      _BuyBackGuaranteeTMP adalah Table Temporary 2.      CustomerId adalah variabel yang ingin dimunculkan di Dataset 3.      SalesTable adalah tabel...
Read more...

SystemdateGet Print date regarding server or Today

0 comments
SystemdateGet Print date regarding server or Today : display str TglCetak() {     //return strFmt('Tgl. Cetak : %1', DateTimeUtil::getSystemDateTime());     return strFmt('Tgl. Cetak : %1', systemDateGet());     //return strFmt('Tgl. Cetak :%1', today...
Read more...

Change automatic change next page using x++

0 comments
Change automatic change next page using x++ : if(nourut == 10)     { element.newPage();     }...
Read more...

find phone using x++

0 comments
Find phone using x++ : static void Job10(Args _args) {     VendTable vnd;     ;     vnd = VendTable::find("V-00000");     info(vnd.phone());     info(vnd.telefax());...
Read more...

Public Void with parameter using x++

0 comments
Public Void with parameter using x++ : public void addData(TransDate fromDate, TransDate toDate,                     InventLocationId warehouse, RefRecId planVersionId) {     TIDBOB      BOB, BOB2;     TIDBOBTmp   BOBTmp;     InventDim   inventDim;     ItemId      tmpItemId;     TransDate   date1, date2;     str        ...
Read more...

A financial dimension value is based on the record and has been used on a transaction. You cannot delete the record

  SOLUTION delete in table DimensionAttributeLevelValue base on Bank Account  :  and Delete the Bank Account FINISH