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

RE: Transfer Order posted wrong - how to reverse in AX 2009 (its belongs to India TO )


RE: what exactly does this class do along with the method? SysTableLookup sysTableLookup = SysTableLookup::newParameters()

what exactly does this class do along with the method? SysTableLookup sysTableLookup = SysTableLookup::newParameters()

$
0
0

i am currently creating a lookup and i want a detailed explanation on systableLookup's role 

Adding date range to the RDP SSRS Report

$
0
0

Hi, I have created an SSRS report to display the remaining quantity of purchase orders.

So that I have created the temp table then query.

After that, I created DP class

The four methods in it are : 

  

 

Above is the procedure I used to render the report and it is rendering perfectly.

now I want to add a created DateTime filter in this report.means when the user tries to open the report, it first asks the date range like below and then retrieves the data in of purchase orders created in between the specified date ranges.

Please, help me to add this filter to the report.

Steps for In-Place Upgrade from AX 2012 R2 CU7 to R3 CU11

$
0
0

Hi,

I want to upgrade from AX 2012 R2 CU7 to AX 2012 R3 CU11.

1. I have performed AOT Compile, Full CIL and DB Synch to my AX 2012 R2 CU7 (PRODUCTION Server)

2. From AX 2012 R2 CU7, I have exported - "Model DB" from SSMS and "R2CU7.axmodelstore" file.

3. I have done fresh installation of  SQL 2012 + AX 2012 R3 CU11 with all the components in my TEST Server.

4. Now I need to move all the customizations from my R2 CU7 to R3 CU11.

As per what I read, I need to import the copy of my PRODUCTION DB (Model DB) of R2 CU7 into the SQL Server installed on my TEST Server of R3 CU11. Furthermore, somewhere is read i need to restore the modelstore from my R2 CU7 to R3 CU11?

Query: Is my above understanding correct? Can you please highlight on the steps to be performed in order to Import all the Customizations which needs to be carry forwarded to R3 CU11.

Once we have the R3 CU11 system on my TEST Server with all the customizations, rest steps given in the upgrade guide are pretty straight forward regarding layerwise code upgrade.

Can some chap please clear my query as I need to understand clearly how the cuxtomizations are moved to R3 CU11 (Steps to be performed for importing) before we actually start with the code upgrade.

Sincerely,

Muneeb

RE: Alignment issue while Concatenating two Strings

$
0
0

Hi ievgen,

I cannot do that because of the table structure.So i have no other option other than choosing this option

Chq status is showing posted it not effected to Bank

$
0
0

Dears ..

i have problem when try to settle clearing entries for vender chq showing me this error ..

Note : the status for chq is posted ..

RE: Integrating Financial dimension form causing 2 inserts

$
0
0

Thanks Chaitanya - that is a perfect answer and is very much appreciated.


Integrating Financial dimension form causing 2 inserts

$
0
0

Hi,

I'm adapting 2 forms so that users are forced to save specific Financial dimension values before saving each record. I've customised Sales orders (SalesCreateOrder form) and Projects (ProjTableCreate).

Creating new Projects work fine, but in the create Sales orders form when I change a financial dimension value that has not been defaulted and try to save it says:

"Cannot create a record in Sales orders (SalesTable). Sales order: SO000046, CompanyName. The record already exists." 

However, when I cancel out of the form and refresh the SO's the new SO is created with all intended dimension values.

I want to find a way to prevent the error (and understand the problem also :-) ).

The init() methods of the forms are done in similar way

SalesCreateOrder form

void init()
{
    ....
dimDefaultingController = DimensionDefaultingController::constructInTabWithValues(true, true, true, 0, this, TabFinancialDimensions, "@SYS138487"); dimDefaultingController.parmAttributeValueSetDataSource(salesTable_ds, fieldStr(SalesTable, DefaultDimension)); }


and ProjTableCreate

void init()
{
    ....
dimDefaultingController = DimensionDefaultingController::constructInTabWithValues(true, true, true, 0, this, TabFinancialDimensions, "@SYS138487"); dimDefaultingController.parmAttributeValueSetDataSource(projTable_ds, fieldStr(ProjTable, DefaultDimension)); }

On ProjTable I've done a post-Event handler on initValue() which sets the DefaultDimension. I've had to comment out the default behaviour in initFromCustTable() and initFromInvoice() that normally overrides the default dimension value.

On SalesTable I've done a similar thing but not identical. Within initValue() I set the salesTable.DefaultDimension as follows:-

void initValue(SalesType _salesType = SalesParameters::find().OrderType)
{
    this.SalesType = _salesType;

    super();

    MGPFinDimDefault::setSalesTableDefaultDimension(this);

    this.initValue_Server();
}


I've also had to amend an IL method, initFromCustTableIL()

private static server container initFromCustTableIL(container _salesTableContainer)
{
    ....
    //salesTable.DefaultDimension           = salesTable.copyDimension(custTable.DefaultDimension);
    //replaced by
    MGPFinDimDefault::setSalesTableDefaultDimension(salesTable);
    ....

    // there is an identical line replaced in the same way further down this method call

}

I've also tried commenting out the lines instead but the result is the same.


I've debugged and can see the insert() method on the SalesTable being called twice in succession resulting in the error.

Why does a selection of the Financial dimension cause this double insert error?

Will share more code as needed.

Thanks.

RE: Adding date range to the RDP SSRS Report

RE: Alignment issue while Concatenating two Strings

$
0
0

That's sounds weird; I would like to hear why exactly you say it's impossible. If it's a table, the table control should be able to handle it.

Also, the solution you've chosen won't ever work well with proportional fonts.

RE: Vendor Creation Error through X++

$
0
0

Hi Chandan,

Can you review all indexes on the VendTable table to see if there is a customization if there are more indexes set to not allow duplicates? Have you actually used the debugger to find out if the AccountNum and Party do get values which are not used before?

If this is not helping, can you share your coding, so we can help you reviewing this?

RE: How to avoid Duplication of Free text invoice

$
0
0

Hi Arnaud,

Is there any bug in GST for Free text invoice, because after installation of GST (india) only we are facing this issue and also not coming frequently this issue.

Issue is coming randomly, but earlier before installation of GST (india) customer doesn't have any issue for Free text invoice.

Regards,

Ramanadham.

How to avoid Duplication of Free text invoice

$
0
0

Dear Friends,

 

While posting Free text invoice, system is generating Duplicate Invoice numbers.

Note: In No sequence, continuous button already checked.

Please fin the below Screen shot, and provide solutions for the same.

Regards,

Ramanadham.

RE: Steps for In-Place Upgrade from AX 2012 R2 CU7 to R3 CU11


RE: Adding date range to the RDP SSRS Report

$
0
0

Hi ievgen thanks for the repy.

Actually I am new to ax. is it necessary to create the contract class?

i created the query in it instead of creating the contract class. is there anyother way to edit the existing code?

RE: View full path for list page

$
0
0

Hi Maram,

Glad you found it. I have marked your answer, so the thread will get the status answered.

View full path for list page

$
0
0

I create a new  display menu item for workflow list page and add it to new customized menu , but  path does not include the full path as shown in the screens shot below i.e. I need to include menu name - sub menu name before list page name 

RE: Vendor Creation Error through X++

$
0
0

Hi,

I have debugged the code and checked whether  PartyID is duplicating or not but it is not used before... There is no customization on VendTable indexes.

This is my code:

if(ledgerJournalTransfromSSAS.AccountType == LedgerJournalACType::Vend)

       {

           checkrecord               = vendTable::exist(ledgerJournalTransfromSSAS.AccountNum);

           if(checkrecord == false)

           {

               ttsbegin;

               vendTable.clear();

               vendTable.AccountNum    = ledgerJournalTransfromSSAS.AccountNum;

               vendTable.Name          = ledgerJournalTransfromSSAS.CustName;

               vendTable.VendGroup     = ledgerJournalTransfromSSAS.CustGroupId;

               vendTable.Currency      = ledgerJournalTransfromSSAS.CurrencyCode;

               vendTable.LanguageId    = 'en-in';

               vendTable.PartyType     = DirPartyType::Person;

               vendTable.insert();

               ttscommit;

           }

       }

RE: Steps for In-Place Upgrade from AX 2012 R2 CU7 to R3 CU11

$
0
0

Hello Muneeb,

Here I can explain you that what are the fundamentals are required to upgrade to MS AX R3 CU11, Also the functionality and regulatory updates that were included in Cumulative update (CU) 11.

Microsoft SQL Server 2016 and Microsoft Office 2016 are now supported with AX 2012 R3 CU. Mainly you should be configure these issues

1. Compatibility Notice

2. Financial Enhancements

3. Retail Enhancements

4. Warehouse and transportation management enhancements

5. Country/region-specific updates that are included in CU 11

Check out new features included in R3 CU11
mbs.microsoft.com/.../Whats_New_in_AX2012_R3_CU11.pdf

Thanks!

Viewing all 175888 articles
Browse latest View live


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