EBS 自動獲取 建立CCID

2021-05-28 13:17:16 字數 1140 閱讀 6246

declare

l_ccid number;

l_msg  varchar2(1000);

l_chart_of_account_id number;

l_set_of_book_id number;

begin

l_set_of_book_id := fnd_profile.value('gl_set_of_bks_id');

select gsob.chart_of_accounts_id

into l_chart_of_account_id

from gl_sets_of_books gsob

where gsob.set_of_books_id = 1001;

dbms_output.put_line('l_set_of_book_id: '||l_set_of_book_id||

', l_chart_of_account_id: '||l_chart_of_account_id);

-- get the code combination id according to the concatenated segments

-- 已存在的組合,返回ccid,不存在的組合,自動建立並返回ccid

key_flex_code          => 'gl#',

structure_number       => l_chart_of_account_id,

validation_date        => to_char(sysdate,

'dd-mon-yyyy'),

concatenated_segments  => 'b21.50800.01000.000.000000.01002.000.0100');

if l_ccid = 0 then

-- get the error message

l_msg := fnd_message.get;

-- output the error message

dbms_output.put_line(l_msg);

else

-- output the code combination id

dbms_output.put_line(l_ccid);

end if;

end;

EBS動態建立賬戶組合實現

目的 使用程式動態建立賬戶組合。如果賬戶組合存在的話,返回存在的id,不存在的話就動態建立賬戶組合並返回id。實現步驟 1.得到賬簿的chart of accounts id 2.得到賬戶彈性域分隔符 3.呼叫標準的api得到賬戶組合id 具體實現如下 1.得到賬簿的chart of account...

Python自動建立Excel並獲取內容

用到了兩個庫,xlrd和xlwt xlrd是讀excel,xlwt是寫excel的庫 code 1 xlwd用到的方法 xlwt.workbook 是建立了乙個空檔案物件 add sheet 為空檔案物件,是在該檔案中建立乙個工作表,並返回工作表物件 write row,col,data 為工作表物...

如何在EBS雲盤環境下,自動啟用執行keydb集群

keydb號稱可以重複利用磁碟來節省記憶體的成本,如果要啟用flash功能的話,必須使用btrfs或者zfs,本文介紹基於一種zfs的方案。大約這樣的,製作乙個帶有keydb的映象,然後映象啟動的時候掛載雲盤,初始化zfs,掛載到keydb的資料目錄,啟動keydb程序,然後再執行集群初始化命令,一...