廣告聯播

2013年9月11日 星期三

Oracle EBS Flexfield Concepts 彈性欄位的概念

From: Polin Wei

    彈性欄位分成兩種:Key flexfields 與 Descriptive flexfield;Key flexfield 出現在 Form 的一般文字類型的輸入型態
  Key flexfield 出現在 Form 的一般文字輸入型態欄位,Descriptive flexfield 則會在 Form 上出現兩個字元寬的方形標示 [ ] 來代表,由下列的圖示可以得知此兩種 Flexfield 的不同。當點擊此 文字欄位[ ] 時,系統會彈出一個視窗,內含一個 From ,藉此來讓使用者輸入資料。
  Key flexfield 使用的時機,一般是用來儲存其它模組要的值 Code ,例如:組織代碼: Org ID,會計科目: Accounting Code,這些 Code 若有多個截段( Segment ) ,可以組合在一起,就成為一串連續的資料,可稱為 combination。如下圖中 Part 欄位的值:COM-876-LTN。

2013年9月3日 星期二

Oracle EBS Interface - OM : Sale Order import

From: Polin Wei
在 Oracle EBS 的訂單模組( OM : Order Management) 有提供訂單匯入的功能,主要操作的 Table 有兩個 : OE_HEADERS_IFACE_ALL、OE_LINES_IFACE_ALL,詳細請參考 Oracle 官方文件:115omapi.pdf 。以下以範例來作說明:
範例1 : 新訂單
-- Insert a Sales Order Header and make the Order's Status is Booked. (表頭:OE_HEADERS_IFACE_ALL,並作 Booked)
INSERT INTO OE_HEADERS_IFACE_ALL (
order_source_id
,orig_sys_document_ref
,creation_date
,created_by
,last_update_date
,last_updated_by
,operation_code
,sold_to_org_id
,booked_flag
,org_id
,customer_po_number )
VALUES (
1001 --order_source_id
,'12345691' --orig_sys_document_ref
,SYSDATE --creation_date
,-1 --created_by
,SYSDATE --last_update_date
,-1 --last_updated_by
,'INSERT' --operation_code
,1891 --sold_to_org_id
,'Y' --booked_flag
,77 --org_id (for specific ou)
,'12345691' -- customer_po_number 
);
-- Insert a Sales Order Line (表身:OE_LINES_IFACE_ALL)
INSERT INTO OE_LINES_IFACE_ALL (
order_source_id
,orig_sys_document_ref
,orig_sys_line_ref
,inventory_item_id
,ordered_quantity
,operation_code
,created_by
,creation_date
,last_updated_by
,last_update_date
,ship_from_org_id
)
VALUES (
1001 --order_source_id
,'12345691' --orig_sys_document_ref
,'1' --orig_sys_line_ref
,285730 --inventory_item_id
, 1 --ordered_quantity
, 'INSERT' --operation_code
, -1 --created_by
, SYSDATE --creation_date
, -1 --last_updated_by
, SYSDATE --last_update_date
, 77 -- ship_from_org_id
);
至於訂單變更,拆行...等請繼續閱讀 Oracle EBS - Interface

2013年9月2日 星期一

FileZilla Server Interface 遠端管理

From: Polin Wei

FileZilla Server 是一套免費的 FTP Server,它的功能強大且簡單設定,大部份都是按 Next & Next,就可以架好一台專屬於您的 FTP Server,且它也支援遠端管理。只要在 FileZilla Server Interface 介面上,選擇 Edit-> Settings 設定選項中 Admin Interfaxe Settings ,設定可以連入及管理的密碼,這樣遠端的電腦只要有裝 FileZilla Server Interface 管理工具就可以從遠端登入這台 FTP Server 作管理了。

圖例說明:http://mistech.pixnet.net/blog/post/212312273-filezilla-server-interface-遠端管理