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

RE: Project timesheets and Payroll

$
0
0

Hi,

From accounting perspective it makes sense. From operational perspective, we still need to process payroll, which I was expecting it to get the hours worked from the project timesheets.

Thank you!

Sam


Project timesheets and Payroll

$
0
0

Hi,

When posting the timesheet in project accounting module, how can it be transferred to payroll module so  the employee gets paid through payroll? Looking for documentation on linking both modules.

Thanks

Sam

RE: System hangs when Marking to settle open transactions for a customer?

$
0
0

Hii @Udhaya Chandran Rajendran ,
Pleas guide how to create 2.By creating new index.

RE: how to update a packingslip id in sales order packing slip posting

$
0
0

Hi Rustem,

Thanks for the reply.

I tried the below code which is below but still the packing slip was being picked by the number sequence

//SO confirmation

salesFormLetter = SalesFormLetter::construct(DocumentStatus::Confirmation);
salesFormLetter.update(salesTable, today());


ttsBegin;
select firstOnly forupdate parmTable
where parmTable.ParmId == salesFormLetter.parmId();

if (parmTable)
{
parmTable.Num_W = "test";
parmTable.doUpdate();
}
ttscommit;

// SO packingslip
salesFormLetter = salesFormLetter::construct(DocumentStatus::PackingSlip);
salesFormLetter.update(salesTable, today());

not sure as you mentioned to write before salesformletter.run();

how to update a packingslip id in sales order packing slip posting

$
0
0

Hi all i have difficulty in packing slip  posting of sales order , I want to update packing slip number - 'PO00001' while packing the SO  and not sure how to do that.

normal SO packing slip

// SO packingslip
salesFormLetter = salesFormLetter::construct(DocumentStatus::PackingSlip);
salesFormLetter.update(salesTable,today());

that is how we do normally here i want to update a particular number for packing slip like how  we do in purchase order packing slip.

RE: Exporting a report definition of management reporter

$
0
0

Hi,

I can't find the WWW column included in the building block group that i ve choosed. How can i export it to a building block group?

Thank you,

RE: Populate Data on a form Grid only after using Advanced filter/sort. (Grid should display no Data prior to using Advanced filter/sort)

$
0
0

You can set the data source with AutoSearch=No and execute the query from code when you're ready.

RE: Account number for transaction type Project - cost does not exist. But it should

$
0
0

I am also facing same issue. I also checked all nodes, which are using ; so its means that nodes are entered correct. what else i can do to resolve same issue. i am also confused.

i also modify the form. but for some projects, main account and sub account fields are working good but for some project i got same error. so what i can do?


Account number for transaction type Project - cost does not exist. But it should

$
0
0

Today I began working in our test environment but I cannot post in the project module.  All postings are set up in Project management>Setup>Ledger posting setup.  The account structure looks valid as well in General ledger>setup>Ledger.  Everything works outside of projects.  Has anyone ever come across this?

RE: Populate Data on a form Grid only after using Advanced filter/sort. (Grid should display no Data prior to using Advanced filter/sort)

$
0
0

Hi Martin -

  OK now The first half of my problem is solved. Now the form opens up without any data after changing the Auto Search to No on a Datasource as you said.

But now my Advance Filter/Sort button is not working. (When I click on it no query window opens) I know you mentioned something about Executing the query from code. Can you please suggest a thread if there is any which will help me learn about "execute a query with code" ?

Thanks Again

Recover deleted item arrival journal data (Purchase Order, not posted)

$
0
0

Hi All,

Is it possible to recover the data from a deleted item arrival journal, which was not posted (Purchase Order)?

If so, could you please mention the table(s) or query to retrieve the data? (AX 2012 R2)

Thanks in Advance,

RE: Workflow message processing job error at every 10th min (recursively).

$
0
0

Hi Andre,

Thanks for your prompt response...

No, all 50 records are not pointing to the same purchase order. There are couple of records which don't have PO in purchtable table (when i am checking with WorkflowContextRecId). Also to be more precise, there are 10/50 records which are pointing to some other customized WF as well.

So can i check record by record as you advised or there is no harm in updating to future date (i have tested on lower environment, future date is not poping up WF message error).

RE: Receipt Printing for Suspended Transactions Through Default Receipt Printing Utility In POS Dynamics AX

$
0
0

Hi Abdul,

Your 'test' object is null - and you try to call GetSuspendedTransaction for NULL - it will cause exception

Receipt Printing for Suspended Transactions Through Default Receipt Printing Utility In POS Dynamics AX

$
0
0

I am working to customize a functionality for printing the receipt of suspended transactions. One option is to develop a new crystal report for receipt printing. But I am concerned with the default receipt that is already available in POS and its code is also available in POS SDK (printing, peripheral) . How can I use that receipt for printing the suspended transactions ?

any help will appreciate able.

Thanx in advance. 

RE: Work space - Tile count is not working

$
0
0

Ran into same issue. Was also getting "Query does not contain 1 data sources error"

Apparently the tiles are not getting refreshed even after clicking on begin update.I can say so because when i recreatednew tile with same config as old tile , it started working fine immediately.  However this is a workaround & not fix.

For permanent fix ,I think that below command at Form INIT level would work as that would Force refresh tiles when loading form.

However I cant be sure as I cant get the command to work & get this error message when trying to compile.

TiledataService::forceRefresh(tileStr(mytilename),FormRun );

Severity    Code    Description    Project    File    Line    Suppression State
Error        Type mismatch in 'TileDataService.forceRefresh' argument 2. The expected type is 'SysIDataConsumerHost', but the actual type is 'FormRun'. 

Any ideas


Work space - Tile count is not working

$
0
0

Hey All,

I am facing issue in showing count on tile in workspaces.
I have followed below mentioned link for creating simple tile.
www.sonata-software.com/.../creating-simple-tile-element-dynamics-ax
In my case query is working fine and showing required data whereas count is not appearing on tile.
I also tried to create same tile by following personalizing approach for that form and it showing required count on tile.

Anyone facing this issue?

RE: AX query - sorting with sum field

$
0
0

Hi Keshav Kumar

It didn't worked.

RE: Exporting a report definition of management reporter

$
0
0

Hi,

Can you share screenprints of your building blocks and what report elements you can view there?

Many thanks and best regards,

Ludwig

RE: Account number for transaction type project- cost does not exist.

$
0
0

Hello Hassan,

Have you checked your project posting setup that a project cost account has been setup in the posting profile section?

Best regards,

Ludwig

Connect to external sql database from d365 cloud and on premise

$
0
0

Scenario

From ax 2012 rtm data is been pushed to external sql database using sql.client classeswe want to check feasibility for upgrade to d365 cloud and on premise.

So I want to know how we can connect to external database from d365.any pointer.

Current logic in ax 2012 rtm- we have created one class in aot and used system.data.sqlclient.sqlconnection for connection.

So how we can do it in

D 365 cloud -

D365 on premise-

Thanks ,

Shri

Viewing all 175888 articles
Browse latest View live


Latest Images

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