ABAP--關於ABAP Dictionary的一些簡單問題
在ABAP的資料字典裏可以創建哪些類型的物件?
Tables
Views
Data Elements
Structures
Table Types
Type Groups
Domains
Search Helps
公告版位
- Jul 18 Wed 2007 23:21
ABAP--關於ABAP Dictionary的一些簡單問題
- Jul 18 Wed 2007 23:12
SAP FI模組與SD、MM的介面配置基本方法
1 FI/SD 藉口配置
FI/SD通過tcode VKOA為billing設置過帳科目,用戶可以創建自己的科目定義資料表。 科目是做到COA級的,通過KOFI/KOFK這兩個condition type確定分別過帳到FI和CO憑證中。 由於PricingProc.是同SalesOrg.相關聯的,所以科目在Organization上首先要做到SalesOrg. 級,其後的AccountKey是在PricingProc.中和不同的PriceConditionType相關聯的,決定著最終銷售收入、折扣、附加費用、預提等過到不同科目上。
2 FI/MM 藉口配置
FI/MM通過tcode OBYC為所有的庫存移動設置過帳科目,系統用不同的TransactionKey決定了不同的移動類型/業務類型,對於這些TK的含義,SAPLIB中有較為詳細的解釋,可參閱。
科目的配置可以按照需要做在ValuationArea(Plant)和ValuationClass層。 特別是我認為FI/MM AccountDetermination中最有意思的就是TK為GBB的科目定義,其中有一個東東叫做GeneralModificationKey,這個GMK是同MovementType直接相連的;除了很多標準的GMK之外,用戶也可以自定義,並將它們同自定義的MovementType相關聯,以決定不同的MT連接 到不同的過帳科目上。
3 實例說明
可以按照資料到系統中配置一下,並做一些例子,有助於理解這些科目配置
3.1、對於收貨(特別是來自採購的收貨)和發票錄入IV/LIV,常用的TransactionKey為:
BSX 同ValuationClass相關聯的所有基於存貨科目的過帳
FR1、FR3 運費和關稅的清帳科目(需要通過IV/LIV做Clear,類似GR/IR科目)
- Jan 09 Tue 2007 23:50
理財 網址
http://www.funddj.com/y/yFund.htm 基智網
http://moneyq.org/stock/index.php 國際股市行情
http://www.moneyq.org/stock2/ 國際商匯行情
http://chinayes.com/chn/finance/ 鉅亨網金融中心
http://tw.gogofund.com/mktindex/market.asp 全球股市行情
- Nov 02 Wed 2005 14:26
有許多聽力練習資料的網站
http://www.listeningexpress.com/downpage.aspx
- Oct 18 Tue 2005 14:46
美國的系列喜劇Friends -第一集
這是從F6的網站上看到的資料
Friends 第一季第一集:The One Where Monica Gets a New Roommate
這集主要講Rachel逃婚,來找Monica,並決定與Monica同住。Ross以前一直暗戀Rachel,這次終於故起勇氣,試著向Rachel表白。
此劇一開始,是Monica, Joey, Chandler, Phoebe四個人在Central Perk咖啡廳聊天,Monica談到她新交的男朋友。
Monica: There's nothing to tell! He's just some guy I work with!
Joey: C'mon, you're going out with the guy! There's gotta be something wrong with him!
Chandler:All right Joey, be nice. So does he have a hump? A hump and a hairpiece?
- Oct 18 Tue 2005 13:13
貿易價格術語
貿易價格術語
trade term / price term 價格術語
world / international market price 國際市場價格
FOB (free on board) 離岸價
C&F (cost and freight) 成本加運費價
- Oct 10 Mon 2005 18:30
ABAP程式設計師要懂的103個問題
1. What is the typical structure of an ABAP program?
2. What are field symbols and field groups.? Have you used "component idx of structure" clause with field groups?
3. What should be the approach for writing a BDC program?
4. What is a batch input session?
5. What is the alternative to batch input session?
6. A situation: An ABAP program creates a batch input session. We need to submit the program and the batch session in background. How to do it?
7. What is the difference between a pool table and a transparent table and how they are stored at the database level?
8. What are the problems in processing batch input sessions? How is batch input process different from processing on line?
9. What do you define in the domain and data element?
10. What are the different types of data dictionary objects?
- Aug 08 Mon 2005 10:20
Oracle 常用語法
ORACLE 常用的SQL語法和資料物件
2001-08 餘楓編
一.資料控制語句 (DML) 部分
1.INSERT (往資料表裏插入記錄的語句)
INSERT INTO 表名(欄位名1, 欄位名2, ……) VALUES ( 值1, 值2, ……);
INSERT INTO 表名(欄位名1, 欄位名2, ……) SELECT 欄位名1, 欄位名2, …… FROM 另外的表名;