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.

  1. 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]的更多相关文章

  1. Oracle Global Finanicals Technical Reference(一个)

    Skip Headers Oracle Global Finanicals Oracle Global Financials Technical Reference Manual Release 11 ...

  2. Oracle Global Finanicals Technical Reference(一)

    Skip Headers Oracle Global Finanicals Oracle Global Financials Technical Reference Manual Release 11 ...

  3. FTP规范

    FTP协议命令+返回值+返回值解析 FTP message format:FTP commands are Telnet strings terminated by the Telnet end of ...

  4. 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 ...

  5. GL_GL系列 - 日记账处理管理分析(案例)

    2014-07-07 Created By BaoXinjian

  6. Cannot Create Supplier Site (Address) (文档 ID 1069032.1)

    Error Address and Site Creation - Unable to create address and sites because of the following error ...

  7. OpenTSDB-Writing Data

    Writing Data You may want to jump right in and start throwing data into your TSD, but to really take ...

  8. iOS.CocoaPods.0

    1. CocoaPods CocoaPods 是Objective-C (iOS and OS X) projects 的依赖管理器. A CocoaPod (singular) is a speci ...

  9. libjpeg的问题

    游戏项目是基于cocos2d-x开发的,但线上发现一个bug就是玩家在设置完自定义头像后直接闪退.凡是在设置该玩家头像的地方,游戏就直接闪退.最终定位到的问题是图片数据源有问题,我的机器是win7,图 ...

随机推荐

  1. android点击状态分析

    android:addStatesFromChildren="true" :父类从子类中获取点击状态. android:duplicateParentState="tru ...

  2. arm交叉编译器gnueabi、none-eabi、arm-eabi、gnueabihf、gnueabi区别

    命名规则 交叉编译工具链的命名规则为:arch [-vendor] [-os] [-(gnu)eabi] arch – 体系架构,如ARM,MIPSvendor – 工具链提供商os – 目标操作系统 ...

  3. SQL语句在OLAP的妙用(多维分析与指标计算)

    ================================================================================ BI传统实现原理: 1.涉及维度管理( ...

  4. Oracle Grid Infrastructure: Understanding Split-Brain Node Eviction (文档 ID 1546004.1)

    In this Document   Purpose   Scope   Details   What does "split brain" mean?   Why is this ...

  5. jdk线程的简单使用

    一.线程的实现方式方式一:继承Thread类一个类只要继承了Thread类,并重写run()方法,则就可以实现多线程的操作. public class ThreadDemo01 { public st ...

  6. Unity协程(Coroutine)原理深入剖析(转载)

    记得去年6月份刚开始实习的时候,当时要我写网络层的结构,用到了协程,当时有点懵,完全不知道Unity协程的执行机制是怎么样的,只是知道函数的返回值是IEnumerator类型,函数中使用yield r ...

  7. 【LeetCode】21. Merge Two Sorted Lists

    题目: Merge two sorted linked lists and return it as a new list. The new list should be made by splici ...

  8. MSP430F149学习之路——UART

    代码一: #include <msp430x14x.h> void int_clk() { BCSCTL1 &= ~XT2OFF; BCSCTL2 |= SELM_2 + SELS ...

  9. AX调用.dll

    1,将DLL拷贝到C:\Program Files (x86)\Microsoft Dynamics AX\50\Client\Bin 2,在AOT添加引用,在选择你拷贝的DLL,确定.//Acces ...

  10. poj2027

    #include <stdio.h> int main(){ int n; int a,b; while(~scanf("%d",&n)){ while(n-- ...