How to setup and process Intercompany accounting [AX2012]
In this post, I will take you through a very simple functionality called the intercompany accounting in dynamics AX 2012. This is a simple walk through of the setup required to be able to do intercompany transactions and also we will post and verify the ledger updates for an actual intercompany transaction in both the source and destination legal entities.
We will do this in the CONTOSO dataset. Let us say that the CEU is the source company and CEE in the destination legal entity and CEE ordered some stationary for promotional events, for which the finance controller of CEU received the invoice. Now the controller needs to post and intercompany entry to record the transaction in CEE.
Let us now look at the setup we need to do in CEU and CEE for these to be able to intercompany transactions with each other.
In CEU company, navigate to GL > Setup > Posting > Intercompany accounting and see that its required IC setups.
Credit account: The ledger account that contain the intercompany credit transactions.
Debit account: The ledger account that contain the intercompany debit transactions.
Journal : It is the name of the journal to which the transactions are transferred.
Now, in the CEE company, navigate to GL > Setup > Posting > Intercompany accounting and see that its required IC setups.
We have now done/verified the necessary setups for the intercompany transactions. Let us now go and post and actual transaction and verify the impacts.
Say that the CEU and CEE ordered some stationaries for which CEU finance controller of CEU received the invoice. Now the controller needs to post and intercompany entry
For this do the following.
- In CEU go to GL > General Journal and create a new intercompany journal.
2. Click lines and enter account type = ledger , Main account = 110180(Petty cash account) and credit amount of $1000.
3. Click General tab and select offset account company = CEE, account type = Ledger and account = 6300
4. Click post and notice the info log. (One in CEE and another in CEU)
5. Let us now verify the voucher postings. In CEU, navigate to GL > Inquiries > Voucher transactions and fetch the required voucher. Please see the screen below and verify that the petty cash account is credited and the Inter unit receivable – CEE account is debited. ( This is the debit account which we did set in the inter company accounting setup form earlier).
6. Now go to entity CEE and notice the voucher. The Due to CEU account(3360 is the credit account which set in the intercompany accounting setup parameters of CEE entity.
7. You may also wish the see the IC journal which got created in the CEE company as shown below.
Simple !!!!!!! That’s it for today.
Thanks
Keep DAXING
How to setup and process Intercompany accounting [AX2012]的更多相关文章
- Oracle Global Finanicals Technical Reference(一个)
Skip Headers Oracle Global Finanicals Oracle Global Financials Technical Reference Manual Release 11 ...
- Oracle Global Finanicals Technical Reference(一)
Skip Headers Oracle Global Finanicals Oracle Global Financials Technical Reference Manual Release 11 ...
- FTP规范
FTP协议命令+返回值+返回值解析 FTP message format:FTP commands are Telnet strings terminated by the Telnet end of ...
- how to reset mac root password
Reset 10.5 Leopard & 10.6 Snow Leopard password Power on or restart your Mac. At the chime (or g ...
- GL_GL系列 - 日记账处理管理分析(案例)
2014-07-07 Created By BaoXinjian
- Cannot Create Supplier Site (Address) (文档 ID 1069032.1)
Error Address and Site Creation - Unable to create address and sites because of the following error ...
- OpenTSDB-Writing Data
Writing Data You may want to jump right in and start throwing data into your TSD, but to really take ...
- iOS.CocoaPods.0
1. CocoaPods CocoaPods 是Objective-C (iOS and OS X) projects 的依赖管理器. A CocoaPod (singular) is a speci ...
- libjpeg的问题
游戏项目是基于cocos2d-x开发的,但线上发现一个bug就是玩家在设置完自定义头像后直接闪退.凡是在设置该玩家头像的地方,游戏就直接闪退.最终定位到的问题是图片数据源有问题,我的机器是win7,图 ...
随机推荐
- 安装Weblogic11g
1.下载weblogic11g http://www.oracle.com/technetwork/middleware/weblogic/downloads/wls-for-dev-1703574. ...
- Linux Hugepage ,AMM及 USE_LARGE_PAGES for oracle 11G(转载)
1. Hugepage基本概念 系统进程是通过虚拟地址访问内存,但是CPU必须把它转换成物理内存地址才能真正访问内存.为了提高这个转换效率,CPU会缓存最近的“虚拟内存地址和物理内存地址”的 ...
- Android设置不被系统设置改变的字体大小
原因 从4.0开始,系统设置中“显示”可以对字体大小进行配置,这会影响到TextView等控件中文字显示的大小. 解决方案 在自定义的Activity中重写getResources方法 @Overri ...
- 如何安装iso镜像文件
1.使用压缩软件打开iso文件 2.点击setdup.exe文件,双击打开 3.解压缩后等待安装
- svn 终端命令
你可以仅仅删除冲突的文件并且提交,但是svn resolved除了删除冲突文件,还修正了一些记录在工作拷贝管理区域的记录数据,所以我们推荐你使用这个命令. 恢复本地修改 svn revert [-- ...
- 剖析Disruptor:为什么会这么快?(二)神奇的缓存行填充
原文链接:http://mechanitis.blogspot.com/2011/07/dissecting-disruptor-why-its-so-fast_22.html 需FQ 计算机入门 ...
- mybatis-generator 代码自动生成工具
今天来介绍下怎么用mybatis-gennerator插件自动生成mybatis所需要的dao.bean.mapper xml文件,这样我们可以节省一部分精力,把精力放在业务逻辑上. 之前看过很多文章 ...
- Android 类库打包、发布方法
开发Android应用的时候,对于可用于多个应用的公用的部分,或是打算发布给第三方进行应用集成的部分,要把这部分打包成类库怎么做呢? Android应用使用ADT打包成apk,apk中包含了运行程序所 ...
- ASP.NET MVC4 学习系统四(视图)
视图(Views) 在ASP.NET MVC框架中,想要返回给用户HTML的控制器操作,就要返回ActionResult类型的ViewResult实例,ActionResult知道如何渲染应答结 ...
- 二模07day2解题报告
T1.采药(medic) 有n个草药,要在m的时间内获得最大价值. 乍一看像是01背包,然而数据只能过50分. 考虑数据范围,t<=10,w<=10,所以只有121种草药.考虑多重背包的二 ...