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

RE: Batch log showing only 500 messages

$
0
0

Hi Andre,

version is D365 with 8.1 update. right now log message is info. during posting if posting success info else error.

Thanks ! 


RE: A new row to tablecontrol by code

$
0
0

it is a table. because I have to fill data from different records as columns and the rows are described from another datasource as well I could not manage to get it as Grid

(rows are items read from some Salesorders and columns are SalesIds where to distribute those items to. in the cells I manually fill the qty of each item to a salesid

So no way in a grid as I understood

RE: A new row to tablecontrol by code

$
0
0

Well, table must filled in completely by your code, so if you want to a row at a particular position, you must write your code for it. If you know how to fill the table, what problem do you have with filling it with an extra row?

Ax d365 license,ax version 2018, general question

$
0
0

Hi all,

Recently someone told my client that they have 2 options to upgrade from current version of ax I.e. ax 2012 FP to D365 and ax 2018.

As per my knowledge there is no any version with ax 2018. Or is it the case we call R2 or R3 as 2018?

Also, in d365 can we create new modules?will there be any restrictions or change in process?

In Ax 2012 , sometimes customer uses more licenses than whatever they buy.e.g if they buy 2 enterprise cal license they might have 5 enterprise cal users. Similarly can it be done in D365 on premise or cloud?

Thanks,

Shri

RE: Update Company Order Lines

$
0
0

Hi DJosef!

Check the PurchTable2LineUpdate class.

RE: A new row to tablecontrol by code

$
0
0

If you want to add row after a current row you should create LineNum column and set the num of line while creating the row.

You should write some logic to generate num of line that depends on current row line num and next row line num and then generate num what will be between current and next row.

You also should use/create index what will ordering rows by LineNum.

RE: Update Company Order Lines

RE: Procurement and sourcing "spend Analysis" reports

$
0
0

hi Udit, Shoaib, just wondering anyone of can help me. wanted to generate the procurement spend report. got blank report.  am I missing anything?


Procurement and sourcing "spend Analysis" reports

$
0
0

Hi,

I setup a new company account, modified the existing purchase categories, posted some transactions (purchase orders) togehter with the categories and tried to run the spend analysis reports in the procurement and sourcing module. Unfortunately, these reports seem not working properly as they do not pick up my new company accounts that I setup and the transactions that I posted .

Does anybody have a tip for me on what to do?

Thanks,

ludwig

RE: How to create Morphx report in 2009

How to create Morphx report in 2009

$
0
0

Hi guys, 

I have been  worked in 2012 and D365, but not worked in 2009 now i had a customization in 2009

need to create new report in 2009 , i didn't find any proper link so if anybody have please share links do develop reports in ax 2009. It might helpful 

Thanks in Advance

Different Product names on on-hand inventory

$
0
0

Upon checking on-hand inventory of a certain item, I have found that 2 different product names of this single item code. Can I know what can affect the product names in the list ? 

RE: AIF Change Tracking

$
0
0

Hi Nick,

Hope your are doing good!!!

I am replying to a quite old link, I am facing the issue in using "getChangedKeys()" operation from .net, if you have the sample code snippet, it would be helpful.

Thanks in advance.

Best Regards,

Guruprasad

AIF Change Tracking

$
0
0

Has anyone managed to successfully configure AIF services for change tracking?

I have enabled both change tracking at a Database-level and at a Table-level (CustTable). This was carried out directly in SQL.

When I make a change to a Customer record in the AX client, I can query the SQL change-tables directly and view the changed records.

However, when I try the execute the getChangedKeys() operation on the CustCustomerServices from a .net client, the EntityKeyPage object has a PageStatus property set to 'Failure' and a PageStatusDetails property set to 'Change Tracking Disabled'.

Is there anything else I need to do to enable change tracking, is this configurable from within the AX client somewhere?  The documentation (which seems fairly thin on the ground) seems to suggest that this only needs to be enabled on the database table.

http://msdn.microsoft.com/en-us/library/hh433529.aspx

 

Thanks,

Nick

 

 

 

RE: how to deactivate active cost Price

$
0
0

Hi Ludwig

By mistake I have activated standard cost for very few items where as we are maintaining FIFO method for all Items.  How can I deactivate the standard cost for these items.

Thanks & Regards

Ravi


how to deactivate active cost Price

$
0
0

Hello 

My Question is in AX 2012 R3 Can i delete \ Deactivate Cost Price 

location Product information management > common > released product > item Price > manage Cost

this is a my case problem

because this is wrong cost enter during shifting 2009 to 2012 r3

and 

2nd Question is what are the impact after delete this cost ??

Thank you

Waqar      

RE: Step after and before change password account user Administrator AX

$
0
0

Hi RSI,

There is no impact in Microsoft Dynamics AX when you change the password of a user. When this account is used as login for the AOS service or other services, you need to update the password in those services.

Step after and before change password account user Administrator AX

$
0
0

How step after and before change password account user Administrator AX ?

Thanks.

Dynamic Query works based on OR condition

$
0
0

Hi, Everyone.

I want records based on query act like or condition. I have two queries, The case is 1st query have the records it pulls out otherwise act 2nd query and get the records. Below is my query Please review it. That's correct or not.

public void executeQuery()

{
    Date                    _date;
    ProcessLineProdLoad     pickLastDate,_processLineProdLoad;
    Query                   q = new Query();
    Query                   q2 = new Query();
    QueryBuildDataSource    qbr1,qbds2;
    QueryBuildRange         qbr,qbr2;
    QueryRun                qr,qr2;
    NoYes                   _unrackedFlag,_rackedFlag;
    boolean                     deviatedQuery;
    ;

    _unrackedFlag = NoYes::No;
    _rackedFlag   = NoYes::Yes;

    while select pickLastDate
        order by RackStartDate desc
        {
            if(pickLastDate.RackStartDate != datenull())
            {
            _date = pickLastDate.RackStartDate;
            }
        }

        qbr1 = q.addDataSource(tablenum(ProcessLineProdLoad));

       this.query().dataSourceNo(1).clearRanges();



   if(ProductionPool.valueStr()||SchedDate.dateValue()||ProcessLine.valueStr()||UnLoadedFlag.valueStr())
   {
     
   // 1st query started

    qbr =qbr1.addRange(fieldNum(ProcessLineProdLoad,ProcessLineId));
    qbr.value(ProcessLine.valueStr());

    qbr =    qbr1.addRange(fieldNum(ProcessLineProdLoad,SchedDate));
    qbr.value(sysquery::range(SchedDate.dateValue(),SchedDate.dateValue()));

    qbr =qbr1.addRange(fieldNum(ProcessLineProdLoad,ProdPoolId));
    qbr.value(ProductionPool.valueStr());

    qbr =qbr1.addRange(fieldNum(ProcessLineProdLoad,UnRackedFlag));
    qbr.value(UnLoadedFlag.valueStr());

    qbr = qbr1.addRange(fieldnum(ProcessLineProdLoad,RackedFlag));
    qbr = qbr1.addRange(fieldNum(ProcessLineProdLoad,RackStartDate));
    qbr =  qbr1.addRange(fieldNum(ProcessLineProdLoad, RackedQty));
    
    qbr = qbr1.addRange(fieldnum(ProcessLineProdLoad,Division));


    qbr.value(strfmt('(( (%1 == %2)) || ((%3 >= %4)||(%3<=%5))&& (%6 > %7) && (%8 == %9))',    

    fieldstr(ProcessLineProdLoad,RackedFlag),
    queryValue("1"),

    fieldstr(ProcessLineProdLoad,RackStartDate),
    queryValue(_date),
    queryValue(today()),

    fieldstr(ProcessLineProdLoad,RackedQty),
    queryValue("0"),    

    fieldstr(ProcesslineProdLoad,Division),
    queryValue("22")
    ));

    qbr1.addSortField(fieldnum(ProcessLineProdLoad,ProcessLineId),SortOrder::Ascending);
    qbr1.addSortField(fieldnum(ProcessLineProdLoad,SchedDate),SortOrder::Ascending);
    qbr1.addSortField(fieldnum(ProcessLineProdLoad,LoadRunOrder),SortOrder::Ascending);
    qbr1.addSortField(fieldnum(ProcessLineProdLoad,LoadNum),SortOrder::Ascending);
    qbr1.addSortField(fieldnum(ProcessLineProdLoad,ProdId),SortOrder::Ascending);

    qr = new QueryRun(q);

    while(qr.next())
    {
        _processLineProdLoad = qr.get(tablenum(ProcessLineProdLoad));

        if(_processLineProdLoad)
        {
            this.query(q);
        }
      deviatedQuery = true;

    }

     // 1st query ended

     // 2nd query started

        if(!deviatedQuery)
        {
            qbds2 = q2.addDataSource(tablenum(ProcessLineProdLoad));

            qbr2 = qbds2.addRange(fieldnum(ProcessLineProdLoad,ProcessLineId));
            qbr2.value(ProcessLine.valueStr());

            qbr2 = qbds2.addRange(fieldnum(ProcessLineProdLoad,UnrackedFlag));
            qbr2.value(UnLoadedFlag.valueStr());

            qbr2 = qbds2.addRange(fieldnum(ProcessLineProdLoad,RackedFlag));
            qbr2.value("1");


            qr2 = new QueryRun(q2);

            while(qr2.next())
            {
                _processLineProdLoad = qr2.get(tablenum(ProcessLineProdLoad));

                if(_processLineProdLoad)
                {
                    this.query(q2);
                }

            }
        }
    
     // 2nd query ended
    }
   
        super();
   
}

Three tier architecture in D365FO

$
0
0

Dear all,

Can you please let me know the below architecture is correct?

Database

IIS web service ( AOS hosted)

Web browser

Please give me more she'd on this

Thanks!

Viewing all 175888 articles
Browse latest View live


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