ITPUB??ì3
新一届的微软MVP评选已经开始,欢迎各位推荐!
ITPUB论坛 » Oracle ERP » change functional currency

标题: change functional currency
离线 shadog
老会员


精华贴数 1
个人空间 0
技术积分 1243 (1396)
社区积分 0 (48563)
注册日期 2001-11-16
论坛徽章:1
授权会员     
      

发表于 2006-3-2 08:42 
change functional currency

公司有需求, 改变functional currency. 从cny 到 usd。请问是否有这个可能, 如何作,应该注意什么


__________________
Mail/Msn: shadog80@hotmail.comFighting for life!!!
只看该作者    顶部
离线 melly888
老会员



精华贴数 0
个人空间 0
技术积分 966 (1934)
社区积分 151 (2762)
注册日期 2004-8-17
论坛徽章:0
      
      

发表于 2006-3-2 09:19 
換帳本


__________________
:chai:情就像擂起的沙堡,無論:chni:怎麼努力,都會被無情的海浪沖走:ch.::ch.:MSN: heart_small@hotmail.com
只看该作者    顶部
离线 ellawhq
酷儿


精华贴数 2
个人空间 0
技术积分 4110 (347)
社区积分 607 (1256)
注册日期 2003-4-19
论坛徽章:15
管理团队成员管理团队2006纪念徽章会员2006贡献徽章玉石琵琶嫦娥ERP板块每日发贴之星
每日论坛发贴之星     

发表于 2006-3-2 09:36 
对,安全的处理方式,就是换个帐套,,,


__________________
Oracle FIN ConsultantMSN:kiki.whq@hotmail.comMail:  ellawhq@itpub.net  or kiki.whq@gmail.com欢迎大家到 ITPUB论坛 > ≡ ERP与CRM ≡>Oracle ERP 版块来相互交流,,让我们共同成长成功需要用勇气来改变可以改变的事情,用度量接受不可改变的事情,用智慧来分辨两者的不同
只看该作者    顶部
离线 yegiant
叫我George


精华贴数 7
个人空间 0
技术积分 4799 (280)
社区积分 1531 (720)
注册日期 2002-10-31
论坛徽章:8
现任管理团队成员ITPUB元老管理团队2006纪念徽章会员2006贡献徽章授权会员2008北京奥运纪念徽章:篮球
生肖徽章2007版:鼠2008年新春纪念徽章    

发表于 2006-3-2 11:52 
这个动作相当于变性手术....


只看该作者    顶部
离线 shadog
老会员


精华贴数 1
个人空间 0
技术积分 1243 (1396)
社区积分 0 (48563)
注册日期 2001-11-16
论坛徽章:1
授权会员     
      

发表于 2006-3-2 12:19 
同意, 正在努力劝说我们cfo. 郁闷死了,想做什么就作什么!!!


__________________
Mail/Msn: shadog80@hotmail.comFighting for life!!!
只看该作者    顶部
离线 loveswan
混混


精华贴数 1
个人空间 0
技术积分 4401 (310)
社区积分 71 (4100)
注册日期 2002-4-1
论坛徽章:11
管理团队成员管理团队2006纪念徽章会员2006贡献徽章   
      

发表于 2006-3-2 12:26 
所以人家叫CFO(Change Function Officer)啊,哈哈


__________________
我要从南走到北,我还要从白走到黑我要人们都认识我,但不知道我是谁
只看该作者    顶部
离线 lvxuezh
资深会员



精华贴数 1
个人空间 0
技术积分 2309 (683)
社区积分 36 (5701)
注册日期 2002-8-22
论坛徽章:3
ITPUB元老会员2006贡献徽章授权会员   
      

发表于 2006-3-2 12:44 
高手阿  cfo


__________________
路遥知马力  日久见人心msn: lvxuezh@163.comemail: lvxuezh@163.com
只看该作者    顶部
离线 ludongan
初级会员



精华贴数 0
个人空间 0
技术积分 86 (18548)
社区积分 4 (17447)
注册日期 2004-9-14
论坛徽章:1
2008北京奥运纪念徽章:垒球     
      

发表于 2008-6-25 10:41 
搭著順風車問下,如果所有異動沒有發生,並且還沒有打開過會計期,是否可以修改


只看该作者    顶部
离线 好好工作
资深会员



精华贴数 0
个人空间 0
技术积分 1853 (881)
社区积分 147 (2802)
注册日期 2004-9-27
论坛徽章:2
会员2007贡献徽章ITPUB新首页上线纪念徽章    
      

发表于 2008-6-25 10:59 


QUOTE:
原帖由 ludongan 于 2008-6-25 10:41 发表
搭著順風車問下,如果所有異動沒有發生,並且還沒有打開過會計期,是否可以修改

这种情况下,oracle有类似的更改Calendar的方法,原文如下:
1. Make sure no transactions exist in the Set of Books.

a. Determine the Set of Books ID.

b. Look for no transactions posted in GL_BALANCES table.
   Using SQL*Plus with APPS schema user.

   Select count(*)
   From   gl_balances
   Where  set_of _books_id = &Set_of_books_id;

c. Look for transactions in GL_JE_LINES table.
   Using SQL*Plus with APPS schema user.

   Select count(*)
   From   gl_je_lines
   Where  set_of_books_d = &Set_of_books_id;

If records are returned then consider the sense of changing the start period when journals
already exist. This will not affect the fix but should be looked at.

d. Look for transactions in GL_INTERFACE table.
   Using SQL*Plus with APPS schema user.

   Select count(*)
   From   gl_interface
   Where  set_of_books_d = &Set_of_books_id;

If records are returned it means the subledgers are already opened with the
existing period and pointing to this set of books. This does not affect the fix but consideration should be
given as to whether making an earlier first period will affect the subledger
concerned. Generally it will not but you may not be able to open the earlier
period in the subledger.

2. Define a new set of books using the Calendar, Currency and Accounting
Flexfield structure used in the Set of Books where first period was opened
incorrectly.
   (N) Setup > Financials > Books > Define

3. Change the Set of Books Name associated with each responsibility by the new
name created in the previous step. This is defined by the profile GL: Set of Books
Name.
   Responsibility: System Administrator
   (N) Profile -> System

Please ask for support's help if you have subledgers setup and are unable to duplicate the
setup with iSetup. Quote this note number.


----------------------
没有测试过,楼主试试看,给大家一个答案


__________________
好好工作,天天向上,三年超英,五年赶美
只看该作者    顶部
离线 goodhawk
因为专注,所以专业


来自 上海
精华贴数 1
个人空间 0
技术积分 1489 (1134)
社区积分 5 (15490)
注册日期 2004-10-5
论坛徽章:5
授权会员ITPUB新首页上线纪念徽章    
      

发表于 2008-6-25 17:08 
真是啥需求都有。 错就错在这些CFO上,
考虑问题就不能大气点,有点远见啥。

我也很关注这个问题。

我的想法跟楼上几位类似。
需要新做一个帐套。
1, 已有jes transfer 过来。

建议你可以上一个SR,让Oracle帮忙出个solution。


__________________
真,善,美

*nix , Oracle,Oracle ERP (Fin), Perl,Php
blog: http://www.xiaobaicai.com
Tech:  http://www.appsboss.com
只看该作者    顶部
 
    

相关内容


CopyRight 1999-2006 itpub.net All Right Reserved.
北京皓辰广域网络信息技术有限公司. 版权所有
E-mail:Webmaster@itpub.net
京ICP证:010037号 联系我们 法律顾问