Kategori: Uncategorized

  • LCS’den PPAC’e Geçiş: D365 Finance & Operations’ta Elastic Compute Dönemi

    yazar:

    kategori:

     Microsoft’un Dynamics 365 Finance & Operations platformunda gerçekleştirdiği LCS (Lifecycle Services) → PPAC (Power Platform Admin Center) dönüşümü, ilk bakışta yalnızca bir yönetim portalı değişikliği gibi görünebilir. Ancak gerçekte bu geçiş, D365 FO altyapısının çalışma mantığında köklü bir değişimi temsil etmektedir. Bu dönüşümün en önemli parçalarından biri ise “Elastic Compute” modelidir. Sabit Katman (Tier) Döneminin…

  • D365 FO error: Unable to install this application because an application with the same identity is already installed

    yazar:

    kategori:

    I was trying to open workflow configuration form in D365 Finance and getting below error. Unable to install this application because an application with the same identity is already installed. To install this application, either modify the manifest version for this application or uninstall the preexisting application. Cause This issue occurs if the application was…

  • D365 FO Task recorder screenshots

    yazar:

    kategori:

     https://syedrafayali.wordpress.com/2019/02/14/dynamics-365-task-recorder-screenshots-extensions/

  • Setting up PowerBI embedded and Analytical workspaces in Dynamics 365 for Finance and Operations in a OneBox Environment

    yazar:

    kategori:

    https://docs.microsoft.com/en-us/archive/blogs/dynamicsaxbi/accessing-analytical-workspaces-on-1box-environment   http://www.everythingdynamicsaxbi.com/2019/02/03/how-to-configure-power-bi-embedded-for-dynamics-365-for-finance-and-operations-one-box-environment/

  • Attaching a selected document to Dynamics 365 for Finance and Operations

    yazar:

    kategori:

     PurchTable              purchaseTable;        System.Net.WebClient    webClient;        System.IO.MemoryStream  stream; FileUploadTemporaryStorageResult fileUploadResult = File::GetFileFromUser (classstr(ImageFileUploadTemporaryStorageStrategy));                 if (fileUploadResult && fileUploadResult.getUploadStatus())         {             str imageFilePathName = fileUploadResult.getDownloadUrl();             InteropPermission perm = newInteropPermission(InteropKind::ClrInterop);             perm.assert();                          // BP Deviation Documented             webClient = new System.Net.WebClient();             // BP Deviation Documented             stream = newSystem.IO.MemoryStream(webClient.DownloadData(imageFilePathName));             select purchaseTable where purchaseTable.PurchId == “PO-0002”; // any record for tables DocuRef docuref =DocumentManagement::attachFile(purchaseTable.TableId,purchaseTable.RecId, purchaseTable.DataAreaId,DocuType::typeFile(),stream,fileUploadResult.getFileName(), fileUploadResult.getFileContentType(),fileUploadResult.getFileName());             // download/view the attachment…

  • run report not in d365 fo menu

    yazar:

    kategori:

    https://xxxxxx.sandbox.operations.dynamics.com/?cmp=xxxx&mi=Output%3ASysCompanySize

  • default dimension ve ledger dimension relationship

    yazar:

    kategori:

    thank you for blog Bill Frandsen.. https://blogs.msdn.microsoft.com/ax_gfm_framework_team_blog/2013/02/15/ledger-account-combinations-part-1-dimensions/ Introduction In Dynamics AX 2009, dimensions were limited to a minimum of three and a maximum of ten, and entered in a set order that required code customizations and database synchronization for each dimension added. In Dynamics AX 2012, the dimension framework was expanded to allow unlimited dimensions which…

  • Create warehouse addresses through code

    yazar:

    kategori:

        InventLocation                           warehouse;     LogisticsPostalAddressView      postalAddressView;     LogisticsPostalAddress              postalAddress;     LogisticsEntityLocationMap       locationMap;     container                          …

  • Lookup not works in Enterprise portal

    yazar:

    kategori:

    If user clicks on lookups then lookup form will display but the selected value will not reflect in to the text box. Solution: Disable IE ESC for the users1. Open the Server Manager Tool. Configure IE ESC is located on the right hand side of the interface in the section heading Security Information.2. Select the…

  • hata: excel aktarım: The number of arguments provided is different from the number of arguments accepted by the method.

    yazar:

    kategori:

    The number of arguments provided is different from the number of arguments accepted by the method. Update post :  The solution is  : boolean importLines() { SysExcelApplication application = SysExcelApplication::construct(); SysExcelWorkBooks workBooks = application.workbooks(); SysExcelWorkSheets workSheets; SysExcelWorkSheet workSheet; SysExcelCells cells; // the solution is puting the bellow line code after initializing SysExcelApplication application.displayAlerts(false); //…. code…