SAP depreciation key config
正常折旧 Configure
1.分配总帐科目
spro进入后台配置 –> Financial Accounting(New) –> Asset Accounting –> Depreciation –> Ordinary Depreciation –> Assign Accounts
或者 T-code AO90 。
正常折旧对应的费用科目为正常折旧的费用科目(Expense account for ordinary depreciat),折旧科目为Acc. dep. Accnt. for ordinary depreciation。
基本方法设置
SPRO进入后台配置 –> Financal Accounting(New) –> Asset Accounting –> Deprecation –> Valuation Methods –> Deprecation Key –> Calculation
Methods –> Define Base Methods.
最关键的是折旧方法设置,折旧方法是SAP预先设定的。
折旧码
SPRO进入后台配置 Financial Accounting(New) –> Asset Accounting –> Valuation Methods –> Depreciation Key –> Maintain Depreciation Key
或者使用 T-Code:AFAMA,就可以看到上图所示折旧码清单。
Base Method(基本方法)
> Base method : 包含了控制计算折旧的参数。
> Type of depreciation : Ord.depreciation(普通折旧),Special tax. depreciation(特别税折旧),Interest(利息)
折旧类型分:普通折旧(Ordinary depreciation),(Special depreciation),计划外折旧(Unplanned depreciation),(Depreciation from write-off of reserves).
> Dep. method : 折旧计算方法
例如:直线法-按百分比折旧(Percentage from the useful life) 系统会按照每年分折旧相同的比率。
> Treatment of end of depreciation(计划期结束后的折旧) : 若需要系统在预期有用寿命末期之后继续折旧,则设置此标识。
Prd cont(Period Control Method 周期控制方法)
通过设置适当的周期控制方法,你可以决定资产折旧开始日期。
Acquisitions(购置) | Subsequent acquisitions(下一年购置) | Retirements(报废) | Intracompany transfers(转让) | |
Z01 | 11 | 01 | 01 | 11 |
Z02 | 01 | 01 | 01 | 11 |
Z03 | 01 | 01 | 01 | 01 |
Z04 | 01 | 01 | 01 | 01 |
Z05 | 11 | 01 | 01 | 01 |
01 : 在每月期间开始日期
> 折旧开始/结束总是发生在收购或者并购的月初
> 例如:Acq. date 2013/9/15 ,Dep. start date 2013/9/1
11 : 下一月
> 折旧开始/结束总是发生在下个月初
> 例如:Acq. date 2013/9/15 ,Dep. start date 2013/10/1
http://www.kuaipan.cn/file/id_2600439489314879.htm
SAP depreciation key config的更多相关文章
- openssh-win64 on windows2016 ssh pub key config
DO NOT follow the official M$ documentation at https://docs.microsoft.com/en-us/windows-server/admin ...
- [转载]config文件的一个很好的实现
以下是转载于网上的一个很好的config文件的实现,留存以备案 //Config.h #pragma once #include <string> #include <map> ...
- 两种读写配置文件的方案(app.config与web.config通用)
第一种方法:采用MS现有的ConfigurationManager来进行读写 using System.Configuration; namespace Zwj.TEMS.Common { publi ...
- 项目文件中含有两个config文件,app.config与app1.config,如何获取app1.config中的配置
想要通过配置文件配置C#前台画面,好奇做了以下测试:在项目中新建了app.config与app1.config两个配置文件,请教一下各位高手如果想从app1.config中读取配置信息应该如何读取?采 ...
- [转]C++编写Config类读取配置文件
//Config.h #pragma once #include <string> #include <map> #include <iostream> #incl ...
- C++编写Config类读取配置文件
老外写的一段代码,在Server中编写这个类读取配置文件比较实用 //Config.h #pragma once #include <string> #include <map> ...
- winform 写App.config配置文件——IT轮子系列(八)
前言 在winform项目中,常常需要读app.config文件.如: var version = System.Configuration.ConfigurationManager.AppSetti ...
- 适用于app.config与web.config的ConfigUtil读写工具类
之前文章:<两种读写配置文件的方案(app.config与web.config通用)>,现在重新整理一个更完善的版本,增加批量读写以及指定配置文件路径,代码如下: using System ...
- C# 如何获取自定义的config中节点的值,并修改节点的值
现定义一个方法 DIYConfigHelper.cs using System; using System.Xml; using System.Configuration; using System. ...
随机推荐
- c++-多态小案例
多态小案例 C面向接口编程和C多态 函数类型语法基础 函数指针做函数参数(回调函数)思想剖析 函数指针做函数参数两种用法(正向调用.反向调用) 纯虚函数 抽象类 抽象类基本概念 抽象类在多继承中的应用 ...
- 不加班的秘诀:如何通过AOE快速集成NCNN?
作为我司头发储量前三的程序员 始终仗着头发多奋斗在加班的第一线 时时灵魂拷问自己 年轻人,你凭什么不加班? 虽然我没有女朋友但是,我有代码呀 但我不明白的是,隔壁工位那个,到岗比我迟,下班比我早,天天 ...
- Centos6、Centos7防火墙基本操作整理
Centos7: 查看防火墙状态: firewall-cmd --state 开启防火墙: systemctl start firewalld.service 关闭防火墙(重启失效): systemc ...
- supervisor 相关命令
今天重新使用 supervisor 相关命令的时候,发现已经忘了,下面重新进行记录一下,进行备忘: supervisorctl restart <application name> ; 重 ...
- C++之new关键字
我们都知道new是用来在程序运行过程中为变量临时分配内存的C++关键字,那它跟C语言中的malloc有什么区别呢,相比之下又为什么推荐使用new呢 c++ throwing() void* opera ...
- Python 函数和类
python作为一个面向对象的语言,也有类似java等面向对象语言相同的数据结构(class)的定义,和代码块数据结构定义"函数".为了极大可能的简化代码调用逻辑和书写规则,pyt ...
- 【Java基础】String 相关知识点总结
String 相关知识点总结 字符串的不可变性 概述 String 被声明为 final,因此它不可继承 在 Java8 中,String 内部使用 char 数组存储数据 public final ...
- varnish实现缓存加速
varnish实现缓存加速 一.采用varnish为nginx实现缓存加速1.实验环境:(1)一台varnish缓存服务器,一台nginx服务器(2)关闭防火墙和selinux2.配置varnish( ...
- 浅谈——MySQL存储引擎
博文大纲: 一.MyISAM存储引擎: 二.InnoDB存储引擎: 三.Memory存储引擎特点: 四.如何选择合适的存储引擎? 前言 数据库存储引擎是数据库底层软件组件,数据库管理系统(DBMS)使 ...
- zhy2_rehat6_mysql04 - MHA_故障演示与切换.txt
export LANG=en_US 环境:------------------------------------------ 机器 VPN ip linux 账号/密码manager1 172.28 ...