Quantcast
Channel: Microsoft Dynamics AX Forum - Recent Threads
Viewing all 175888 articles
Browse latest View live

Error while opening POS.

$
0
0

Hi,

I am facing issue while opening POS, following error is loged in event viewer

LSRetailPosis.POS.Program: LSRetailPosis.PosisException ---> System.NullReferenceException: Object reference not set to an instance of an object.
at Microsoft.Dynamics.Retail.Pos.DataManager.CustomerDataManager.ConvertToTransactionalCustomer(Customer axCustomer)
at LSRetailPosis.BusinessLogic.CustomerSystem.GetCustomerInfo(String customerId)
at Microsoft.Dynamics.Retail.Pos.Tax.TaxEngine.TaxEngineServiceProxy..ctor(IApplication application)
at Microsoft.Dynamics.Retail.Pos.TaxService.Tax.Initialize()
at Microsoft.Dynamics.Retail.Pos.SystemCore.Services.Initialize()
at Microsoft.Dynamics.Retail.Pos.SystemCore.PosApplication.Initialize()
--- End of inner exception stack trace ---
at Microsoft.Dynamics.Retail.Pos.SystemCore.PosApplication.Initialize()
at LSRetailPosis.POS.Program.InitializeAndLoadPOS(String[] args, Boolean owned, SplashScreenForm splashScreenForm)
at LSRetailPosis.POS.Program.Main(String[] args).

Kernel version:6.3.6000.214

Application version:6.3.5000.133

GST has been already installed on the same.


RE: 2 AX databases in same SQL server

$
0
0

Your question is somehow unclear but if you restore database on same SQL server then just connect to Sql server and  u should be able to access both the databases.

Route card journal behavior

$
0
0

Hi Experts,

I have question about Route card journal would like to ask:

After post Start for production order, I open Route card journal to Change Resource.

If I change resource in line with Task type = Process, it will get data from Run time category on Resource Master form to display on "Category hours" field.

But If I change resource in line with Task type = Setup, it also get data from Run time category on Resource Master form to display on "Category hours" field. I think it's supposed to get data from Setup category on Resource.

What's do you think about this behavior?

If it is correct or it's a bug?

RE: 2 AX databases in same SQL server

$
0
0

Hi Sukrut,

what i mean, how to open client AX pointing to different database.

Ex: AX icon to open database A (customer A), AX icon 2 to open Database B (Customer B)

hope this is clear now

Regards,

David

RE: 2 AX databases in same SQL server

$
0
0

But why you want to do that ? With single log in you can access both DB ? Is there any specific reason?

2 AX databases in same SQL server

$
0
0

Hi All,

i have 2 databases belonging to 2 customers. I restore those databases to same SQL server.

Can i have 2 shortcuts on desktop (same machine): each one opening different database ?

Regards,

David

RE: How Can I Show Current Company's Logo in an SSRS Report?

$
0
0

Hi Momochi,

In the Temp table, have a field type as Container with EDT Bitmap. In DP class, you can use the same code FormLetter::CompanyLogo(); to assign your Legal entity Logo. (Note: Use JPG, JPEG) formats. 

In Visual studio, Add image in Header using Toolbox by dragging or by right-clicking in Header, in Image properties, select the Dataset, and Image type. Finally Deploy the SSRS report.

Thanks,

Rahul R

RE: 2 AX databases in same SQL server

$
0
0

Hi,

You have to change the AX Server Configuration and create two configuration pointing to one for 1st customer database and second configuration pointing to 2nd customer database ,apply your changes and restart AOS services .


SSRS Report Cheque_US

$
0
0

Hi Guys,

Trying to understand the design structure of Cheque report in D365 if someone who has worked on it can give a quick overview. 

What is the meaning of these fields - 

1. SlipTxt

2. ChequeTopDrop

3. ABCCode

4. MICRLine

RE: Field 'Entity' must be filled in. In DIXF Custom Entity

$
0
0

Hi Visvash,

Have you filled the mandatory field Entity as shown below?

Thanks,

Rahul R

View data source as query

$
0
0

Hi All,

is it possible to give query as datasource to a view D365? my query has union of two different views. 

 In AX 2012, I was able to drag query and drop inside meta data of view. but in D365 could not add query to metadata inside view.

Thanks

Neetu

RE: Field 'Entity' must be filled in. In DIXF Custom Entity

$
0
0

Thanks Rahul,

strange thing, I couldn't see "Entity" field on my Entities Form. Let me check if it is set "Not Visible" from backend.

RE: Field 'Entity' must be filled in. In DIXF Custom Entity

$
0
0

Hi,

When you create custom entity through DIXF wizard, it add an extra case to the method derfaultEntityEx of table DMFEntity and extra element to enum DMFEntity like below:

case DMFEntityType::DMFSample:

           this.TargetEntity = queryStr(DMFSampleTableTargetEntity);

           this.EntityClass  = classStr(DMFSampleTableEntityClass);

           this.EntityTable  = tableStr(DMFSampleTableEntity);

           isfound = true;

           break;

So, while creating the target entity(in target entities form) provide value for Entity(second column) with the name of enum element such that rest of stuff gets filled up automatically(except for name for Entity fourth column). In your case, just delete the line and create new one.

Field 'Entity' must be filled in. In DIXF Custom Entity

$
0
0

Hello ,

I have created one simple custom Entity through DIXF Wizard and when I am trying to setup it on Entities form , it gives me the error shown below:

Well, I found one solution on one of blog , and run the job as mention in below job but still getting error:

https://community.dynamics.com/ax/f/33/t/167008

Please suggest me if you have any other solution.

RE: Data method equivalent AX 7

$
0
0

Hi Alim Ben Helal,

 

I am also facing the same issue for upgrade project from ax 2012 to 365 in report design, please help me how can we resolve this issue and how you could resolved your issue.

I am waiting for your reply...

Thanks &Regards

Anil


Data method equivalent AX 7

$
0
0

we are doing migration from Dynamics AX 2012 to AX 7 ( Operations), we have found differences in some SSRS components. Business logic (data method in C#) functionnality is not existing anymore in AX 7, I've created a class library using C# and deploy it into the report server (Path : C:\Program Files\Microsoft SQL Server\MSRS13.MSSQLSERVER\Reporting Services\ReportServer\bin), I've made a reference to my DLL file then I invoked my method using expression in my report design having the format namespace.classname.function(parameter)

e.g : FunctionsC.LedgerBL.NumWordsWrapper(Fields!NetAccountingCurrencyAmount.Value)

When deploying my report, the function "NumWordsWrapper" is not recognized, VS is displaying "

Severity Code Description Project File Line Suppression State
Error Path: [AxReport/PayrollTransferOrder/Designs/DesignTransferOrder/Expression]:DesignTransferOrder: Unidentifiable substring 'NumWordsWrapper' in expression. The parser reported error message: Unrecognized identifier. TestProject (USR) [RH] C:\AOSService\PackagesLocalDirectory\RH\RH\AxReport\PayrollTransferOrder.xml 0"

Is there a solution to call a class library (*.dll) or an equivalent to datamethod for SSRS Report within AX 7?

Thank you for your response.

Alim BEN HELAL

Dynamics AX Developer

RE: PurchTableDocument object does not have method 'parmLineAmount' in Purchase order workflow

$
0
0

Hi,

Thanks for your both reply.

I will try and update you soon

PurchTableDocument object does not have method 'parmLineAmount' in Purchase order workflow

$
0
0

Hi,

while running the purchase order workflow getting error like

Stopped (error): X++ Exception: Error executing code: PurchTableDocument object does not have method 'parmLineAmount'.

I have a method like "parmLineAmount" in PurchTableDocument class.

I have generate the increment CIL and Full CIL.

I have Restarted the "AOS"

I have cleared the "Usage Data"

Still getting the above error.

suggest me the solution.

RE: how to compare the date field in query

Uploading Product Name using DIXF

$
0
0

Hi all,

By using DIXF we uploading Item master fields from AX2009 to AX2012r2. For which we using DIXF to upload. We mapped the well with field and got preview as well but our Product id was uploaded but not Product name. all field are in excel and we mapped Item Name in field EcoResProductTranslation_Name field.

Is our method is right if not please suggest where to map Item Name in Product name.

Thank you

Viewing all 175888 articles
Browse latest View live