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

RE: Association between case and stage

$
0
0

Hi,

You can use the below job to get the relation between CaseDetailBase and HierarchyTreeTable.I don't have sufficient data to test it, please let me know if anything is missing.

static void Cases(Args _args)
{
    CaseDetailBase              caseDetailBase;
    CaseCategoryHierarchyDetail caseCategoryHierarchyDetail;
    Hierarchy                   hierarchy;
    HierarchyTreeTable          hierarchyTreeTable;

    while select caseDetailBase
        join hierarchy
        where hierarchy.Name == caseDetailBase.Process
        && hierarchy.IsActive == 1&& hierarchy.HierarchyType == 5&& hierarchy.IsTemplate == 1
        join hierarchyTreeTable
        where hierarchyTreeTable.HierarchyId == hierarchy.HierarchyId
    {
        info(strfmt("%1, %2", caseDetailBase.CaseId, hierarchyTreeTable.Name));
    }
}

Association between case and stage

$
0
0

Hi all

Running AX 2012 R3 CU9.

Currently working with cases, and I'm plugging a few holes in our flows at the moment. One common request I am receiving is to view the current stage of a case on the list page for cases. My only issue is that I can't seem to find where these two tables link together.

I can see that the case header file is the table CaseDetailBase, and the name of the stage is stored in HierarchyTableTree - but there doesn't seem to be any logical way the system ties them together. Obviously it must exist because it pulls the information when you go to move the stage. But I can't see how it retrieves that information.

Could anyone point out the relational fields between these two tables, or if I am looking at the wrong tables pls advise?

Thanks very much in advance
Luke

D365FO 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.

RE: Import of an XPO

$
0
0

Hi All,

I exported VendorAccountStatementIntReport ( Usr Model ) from DEV-Enviroment,

later I import to AX-DEMO ( Usr Model ).

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

I compile and generate CIL,

but my report at AX-DEMO not update.

what steps I missing ?

need you advice.

Thank you

Import of an XPO

$
0
0

I have a doubt in import of an XPO file in AX 2009. Is there is a way to revert or rollback the changes that have done by an import option..ie) reverting an import XPO option?

Thanks,

Raja Vignesh

RE: Export Import Report File

$
0
0

Hi,

Have you deployed your report after import.If not, please give a try.

RE: Purchase order confirmation report not running

$
0
0

Hi Ajit,

User is active with system admin Role, Suggest me should I have to assign any additional role when I already assigned Sys Admin ?

RE: Voucher Transaction is not display when post movment journal with negeative quantity from movement journal line form. in Ax 2012 R3

$
0
0

There is also not displaying , and as per requirment voucher should display  on financial voucher form .


RE: D365FO SSRS Reporting - SQL based

$
0
0

Which database you are using for creating you T-SQL based reports in Ax 2009 ? In D365 online production environment you don't have access to SQL db so you will have to follow option of entity store or BYODB (both are going to be azure db )so that you can use those for reporting purpose .

RE: SSRS Reporting - SQL based

$
0
0

You should use AX tools to develop reports (which stores reports in packages together with other AX code, they get deployed in deployable packages as any other AX elements, you can use AX queries, AX business logic, the framework will generate dialogs in AX for you and so on).

A brief introduction can be found in documentation under Create reporting solutions.

RE: General Ledger Queries: Do Financial Dimensions depend on Main Accounts?

$
0
0

Yes, that's what I am looking for. If there's no such query and data entity, then I need to create my own data entity. But I have very less idea on what all tables to JOIN and what relations to follow in order to achieve the desired result.

E.g.: {Account Structure tables} JOIN {LedgerChartOfAccounts tables} JOIN {MainAccount table} JOIN {Default Dimension table}... like this. Can any one guide me in this?

General Ledger Queries: Do Financial Dimensions depend on Main Accounts?

$
0
0

Hello all,

I wanna clear my doubts regarding General Ledger's Main Accounts, Financial Dimension and Chart Of Accounts. Sorry if these are very basic questions in AX.

  1. It seems that a single Main Account ID remains associated with multiple Chart of Accounts (COA). What is the concept behind this?
  2. Also do Financial Dimensions depend on Main Accounts? I mean to say, if I select a Main Account (say 618150), then does it mean anything if I want to fetch default Financial Dimensions like Department, BusinessUnit or CostCenter depending on this Main Account?
  3. Also, if I write a segmented Account number with components MainAccount-BusinessUnit-CostCentre-Department etc and fill values in them, I write something like this: 618150-004-007-025. Now how to check if this combination is valid? I guess its not guaranteed to be valid, right?

Please help me in digging the answers.

Thanks.

RE: Export Import Report File

$
0
0

Please elaborate when you get the error "The data method drillInvoiceAccount ...", whether you successfully compiled X++ and whether you didn't forget to deploy the report.

Also, tell which models contain VendAccountStatementInt.drillInvoiceAccount().

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

RE: Get Financial Dimension available combinations according to Account Structure and Advanced Rules

$
0
0

Hi Opozo,

Have you got any solution to your requirement? I am also in need of similar scenario.


Get Financial Dimension available combinations according to Account Structure and Advanced Rules

$
0
0

Dear all;


 I've a requirement for export all FD available combinations for external system;
 My customer needs to obtain all available values from 3 dimensions regardless of mainAccount,

and I'll export it to csv file. 

 I'll appreciate your help.
 

RE: how to filter current form data based on financial year

$
0
0

hi mr.cheitanya thanks for immediate response.i am not using any fiscal calendar setup

i am entering holidays data in my custom table  

RE: how to filter current form data based on financial year

$
0
0

Did you follow what I have suggested in my above post ? you can create start date and end date and pass range in data source execute query. All pseudo code is provided in my earlier post  

how to filter current form data based on financial year

$
0
0

i have table data like this 

`

its Holiday master table i have created separate form for end use if he open the form it should show current year holidays,how i can filter data in init method....in that table 2 fields are there that is belongs to financial year starting date and ending date ..yearname field is financial year.if open form today only it should show 2nd record because that holliday date is presented in the financial year 2017-18.how can i achieve this..

thanks in advance.....

RE: Export Import Report File

$
0
0

Hi Chaitanya,

so after I import the xpo report file, and generate CIL. I still need to deploy the report ?

let me search reference first for deploying.

thank you

Viewing all 175888 articles
Browse latest View live


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