hljs.configure({cssSelector: "code"}); hljs.highlightAll();

Tuesday, December 15, 2020

Unable to connect to the remote server at Microsoft.WindowsAzure.Storage.Core.Executor.Executor.ExecuteSync

 Problem:

Microsoft.WindowsAzure.Storage.StorageException: Unable to connect to the remote server ---> System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: No connection could be made because the target machine actively refused it.

Solution:

1.Open Command Prompt as Administrator.

2.Go to C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator\.

3. Run the following command "AzureStorageEmulator.exe start".



D365FO: Method Calling Sequence of Data Entity

Method calling sequence of data entities while importing and exporting of data.

Import:
 Entity:
   - PostLoad
   - InitValue
   - ValidateField (depends on no of fields)
   - ValidateWrite
   - InitializeEntityDataSource
   - mapEntityToDataSource
   - mapDataSourceToEntity
   - insertEntityDataSource
   - persistEntity
   - Insert

Staging:
    PostLoad

Export:
Entity:
      PostLoad