Skip to content

有害部落格同好會

2014/01/21 / Oracle EBS

如何在 oracle form 上掛入圖片

Notice: 圖片統一放在 OA_MEDIA , 跟 icon 的圖片放一起比較好找

DECLARE
  v_img_path VARCHAR2(500); -- 圖片檔存放路徑
BEGIN
  -- 讀取圖檔路徑, ex./test/AP/testcomn/java/oracle/apps/media
  BEGIN
 
    SELECT VALUE
      INTO v_img_path
      FROM fnd_env_context
     WHERE variable_name = 'OA_MEDIA'
           AND concurrent_process_id =
           (SELECT MAX(concurrent_process_id) FROM fnd_env_context);
 
    -- 把圖片放到圖片物件內
read_image_file(v_img_path || '/cp_map.jpg', 'jpg', 'CP_MAP.MAP_IMG');
  EXCEPTION
    WHEN OTHERS THEN
      fnd_message.debug('無法讀取 CP Map 解說圖檔!!');
  END;
END;

DECLARE v_img_path VARCHAR2(500); -- 圖片檔存放路徑 BEGIN -- 讀取圖檔路徑, ex./test/AP/testcomn/java/oracle/apps/media BEGIN SELECT VALUE INTO v_img_path FROM fnd_env_context WHERE variable_name = 'OA_MEDIA' AND concurrent_process_id = (SELECT MAX(concurrent_process_id) FROM fnd_env_context); -- 把圖片放到圖片物件內 read_image_file(v_img_path || '/cp_map.jpg', 'jpg', 'CP_MAP.MAP_IMG'); EXCEPTION WHEN OTHERS THEN fnd_message.debug('無法讀取 CP Map 解說圖檔!!'); END; END;

2014/01/17 / Oracle EBS

Lost Oracle SYS and SYSTEM password?

資料來源:這裡

If your administration is as good as anybodies, you are bound to loose the not-so-frequently used password for the SYS and SYSTEM users of oracle. Here are a few ways I found to re-set those passwords:

(閱讀全文…)

Continue Reading
2013/12/10 / php

解決 wordpress 406 (無法新增某些 source code) 問題

在 wordpress 貼入程式碼, 出現 406 Not Acceptable 的訊息

沒有深入追蹤, 根據測試大多文章內含有程式碼 chr()函數

既然問題在這類函數, 使用 utf8 (base10) 破壞函數, 用 & #040; 取代 (

就能解決這個問題

2013/12/07 / SAP

ERP導入失敗 普利司通與IBM撕破臉公開互嗆

文章轉貼自:這裡

IBM與客戶輪胎巨人-普利司通(Bridgestone)近日因為ERP導入失敗的專案鬧上法庭,進而演變成公關戰爭。和一般避而不談的作法不同,IBM罕見地公開和客戶嗆聲。

(閱讀全文…)

Continue Reading
2013/11/19 / Oracle EBS

如何比對R12.1.3與之前版本資料結構差異

原廠出品的好東西,  Oracle EBS R12.1.3 與之前版本資料結構異動紀錄,可以查詢以下相關文件

Identifying Data Model Changes Between EBS 12.1.3 and Prior EBS Releases
https://blogs.oracle.com/stevenChan/entry/ebs_data_model_1213

EBS Data Model Comparison Report Overview (Note 1290886.1)

2013/12/10 / Oracle EBS

從 form 上透過呼叫 concurrent 並指定參數

為了澳洲來的使用者, 在標準form上增加一個快速按鈕, 直接從 menu 上執行 concurrent 程式

使用 persionalize 設定步驟如下:

step1. when new form instance, 新增 menu1,

step2. 替 menu1 新增 action, type 選為 builtin

builtin type 選為 execute procedure

argument 設定如下 (使用 fnd_request.submit_request )

='DECLARE 
x_conc_id NUMBER;
BEGIN
 x_conc_id := fnd_request.submit_request(application => ''XX'',
 program  => ''XXOMP002'',
 description => NULL, 
 start_time => NULL, 
 sub_request => FALSE,
 argument1 => ' || 54794 || ',
 argument2 => chr (0),
 argument3 => NULL,
 argument4 => NULL,
 argument5 => NULL,
 argument6 => NULL,
 argument7 => NULL,
 argument8 => NULL,
 argument9 => NULL,
 argument10 => NULL);
 commit;
END'

='DECLARE x_conc_id NUMBER; BEGIN x_conc_id := fnd_request.submit_request(application => ''XX'', program => ''XXOMP002'', description => NULL, start_time => NULL, sub_request => FALSE, argument1 => ' || 54794 || ', argument2 => chr (0), argument3 => NULL, argument4 => NULL, argument5 => NULL, argument6 => NULL, argument7 => NULL, argument8 => NULL, argument9 => NULL, argument10 => NULL); commit; END'

2013/11/08 / Oracle EBS

比對 Oracle Forms 程式碼

方法1. Convert the fmb in txt and compare using any file comparing tool.

  • File -> Administration -> Object List Report (It will create a txt file in the same directory)
  • Then Compare using any text comparing tool.

or

方法2. Another solution is to convert FMB(binary file) to FMT(Text file).

  • Open your forms, then choose menu File:Administration:Convert:Binary_to_text
  • This optin generate a Source Code in text format, do it with your files, then compare the files with a command like “diff” on linux, that list all differences line by line if exists
2013/10/22 / Oracle EBS

從 menu 開啟 webpage

How to call an HTML webpage from 11i Navigator menu

資料來源:metalink [Doc ID 332500.1]

1. Create new Form Function.

2. Go to Properties Tab -> Type –> SSWA plsql function that opens a new window (Kiosk Mode).

3. Go to Web Host Tab -> Host Name –> http://www.oracle.com

4. Go to Web HTML Tab -> HTML Call –> products/index.html (you need to start at a page under oracle.com, like products , solutions, etc. It will not start at the oracle.com home page).

Note: 332500.1 – How To Call An HTML Webpage From 11i Navigator Menu
Note: 883404.1 – How To Access External Url When Using SSWA PLSQL Function

2015/01/21 / Oracle EBS

受保護的內容: 在 chrome執行 Oracle EBS R12 / 11i (修正版)

這篇內容受到密碼保護。如需檢視內容,請於下方欄位輸入密碼:

2013/08/06 / Database

How do I calculate tables size in Oracle

資料來源: 這裡 SELECT owner, table_name, TRUNC(SUM(tb …

Continue Reading

文章分頁

  • Previous
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • ...
  • 20
  • Next

分類

  • 新奇有趣の搶先報導
    • Raspberry Pi
    • 手機相關
    • 推薦軟體
    • 新鮮有趣
    • 生活資訊
  • 想破腦袋の程式技巧
    • Oracle EBS
    • Database
    • Excel, VBA
    • php
    • JavaScript, VBScript
    • VS.NET
    • Others
    • Windows
    • SAP
  • 撩動心弦の短文小品
  • 聚沙成塔の理財守則
  • 不可不知の職場實錄
  • 剎那永恆の生活翦影

近期文章

  • 受保護的內容: 如何透過Personalize功能呼叫另一form來回傳值
  • Win10 / 8 / 7 無法安裝 SSD
  • 受保護的內容: 樹梅派+遠端連線
  • EBS R12 取得客戶的phone, email, URL資料
  • 受保護的內容: 管控Workflow Administrator Role

友站

  • Masaya396's 協奏曲
  • 老塗的咁仔店

其他操作

  • 登入
  • 訂閱網站內容的資訊提供
  • 訂閱留言的資訊提供
  • WordPress.org 台灣繁體中文

Tag Cloud

你目前使用的瀏覽器不支援 HTML5 的 CANVAS 標籤。

  • VB6
  • Oracle EBS
  • VBA
  • LDAP
  • 管理
  • SAP
  • VB.Net
  • CSS
  • SQL
  • HTC
  • WinXP
  • EBS 11.5.10
  • php
  • Oracle DB
  • javascript
  • excel
  • 感情
  • Win7
  • MySql
  • EBS 12.1.3
© 2025 有害部落格同好會 - Powered by SimplyNews