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

RE: Financial Dimension based on the Legal Entity

$
0
0

Hi Ludwig

Thanks for your reply.

I have already activated the Site link dimension and in the financial dimensions of the sites legal entity is attached.

The option what you told me is working fine with the nodes after the site for example: i define the following structure

And now when i am creating the journal in the lines i am getting all sites instead of the site of the legal entity in which you are passing the entry and cost center is working fine.

How can i restrict the site also. 


RE: Retail Customer Order Discount

$
0
0

Yes it's possible.

which version do you use of AX ?

Standard scenario :

For MD AX 2012 R3 CU8 go to ure customer order --> Edit :

Click in Header View --> Tab Price and discount --> and choose ure line discount groupe :

When u Save :

After u go to ure POS and recall that order and the discount would be apply on customer order.

If this scenario doesn't work u need to install this Hotfix for AX 2012 R3  :

KB 3087584  Discount percentage not shown in POS when recalling a sales order created in HQ

Regards,

Retail Customer Order Discount

$
0
0

Is it possible to apply discount on Customer Order by recalling that order? If Possible then How?

RE: Weight scale machine with Ax 2012 R3 Retail POS

$
0
0

Hi Nimisha,

If ure Scale is not supports by OPOS driver, and ure scale can print the label barcode with net amount of price u can use this scenario:

Config ure AX Price embedded barcode :

community.dynamics.com/.../price-embedded-barcode-in-ax2012

Config ure Scale to print lable barcode like this : 10000025000

1- put ure product in scale.

2- ure scale print label barcode with net amount.

3- Scane this label in POS it will do a backward calculation to give u the quantity.

Regards,

Weight scale machine with Ax 2012 R3 Retail POS

$
0
0

Hi All,

I am working in Ax 2012 R3 and configuring weight scale machine device  in it.

Below screen short are my setup in AX.

1. For product configuration :

2. Also add device name in scale tab in hardware profile in retail menu as per below screen short:

After run jobs.

But in POS, when I put product in scale after select product in product search menu , the following error is generated :

Is something missing? Please advice me.

RE: Financial Dimension based on the Legal Entity

$
0
0

Hi Imran,

Can you test on one of your accounts shown in the screenshot above what happens if you setup the financial dimension "site" in the Chart of Accounts at the legal entity level as the default or fixed financial dimension value.

Ludwig

RE: Using AX 7 VM offline

$
0
0

Hi Karin,

This is not possible. AX7 uses Azure Active Directory as authentication provider. Thus you need to have internet access to have the authentication executed.

Using AX 7 VM offline

$
0
0

Is there any way to use the AX 7 VM environment offline? I do not always have a stable Internet connection available when I'm trying to work. As far as I can tell an online connection is only needed for authenticating the user against the Azure Active Directory. Everything else seems to be local. If I'm already logged into AX then I can continue working without Internet connection for a short while. At some point it becomes necessary to log in again though. Is there a way to change the authentication method for the user? Thanks for any ideas.


RE: Blocker in AX

$
0
0

Thanks, Andre.

I am seeing a sql statement 'update ledgertrans', so it's most likely a AX operation, but, its SPID is not showing up in online user form.

In fact, there are a lot of sql SPID not showing up in Form, but, I am pretty sure there are AX related.

Maybe, in online user form, it's only show top SPID?

RE: Data in Grid

Data in Grid

$
0
0

Dear Expert

I have a grid on form which  is bound to data source "TableA" 

Now I want to populate this grid Column  "itemId" From table SalesLine column (itemid).

As the user enter invoice no in text box i want to populate the grid and create rows in grid

automatically. 

Thanks in advance

AFRIDI

RE: Blocker in AX

$
0
0

Here is a query you can use to get a more detailed view on what is happening on the SQL Server, and perhaps help you map the SPID in "Online Users" against SPID on the SQL Server.

-- forums.learnsqlserver.com/SqlServerTopic40.aspx

USE master
GO
IF ( SELECT OBJECTPROPERTY(OBJECT_ID('sp_lock3'), 'IsProcedure')) = 1
    DROP PROC dbo.sp_lock3
GO
CREATE PROC dbo.sp_lock3 (
    @spid1 INT = NULL /* Check only this spid; if this is NULL then all spids will be checked */ 
    , @spid2 INT = NULL /* and this spid; if this is not null, @spid1 must be not null as well */ 
)
AS

CREATE TABLE #locktable (
    spid SMALLINT
    , loginname NVARCHAR(128) 
    , hostname NVARCHAR(128)
    , dbid INT
    , dbname NVARCHAR(128) 
    , objId INT
    , ObjName  NVARCHAR(128)
    , IndId INT
    , Type NVARCHAR(4)
    , Resource NVARCHAR(16)
    , Mode NVARCHAR(8)
    , Status NVARCHAR(5)
)

SET NOCOUNT ON

IF @spid2 IS NOT NULL AND @spid1 IS NULL
    SET @spid1 = @spid2

DECLARE @object_id INT,
  @dbid INT,
  @DynamicSql NVARCHAR(255)

/***** @spid1 is  provided so show only the locks for @spid1 and @spid2 *****/ 
IF @spid1 IS NOT NULL
    INSERT #locktable ( spid, loginname, hostname, dbid, dbname, objId, ObjName, IndId, Type, Resource, Mode, Status )
    SELECT CONVERT (SMALLINT, l.req_spid) 
        , COALESCE(SUBSTRING (s.loginame,  1,  128), '')
        , COALESCE(SUBSTRING (s.hostname,  1,  128), '')
        , l.rsc_dbid
        , SUBSTRING (DB_NAME(l.rsc_dbid),  1,  128)
        , l.rsc_objid
        , ''
        , l.rsc_indid
        , SUBSTRING (v.name,  1,  4)
        , SUBSTRING (l.rsc_text,  1,  16)
        , SUBSTRING (u.name,  1,  8)
        , SUBSTRING (x.name,  1,  5)
    FROM master.dbo.syslockinfo l JOIN master.dbo.spt_values v
        ON l.rsc_type = v.number
    JOIN master.dbo.spt_values x
        ON l.req_status = x.number
    JOIN master.dbo.spt_values u
        ON l.req_mode + 1 = u.number
    JOIN master.dbo.sysprocesses s
        ON l.req_spid = s.spid
    WHERE v.type = 'LR' AND x.type = 'LS'      AND  u.type = 'L' AND l.req_spid in (@spid1, @spid2) and l.rsc_dbid not in (32767)

ELSE /***** @spid1 is not provided so show all the locks *****/ 
    INSERT #locktable ( spid, loginname, hostname, dbid, dbname, objId, ObjName, IndId, Type, Resource, Mode, Status )
    SELECT CONVERT (SMALLINT, l.req_spid) 
        , COALESCE(SUBSTRING (s.loginame,  1,  128), '')
        , COALESCE(SUBSTRING (s.hostname,  1,  128), '')
        , l.rsc_dbid
        , SUBSTRING (DB_NAME(l.rsc_dbid),  1,  128)
        , l.rsc_objid
        , ''
        , l.rsc_indid
        , SUBSTRING (v.name,  1,  4)
        , SUBSTRING (l.rsc_text,  1,  16)
        , SUBSTRING (u.name,  1,  8)
        , SUBSTRING (x.name,  1,  5)
    FROM master.dbo.syslockinfo l JOIN master.dbo.spt_values v
        ON l.rsc_type = v.number
    JOIN master.dbo.spt_values x
        ON l.req_status = x.number
    JOIN master.dbo.spt_values u
        ON l.req_mode + 1 = u.number
    JOIN master.dbo.sysprocesses s
        ON l.req_spid = s.spid
    WHERE v.type = 'LR' AND x.type = 'LS' AND u.type = 'L' and l.rsc_dbid not in (32767)

/**********************************************************************************************
    Because the locks exist in any database, you must USE <database name> before running OBJECT_NAME 

    We use a dynamic SQL loop to loop through each row from #locktable

    A temp table is required here since SQL Server 2000 cannot access a table variable when issuing dynamic sql
**********************************************************************************************/
-- Initialize the loop
SELECT TOP 1 @dbid = dbid, @object_id = ObjId FROM #locktable WHERE Type ='TAB' AND ObjName = ''

WHILE @dbid IS NOT NULL
    BEGIN
        SELECT @DynamicSql = 
         'USE ' + DB_NAME(@dbid) + char(13) 
         + 'UPDATE #locktable SET ObjName = OBJECT_NAME(' 
            + CONVERT(VARCHAR, @object_id) + ') WHERE dbid = ' + CONVERT(VARCHAR, @dbId) 
         + ' AND objid = ' + CONVERT(VARCHAR, @object_id) 

        EXEC sp_executesql @DynamicSql

        SET @dbid = NULL -- TSQL preserves the "old" value unless you initialize it to NULL
        SELECT @dbid = dbid, @object_id = ObjId FROM #locktable WHERE Type ='TAB' AND ObjName = ''
    END

SELECT * FROM #locktable 
    WHERE objname NOT LIKE '#locktable_____%' -- don't return this temp table 
        AND objid > 100 -- do not return system table locks
        AND objname <> 'spt_values'
GO

You run the query above to install the sp_lock3 procedure on the instance, and after that it is available globally on that SQL Server instance. You then simply open a new query window and run "sp_lock3". 

RE: Commerce Run-time\Services

$
0
0
 
I downloaded and installed the hotfix.
 
Now I facing some errors in \POS Plug-ins \Services classes.
 
Eg. While building \Retail SDK\POS Plug-ins\Services\Item, its shows some error like
(Even if there is no customization)
 
Error  1      Thetype'DevExpress.XtraEditors.XtraForm'isdefinedinanassemblythatisnotreferenced.Youmustaddareferencetoassembly'DevExpress.Utils.v14.2, Version=14.2.107.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a'.
 
Once we added the reference DevExpress.Utils.v14.2, it starts to shows some duplicate  reference error.
 
Error  2      Thetype'DevExpress.XtraEditors.PanelControl'existsinboth'C:\Program Files (x86)\DevExpress 2011.2\Components\Bin\Framework\DevExpress.Utils.v11.2.dll'and'C:\Program Files (x86)\Microsoft Dynamics AX\60\Retail POS\DevExpress.Utils.v14.2.dll'      
 
 
If I remove DevExpress.Utils.v11.2.dll, its shows different error.
 
Error  3      Thetype'DevExpress.LookAndFeel.ISupportLookAndFeel'isdefinedinanassemblythatisnotreferenced.Youmustaddareferencetoassembly'DevExpress.Utils.v11.2, Version=11.2.111.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a'.
 
Please help me, how can I go-ahead.

Thanks In Advance

 

RE: Weighted Average Cost in Report

$
0
0

Hi Nishad,

When you are using FIFO and did not run inventory closing or recalculations the cost is at that time also average.

Furthermore if you have FIFO, you can't expect that reports will show you something else. What is the exact requirement?  

RE: Install Management Reporter for AX 2012 R2 CU7 / CU9

$
0
0

Hi Tommy,

Thank you so much for your quick resposne.

As we are currently not using MR but we are planning to use it soon in a short while. So, to understand further,

I should proceed with the upgrade to CU9 and then with the AX 2012 R2 CU9 setup(Installation Media), I should proceed with the installation of MR in the following sequence,

1. Management Reporter

2. Management Reporter Report Designer.

There is no other installation file required to download in order to install Management reporter.

Would appreciate for your help.

Sincerely,

Muneeb


RE: Reverse elimination (fixed price project) after receiving a vendor invoice

$
0
0

Thank you André for the answer.  

Reverse elimination (fixed price project) after receiving a vendor invoice

$
0
0

I have the following question. I have a fixed price project and all invoices were sent to the customer. For financial reasons, I do need to take result in January, so I estimated the project in January. Unfortunately, we receive costs in February and we do want to send an invoice to the customer for those costs. The only thing I can do is “Reverse elimination”, create the invoice for the customer and estimate again. But now I do have the result in February instead of January, so the question is how I can solve this, I do want to keep the original estimation in January.

RE: Cannot start AOS / Error: Cannot create another system semaphore.

$
0
0

Hi George Hogge,

Were you able to get a solution for this? Could you please share here as I am facing the similar issue on one of my environments.

Thanks in advance,

SKP

Cannot start AOS / Error: Cannot create another system semaphore.

$
0
0

I had a operating test system of AX 2012 R3 CU8. I used the AX setup tool to uninstall the AOS and then re-install it. Now when I try to start the AOS I get a message that leads me to the event logs where the error reports: Cannot create another system semaphore.

RE: Install Management Reporter for AX 2012 R2 CU7 / CU9

Viewing all 175888 articles
Browse latest View live


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