Quantcast
Channel: Martin Dráb's Activities
Viewing all 17532 articles
Browse latest View live

SSRS Reporting - SQL based

$
0
0

Hello All,

I'm a newbie to D365FO and my organization is in the middle of implementation project for D365FO online. We are migrating from AX2009 where I have to migrate all of our existing SSRS reports that were created using SSDT.

Microsoft documentation refers to FetchXML-based SSRS reports and not T-SQL based reports for D365FO online. My staff is skilled in T-SQL and not FetchXML query design. 

Question: Can I continue to create T-SQL based SSRS reports for deploying outside of D365 production environment or do I now have to re-train everyone on FetchXML querying? What are my options?

Thanks for any feedback.

Robert M.


OData Update Operations in D365Ax7

$
0
0

Hi friends,

                How to update the D365 AX7 customer  form using Odata service(integration).

I have created the new records in customer form using odata like:

string CustomerNumber = "THMF-000013";
Customer customer = new Customer();
DataServiceCollection<Customer> CustomerCollection = new DataServiceCollection<Customer>(Context);
CustomerCollection.Add(customer);
customer.CustomerAccount = CustomerNumber;
customer.Name = "Antony";
customer.CustomerGroupId = "10";
customer.SalesCurrencyCode = "THB";
customer.DataAreaId = "THMF";
customer.AddressCountryRegionId = "AFG";
Context.SaveChanges(SaveChangesOptions.PostOnlySetProperties | SaveChangesOptions.BatchWithSingleChangeset); 

Please give a suggestion.

Thanks & regards,

Ashwini

Export Import Report File

$
0
0

Hi All,

I already exported report into xpo file, its from Demo-environment ( Usr Model ), I already generate CIL too before export.

I imported the file into TEST-Environment

there are message AX3020: The data method drillInvoiceAccount in class VendAccountStatementInt is not present in the model. 

but the imported completed.

I generate CIL again, but my report still same.

what step I missing.

Thank you

it there is app for microsoft comunity on mobile?

$
0
0

it there is app available for microsoft comunity on mobile?

OData service

$
0
0

Hi friends, I need know whether we can create custom services using odata service using visual studio.  Please clarify my doudt whether odata service is similar to documentation service.

Padmapriya

Third party application licensing with AX

$
0
0

Hi,


I have a third party application which connects with AX through AIF. The end user enter their domain credentials in the App and then are able to login.

Please let me know based on this do we have to follow any MS pricing.


Thanks

How to enable Dynamics AX for Operations in Azure

$
0
0

Hi:

I recently paid for a subscription in Azure. I would like to subscribe to Dynamics AX for Operations. I want to be able to do the following for a single user account:

1. CRUD for General Ledger, Chart of Accounts, AR, AP

2. Be able to create Extensions (I believe extensions is now the new method under AX 365 rather than the AOT as was in AX 2009 and 2012)

Thanks for your assistance.

Get AX Customers and Items using ASP.NET

$
0
0

I am making creating a web application and I need AX Customers and Items on my ASP.NET application. The user will select the customer and item from that web application and all that data will be stored in my web app's database. 

How to achieve this functionality?


Custom service returns 503

$
0
0

Hi friends,

i have called my service group in system administrator-> inbound port. i got thid wsdl link ,if i run this link i am getting this kind of error "

Service Unavailable


HTTP Error 503. The service is unavailable."

please suggest me how to solve this error.

Thank you.

Web service: Failed to logon

$
0
0

Hi friends 

I have working in ax 2012 integration in create  method , I am facing this error

"An unhanded exception of type 'System.ServiceModel.FaultException' occurred in mscorlib.dll

Additional information: Failed to logon to Microsoft Dynamics AX."

Please suggest me how to solve this issue in ax 2012 integration

Thanks&Regrads

Prabakaran

Automated customized deployment possibilities?

$
0
0

Hi All:

I have a quick question.

I am currently developing a form with some new AX functionality. The form uses a new customized table that I have created. I also have a custom report.

Is it possible for me to compile the customized project to some form of deployment package so that I can sell it to potential customers who can then run the install program of the customized solution and it automatically creates the AX tables, copies the forms and reports etc?

Steve 

How to enable Dynamics AX for Operations in Azure

$
0
0

Hi:

I recently paid for a subscription in Azure. I would like to subscribe to Dynamics AX for Operations. I want to be able to do the following for a single user account:

1. CRUD for General Ledger, Chart of Accounts, AR, AP

2. Be able to create Extensions (I believe extensions is now the new method under AX 365 rather than the AOT as was in AX 2009 and 2012)

Thanks for your assistance.

Export Import Report File

$
0
0

Hi All,

I already exported report into xpo file, its from Demo-environment ( Usr Model ), I already generate CIL too before export.

I imported the file into TEST-Environment

there are message AX3020: The data method drillInvoiceAccount in class VendAccountStatementInt is not present in the model. 

but the imported completed.

I generate CIL again, but my report still same.

what step I missing.

Thank you

Could not able to access the global variable in the event handler class using reflections in ax 7

$
0
0

Hello!,

I couldn't able to access the global variable in the post event handler class using reflections concept in D365.

Please see the following image for further reference,

  

Hence I am getting an exception,

However the same process is working fine in platform update 7.

I am currently working on platform Update 10 and its not working for me in platform Update 10.

Please suggest any solutions.

Thanks,

Label ID Language issue in Dynamics 365 for Operations

$
0
0

I have created some Labels. It has English description as well as Japanese description also.

Now i changed the japanese language for the user who is going to run the process,

Now if we the run the class to insert the data into our journal form, all our messages are inserted into the customized table as japanese text based on our user language setup. This is correct.

But the issue is, when we run the same process using Batch, the text are inserted into the english description only.

It will not translate the description based on our language setup for the corresponding user.


How to use .DLL file in X++ code/Axapta,

$
0
0

Hi All,

Can anybody help me to find out the below question.

How to use .DLL file in X++ code/Axapta,

Add new SalesLine to existing SalesOrder

$
0
0

I need to add SalesLine to an existing SalesOrder. SalesOrder do not have any SalesLine yet. I am using AIF in CSharp (C#). I am using following code but I am getting following exceptions (checked through Dynamics AX Exceptions window) .

    1. Error found when validating record.
    2. Update has been canceled.

Here is my code.

protected void Page_Load(object sender, EventArgs e)
{
    try
    {
        SalesOrderCreateReadFindUpdateDelete.KeyField keyField = new SalesOrderCreateReadFindUpdateDelete.KeyField() { Field = "SalesId", Value = "SO-015749" };
        SalesOrderCreateReadFindUpdateDelete.EntityKey entityKey = new SalesOrderCreateReadFindUpdateDelete.EntityKey();
        entityKey.KeyData = new SalesOrderCreateReadFindUpdateDelete.KeyField[1] { keyField };
        SalesOrderCreateReadFindUpdateDelete.EntityKey[] entityKeys = new SalesOrderCreateReadFindUpdateDelete.EntityKey[1] { entityKey };
        SalesOrderCreateReadFindUpdateDelete.SalesOrderServiceClient _Client;
        using (_Client = new SalesOrderCreateReadFindUpdateDelete.SalesOrderServiceClient())
        {
            SalesOrderCreateReadFindUpdateDelete.CallContext _callContext = new SalesOrderCreateReadFindUpdateDelete.CallContext();
            _callContext.Company = "ART";
            SalesOrderCreateReadFindUpdateDelete.AxdSalesOrder _SalesOrderList = _Client.read(_callContext, entityKeys);
            SalesOrderCreateReadFindUpdateDelete.AxdEntity_SalesTable _SalesOrderTable = _SalesOrderList.SalesTable.First();
            SalesOrderCreateReadFindUpdateDelete.AxdEntity_SalesLine salesLine = new SalesOrderCreateReadFindUpdateDelete.AxdEntity_SalesLine();

            salesLine.ItemId = "PF507028";
            salesLine.SalesQty = 1;
            salesLine.SalesUnit = "ea";
            salesLine.SalesId = "SO-015749";
            salesLine.RecId = _SalesOrderTable.RecId;
            salesLine.RecVersion = _SalesOrderTable.RecVersion;

            SalesOrderCreateReadFindUpdateDelete.AxdEntity_InventDim inventDim = new SalesOrderCreateReadFindUpdateDelete.AxdEntity_InventDim();
            inventDim.InventSiteId = "1";
            inventDim.InventLocationId = "13";

            salesLine.InventDim = new SalesOrderCreateReadFindUpdateDelete.AxdEntity_InventDim[1] { inventDim };
            _SalesOrderTable.SalesLine = new SalesOrderCreateReadFindUpdateDelete.AxdEntity_SalesLine[1] { salesLine };

            _Client.update(_callContext, entityKeys, _SalesOrderList);
            lblOutput.Text += "<br />Success";
        }
    }
    catch (Exception ex)
    {
        lblOutput.Text += "<br />Exception: " + ex.Message;
    }
}

Am I missing something or doing something wrong? If I have to provide more fields then where can check these required fields in MS Dynamics.

Please Help! Thank you.

it there is app for microsoft comunity on mobile?

$
0
0

it there is app available for microsoft comunity on mobile?

EventHandler on Module Select

$
0
0

Hi All,

We need to write some code on click of Human Resource Module Menu within Dynamics AX, is there any method/event that fires when we click the module from the Modules list.

Thanks,

Method that updates the sales line in sales order?

$
0
0

Hello, I would like to know which class and method is the one updating the sales order line in sales order form. So far what I have gathered is SalesTableForm class (SalesLine_write). But I think this method is only used for creating new sales lines. Thanks in advance!

Viewing all 17532 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>