1. 程式人生 > >oracle ebs 應用筆記

oracle ebs 應用筆記

1 how to set up printer style?
System administrator->Install->Style

2 user a create b.table,default tablespace use b setup.

3 in a trigger,don't need to commit,it will commit automaticlly when end,but it must be committed in a procedure.

4 how to use reports or forms in the forms?
a Run_Product(REPORTS,v_appl_path||v_appl_name,SYNCHRONOUS,RUNTIME,FILESYSTEM,pl_id,NULL);
b Call_Form(v_appl_path||v_appl_name, HIDE, NO_REPLACE,NO_QUERY_ONLY,pl_id);

fnd_function.execute('MEWPOXPOEPO','Y','Y',
                                      'PO_HEADER_ID= '           || :PO.po_header_id ||
                                      ' ACCESS_LEVEL_CODE= VIEW' ||
                                      ' POXPOEPO_CALLING_FORM=MEWITINQ');

5 how to get profile values?
FND_PROFILE.VALUE('GL_SET_OF_BKS_ID')

6 wyh can't i see chinaese in PL/SQL Developer 5.1?
regedit,Oracle目錄下的NLS_LANG健值簡體中文的話改成SIMPLIFIED CHINESE_CHINA.ZHS16GBK
可能的編碼:AMERICAN_AMERICA.ZHS16GBK

11i module:OM table:OE_XXXXX owner:ONT      SO_XXX表仍保留,但不使用。
11 and before module:OE table:SO_XXXXX owner:OE

8 how to test local forms and reports in EBS 11i?
FORMS60_PATH
D:\cmew_upg\erpform\lib;D:\cmew_upg\erpform\form

9 SELECT * FROM user_objects WHERE object_name LIKE 'OE\_%' ESCAPE '\';

10 org_id --> org_name?
SELECT L.DESCRIPTION FROM HR_ALL_ORGANIZATION_UNITS O, HR_LOCATIONS L WHERE L.LOCATION_ID = O.LOCATION_ID AND O.ORGANIZATION_ID = XXXXXX;

11 應該是沒有安裝好的問題.下面有一個黃色的橫條,就不能與系統外面的資料互相COPY了
從正常的機子上複製identitydb.obj

12 what is the relation between the application and the jinitiator ?
application    JInitiator
11.5.9           1.1.8.24
11.5.4             1.1.8.16
11.0.3             1.1.5.21.1

13 how do the form run first in 11i?
form->console window->PROGRESS_INDICATOR->Primary Canvas->PROGRESS_INDICATOR (this is a blank canvas,only a graphic item)
先指向一個視窗,canvas表示為進度,一旦pre-form trigger邏輯完成,就跳轉到blockname視窗。由於pre-form邏輯很簡單,所以一般PROGRESS_INDICATOR視窗不會出現。
導航:in pre-form trigger,app_window.set_window_position('BLOCKNAME', 'FIRST_WINDOW'); blockname window變成了第一個視窗。

14 how to test forms in 11i?
fnd_message.set_string('Hello,world.');
fnd_message.show;

15 what is canvas and window?
一切顯示以window為準,當window大於canvas時,canvas自動擴充顯示;當window小於canvas時,canvas被切割

16 when re-compile a form,how to view the new result?
exit the old form page until arrive to the menu navigator.

17 how to call another form in a form?
FND_FUNCTION.EXECUTE

18 when mouse move another record in the form,it will fire when-new-record-instance trigger.
data block level trigger,such as when-new-block-instance trigger,enter a block,it will be fired.
when-new-record-instance,enter a record,it will be fired.
form level trigger,such as when-new-form-instance,enter a form,it will be fired.

19 in a form,when a item is the database item,when its column name is blank,item's name default accrod with database column name.

20 when will the report take effect after the parameter is changed?
the report will take effect after reusing a responsibility.

21 select xxxx abc from table,the alias abc can't be used in WHERE clause.

22 how to use directX to test system?
start->run->dxdiag

23 how to adjust a report output size?
Layout model-->Main Section-->Property-->Width and Height
Main Report:Unit of Measurement select inch or Centimeter 換單位
Format-->Layout option-->Rulers-->選ruler unit

24 when need recompile a report?
it will be recompiled once pl/sql code is modified.
it needn't recompile when adjust the layout and property of the report.

25 how is different between coa and account flexfield?
when defining a coa,will use the same account flexfield.

26 how do I get the table name by the form?
Help-->Record History,can get the table name used by certain field in the form.

27 how do I get a form name?
Help-->About Oracle Applications,view "Current Form"

28 查詢內部請購單
responsibility:shipping
menu:requisitions/requisitions summary

29 how to make a layout for a report?

1 Report property/Unit of Measurement:Inch
Character Mode/Design in Character Units:Y

2 Layout Model/Main Section/Character Mode:132*66

3 Format/Layout options/rulers/Units:Character Cells
1,1,Cell size:6*9.27273

Stardard print style:
landscape:132*66 LANDSCAPE - HPLJ4 132*57
landwide:180*66    landwide-HPLJ4 180*57

30 where,group子句中,如果定義了表和列的別名,必須用表的別名和列的原名,order by子句中沒有規定,可以任意用。

31 how do inquery information about org_id and organization_id?
org_id          :hr_operating_units
organization_id     :org_organization_definitions2

32 OM and AR share the same customers

33 in the Discoverer,set a user privilege,if Administration is blank,when the user logon the discoverer administration edition,
system will ask about creating EUL;is administration is selected,user logon will normally.if Not select Set Privilege,user 
can not Privilege.

34 只需把view的許可權授予一個使用者,不需要對view的表再一一授權。

35 報表套打多頁,頁面下移
1 report的主體的上下距的設定
2 印表機的上下邊距的設定


36 what are status code for oe header and line?
oe_order_headers_all
flow_status_code in (entered,booked,cancelled,closed)

oe_order_lines_all
flow_status_code in (AWAITING_RECEIPT,AWAITING_RETURN,AWAITING_RETURN_DISPOSITION,AWAITING_SHIPPING,
BOOKED,CANCELLED,CLOSED,ENTERED,FULFILLED,SHIPPED)

37 what is flow about OM?
1 Entered
2 Booked:after booked,so line's status is:Awaiting shipping,Ready to Release
3 release so:when release a so,items from subinventory1(Pick from) to subinventory2(default stage)
4 ship confirm:all released so line will be confirmed.
5 run the report "Workflow Background Process",transfer data from om to ar interface table.
after it done,so line is closed.when all so line is closed,the so header is closed.
6 ar autoinvoice

38 release so的時候,order line裡的計劃出貨的schedule ship date必須修改為當天日期,然後在release so的視窗中設定schedule ship date的範圍,
如果不設定,所有能出貨的貨物全部出貨。

******************************************************************************
39 how to query view based client enviroment?
begin 
apps.fnd_client_info.set_org_context(p_org_id); 
end;

最徹底的方案就是使用:
begin
fnd_global.APPS_INITIALIZE(user_id =>1130 ,resp_id => 50322,resp_appl_id =>660 );
end;
******************************************************************************

select * from OE_TRANSACTION_TYPES.
all operation can be done within a SQL window.

40 in Discoverer,if a fold is from a database,every item will create a item class automatically,if a fold is from a custom SQL,it must be manually created a item class.

41 created_by -> fnd_user.user_id
    fnd_user.employee_id -> per_all_people_f.person_id

42 when ship confirm,the orders that only same delivery id can be deliveried together.

43 in OE menu,Order organizer is used to inquire some informations for orders,Sales Orders is used to create and change a order.

44 在OM裡,來源庫,目的庫,必須都屬於同一個warehouse

45 once pick a release,every order line will create a delivery detail id from wsh_delivery_details table,but the release action will create only delivery name(delivery_id) from wsh_new_deliveries

46 訂單的最終狀態:
oe header,oe lines:closed
delivery status:closed
pick status:shipped
transaction line status:interfaced

47 sales order number is numeric created by system automatically and purchase order number is character input manually.

48 in PO,when input and save a purchase order,the po header status is "incomplete" and change to "Approved" after it pass the approve.The PO number will be created automatically if no input po # manually.

49 After copying sales or purchase order,the new order is created and saved automatically.

50 how do create po and sales order number?
purchase order number is created manually,sales order number is created automatically.

51 the po status is incompleted when it saved and change to approved after approved.

52 GL,AP,AR,INV,PO have own period,it must be open or close for every module.OM has no own period.

53 item在主組織進行錄入,然後分配給庫存組織使用。主組織定義品號,庫存組織開啟會計期。庫存組織不能定義新品號,但可以查詢。

54 pick release has two methods.
辦法1: 修改或者錄入so的時候scheduled ship date一定要填寫適當的日期,release so的時候輸入確定的日期範圍,範圍內的so都被release.
辦法2:scheduled ship date不用輸入具體日期,release so前先執行Auto-Create deliveries,生成交貨號,可以對多個so按Ctrl鍵同時選擇。路徑:ship/transaction/Auto-create deliveries

55 employee information setup is on menu :Setup/Organizations/Employees,by INV Super User responsibility if HR module is absent.

56 直髮訂單,不需release so,ship confirm,但是需要做autoinvoice

57 how is different between invoice and "收據"?
it is by CUST_TRX_TYPE_ID

ap:ap_invoices_all
ar:ra_customer_trx_all

58 直髮訂單
生成直髮so後,匯入請購單,根據生成的請購單,再自動生成PO

59 in PO,Receiving>Receipts>Supplier and Internal為PO接收,Customers為客戶退貨
Receiving>Returns>Supplier and Internal為採購退貨

60 internal company po and so,收貨方->發貨方->收貨方,先生成internal AR invoice,再生成internal company AP Invoice

61 出貨單 由ra_customer_trx_all和ra_customer_trx_lines_all決定,line包含出貨單物品內容。
    裝箱單:由oe_order_headers_all,oe_order_lines_all決定 組織:o.org_id = :P_org_id OR ol.ship_from_org_id = :P_org_id
    內部訂單:同普通訂單,oe_order_headers_all,oe_order_lines_all,訂單行加qp_list_lines.list_header_id=XXXXXX
    請購單: po_requisition_headers_all, po_requisition_lines_all
   
62 oe_order_headers_all
sold_from_org_id 與org_id對比,是否自身的訂單,還是內部直髮
sold_to_org_id     ar_customer.customer_id
ship_from_org_id warehouse_id 哪個倉庫發貨
ship_to_org_id     ra_site_uses_all.site_use_id ship_to_location
invoice_to_org_id ra_site_uses_all.site_use_id     bill_to_location

63 po沒有類似的sold_from_org_id,ship_from_org_id,只有一個org_id

64 inv period setup:Accounting Close Cycle/Inventory Accounting Periods
PO/GL/AP/AR need control period,but OM has no period.

65 price on OM,PO and inv
OM:有price_list,PO裡面沒有。
oe_order_lines_all.price_list_id=qp_list_lines_v.LIST_HEADER_ID and ol.inventory_item_id = ql.product_attr_value
ql.operand = list.price

訂單頭和訂單行的price_list可以不同,訂單行的輸入價格受price_list約束。

PO:
採購單行上的price,list_price分別為po_lines_all中的unit_price,list_price_per_unit,這兩個price都可以修改。unit_price×1.17(tax_code)就為含稅單價,一般為pl.attribute1

INV:
item有自己的list_price_per_unit,market_price,表為mtl_system_items_b

***********
SO的單價是限死的,PO的單價是自己設的
***********

66 item type
FG 成品
SA 半成品
P 原材料
OP ???

67 被approve的PO還可以修改,修改後需要re-approve.
OM booked後,還可以modify the so lines

PO corrections,只是對接收的更正,似乎只能增多,不能減少,減少用退貨。退貨可以選兩種,一種退到supply,交易型別為delivery;一種退到receiver,交易型別為receiving

68 SO的退貨接收分3步
1 做退貨單的RMA型別的SO
2 退貨接收 PO/Receiving>Receipts>Customer
3 退貨接收入庫 PO/Receiving>Receiving Transaction>Customer 第二步所做的接收只做地點接收,沒有入庫
4 Workflow Background engine後做autoinvoice,所生成的發票為:貸項通知書(Credit memo):供應商對已開發票的貨物或勞務,所開的紅衝發票

69 PO一旦被approved,只能通過Purchase order summary or Requisition Summary來檢視information,不能再開啟????PO的似乎可以,PR一旦approved,不能再open.

70 普通add item in inventory,select Transactions/Miscellaneous Transaction/Account alias receipt

71 Intercompany AR invoices和intercomapny AP invoices都在inv的職責下提交報表

72 在公司內部訂單的時候,Shipping Operating Unit是發貨方,Selling Operating Unit是收貨方

73 普通直髮訂單,需要匯入生成請購單,最後自動生成訂單,做採購接收;內部訂單,先手工做請購單,不需要生成採購單,直接做採購接收。因為內部訂單接收方只有PR,沒有PO,所以最後的AP發票無法做匹配,狀態只能是:Never Validated

AR:Create intercompany AR Invoices後,還沒有生成發票,執行autoinvoices,生成發票;同樣的,AP:Create intercompany AP Invoices後,還需執行expense report import,才生成發票。intercompany AR/AP的發票號應該一致

74 how do call a jsp in EBS form?
web.SHOW_DOCUMENT('http://cmew07.bj.ch.mew.com:8002/OA_HTML/NAISQTS/repQuoteSel0.jsp?REQID=100');

75 report顯示的列錯位如何解決?
在字元模式裡調layout,然後把item的寬度固定

76 銷售發票號,發票號,發票號碼
銷售發票號:ra_customer_trx_all invoice_number 系統內
發票號:系統外
發票號碼:系統外

77 what is the interfaces to import item,item category and bom?
item:              mtl_system_items_interface
item category:         mtl_item_categories_interface
item:             mtl_item_categories_interface
parent bom:         bom_bill_of_mtls_interface
inventory bom:         bom_inventory_comps_interface
COST             CST_ITEM_CST_DTLS_INTERFACE

78 如果多組織的item為同一個,匯入時可一次性匯入;cost只能分別匯入;category因為各組織一般不相同,所以也分開來匯入。

79 cost update
1 先手工錄入或者匯入Pending,然後做Costing/Item costs/Standare cost update/Update Costs,把成本從pending轉換成Frozen,Frozen為正式使用的成本。建立一個ITEM後,系統會自動生成一個Frozen型別的空的cost。Actual型別的cost一般不使用。
一個成品由半成品和若干原材料構成,成本分材料費,加工費等。COST_ELEMENT_ID為費用種類,1為材料費。

80 how to distinguish a so's delivery status?
select meaning from wsh_lookups where LOOKUP_TYPE='PICK_STATUS'

Backordered
Shipped
Cancelled
Interfaced
Not Ready to Release
Ready to Release
Released to Warehouse
Not Applicable
Staged/Pick Confirmed

81 leagal entity:select name from hr_all_organization_units
operating_unit_code:select organization_code from mtl_parameters

82 sql*plus script
1 ';'和' /'表示結束,兩者作用相同,有一個就可以,不能重複。
2 在一個sql語句中不能有空格,空格會中斷該SQL;在多個SQL之間可以有任意多個空格。

83 sql中,一旦表a的記錄為空,a的所有的條件必須為外連線,無論其是否和其他的表關聯。

84 1 SOB,OU via a profile option attached to a responsibility
2 ap/ar/po/om的操作都在Operating Unit(OU)層上。
3 Inv/BOM/WIP/MRP/Engineering/Capacity/Purchase receiving都在Inventory Organization(inv org)上操作。

85 how many types is organization classifications?
Businesss group
HR Organization

GRE/Legal Entity

Operation Unit
Inventory Organization

86 what is different between Distribution and SCM?
1 每一個LE/OU都上了Disctribution後,和supplier,user通過EDI等結合起來,形成一個完整的系統,叫SCM,Distribution is a subset of SCM.
2 同一個LE下不同的OU,在11.5.9後才可以通過內部往來做OM/PO,11.5.8都不行。
3 不同的LE之間只能通過EDI,i-P???,i-store,Fax等手段進行業務往來。

87 SOB不分組織,journal只分SOB,不分組織。

88 many people can't be find in HR module,they are in GL Super user responsibility,Setup/Employees/Enter

89 a key flexfield用一個特定的表來儲存各種組合的規範,系統中能用的是structure,它是key flexfield下的子集。相同key flexfield下的不同的structure,利用flexfield所用的application table中的structure column來區分。
define a key flexfield:application developer responsibility/Flexfield/Key/Register
define a structure:Flexfield/Key/Segments

90 a po vendor and a ap vendor is same.
po_vendors.vendor_id=po_vendor_sites_all.vendor_id
po vendor不分組織,分SOB;po site分組織;
ar customer也是在site上分組織
ap_invoice,ap_invoice_distributions都分組織

91 標準流程不儲存Item的月末盤點數,只能通過客戶化表來實現。

92 兩個或者多個檢視進行關聯可能非常慢,替代辦法:建立臨時中間表,速度可極大提高。

93 mtl_item_categories.inventory_item_id同mtl_system_items_b相關聯。
然後,mtl_item_categories同mtl_category_sets_tl,mtl_category_b相關聯。

94 import items,first import master item,then import other all organization items(可一次匯入,every organization must have a data copy,only organization id different)
after import items,then import category,must delete 000.00.00型別的category(automatically created when import item),then import new category.
1 category can't be updated directly.
2 item can be updated directly,use "update" transaction type when import.

95 The report is developed by character mode,the view result is same as print,it may be different from preview in EBS 11i.
報表設計佈局可能和系統預覽的效果佈局不一致,但應該和打印出來的佈局一致。

96 if i use template form,i can't close it,message 'at first block',how to fix it?
modify the form level trigger "WHEN-WINDOW-CLOSED"

if :system.event_window = 'XXXXXXXX' then
exit_form;
else
app_standard.event('WHEN-WINDOW-CLOSED');
end if;

97 in standard form,om unit price include tax,po unit price exclude tax.
sales order含稅,po不含稅

98 what is different between canvas and window in a form?
1 window的大小可以比canvas大,可以比canvas小,item甚至可以不在window的範圍裡。runtime的時候,canvas自動的調整佈局,適應window.
2 form中window為透明的,canvas不透明,有視窗色。
3 item必須在canvas的範圍內,否則報錯。
4 only stacked canvas has viewport,大小為stacked的大小。

99 org_id是OU,organization_id為庫存組織,org_organization_defination表裡分別對應organization_id,operating_unit
master_organization沒有ou

100 Price in om and invoice
OM line
unit_selling_price:unit price with tax
unit_list_price:the operand of qp_list_line
OM中沒有不含稅的單價

Invoice
gross_unit_selling_price:unit price with tax 含稅價 (也可取:UNIT_SELLING_PRICE * ( 100 + X.TAX_RATE ) * 0.01)
Decode ( vat.tax_rate,0,trxl.unit_selling_price,trxl.unit_standard_price) unit price without tax 不含稅價 ??????????
似乎不對!!!經測試,unit_selling_price是不含稅單價,unit_standard_price為含稅單價.

amount需要line和tax的金額相加
invoice form裡顯示的unit_price,amount都是含稅的


101 sql:
1 create table t1 as [(]select ................[)] 有as
2 insert into t1 [(]select ...................[)]    無as

102 If you specify a hidden ID column in addition to your value column,
the report parameter window passes your hidden ID value, instead of
the value from the value column, to your report.
值集定義的時候,一旦定義了ID,就只傳ID的值,不再傳Value
一般只在report的引數定義時定義ID,別的key or description flexfield都不允許使用定義ID的value set

103 how to register a table with Oracle Application Object Library?
1 create a synonym for the private table with apps schema
2 grant select on xxx.table to apps

104 the special arguments (bind variables) in the where clause in the value set incluede:
1 :block.field
2 :$PROFILES$.option_name(case 大小寫)
3 :$FLEX$.value_set_name

105 po_vendors          vendor_name     不分OU
po_vendor_sites_all      vendor_address 分OU

106 訂單行狀態分析
1after booked a so,oe_order_lines_all.flow_status_code:AWAITING_SHIPPING
此時wsh_delivery_details 分別對應每個訂單行,生成記錄。 delevery_detail_id,source_header_id,source_line_id有資料
now wdd.released_status='R', throuth select * from wsh_lookups where lookup_type = 'PICK_STATUS',wdd released status =>'Ready to Release'
wsh_delivery_assignments now 有資料,當時沒有delivery_id

2 只有pick release成功後,wsh_delivery_assignments才會生成一個delivery_id,wsh_new_deliveries生成資料,delivery_name=delivery_id

只要進行相應的操作,wdd.released_status都會有相應的值。

107 what is EUL,BA,drill in discoverer?
1 A user can create a EUL named as itself,it may create some EULs for other users.The EUL's name is same as the user's name.
所以一個使用者只能有一個屬於自己的EUL,但可grant access to Public,建立EUL的時候無法指定EUL的名字。
2 a user can delete EUL owned by itself only.
3 after creating EUL,the first BA can be simply created.we can insert a blank BA.
4 用conditions生成的paramwter,都無法用item_class,只有用Tools/parameters,才能使用item_class,在查詢的時候可以用LOV查詢引數.

108 what is different between internal name and display name in workflow?
internal name: used in workflow internal programs,usually named as English
display name:used in workflow user,usually named as Chinese words

109 if the template.fmb can't be closed,then changed list:
Form level trigger: when-window-closed
if :system.event_window = 'BLOCKNAME' then
exit_form;
else
app_standard.event('WHEN-WINDOW-CLOSED');
end if;

110 if form will excute DML action,Property/Advanced Database/DML Data Target Type,DML Data Target Name must not be blank.

111 A table may be outer joined to at most one other table.
a=b(+) and c=b(+) 不允許,because table b is outer joined to two other table.

a=b(+) and b=c(+)可以,但是當b is null後,b,c的記錄都為null行

112 how to draw a frame include old item in report?
1 draw a frame include old item
2 select the frame and express 'F8'

113 sql tune
Oracle sql optimize rule: "From table" from right to left,"Where clause" from down to up.
1 記錄少的,simple,和多個表關聯的table放在from的最後,做為driving table.
2 table和table join條件放在where的最前面,單個表的條件放在where的最後面。SQL先根據最後的條件,過濾掉了大部分記錄,然後再做記錄間的關聯,所以速度比較快。
3 儘量避免做全表的搜尋,計算函式等放在=的右邊,不要在表的列上做計算,這樣可以利用column上的index,一旦column上做了任何計算,index無法再用。

ORACLE採用自下而上的順序解析WHERE子句,根據這個原理,表之間的連線必須寫在其他WHERE條件之前, 那些可以過濾掉最大數量記錄的條件必須寫在WHERE子句的末尾.

114 how to start to use workflow in PL/SQL?
1 create     wf_engine.createprocess(itemtype,itemkey,process,user_key);
2 initiate 
wf_directory.getusername(.....);
wf_engine.setitemattrnumber(...);
wf_engine.setitemattrtext(....);
3 startup wf_engine.startprocess(itemtype,item_key);

115 what is different about three user tables?
1 fnd_user                         ERP使用者
2 per_all_people_f         HR職員,員工
3 hz_parties                     客戶

fnd_user.employee_id = per_all_people_f.person_id
per_all_people_f.party_id = hz_parties.party_id

ERP使用者可能不是HR員工,HR員工可能不是ERP使用者,員工可能是客戶

ar_customers is a view from table hz_parties.

116 how to get flex value description?
by the view fnd_flex_values_vl

117 report裡,動態的條件限制:
1 add a user parameter p_xxx,use &p_xxx in where clause.
2 add a report global formula,return 'where clause string'

118 how to disable save function in a form?
form level trigger:when_new_block_instance 觸發器中使用app_special.enable('SAVE',PROPERTY_OFF);

119 how to execute NULL in sum,count,max and so on functions in the group clause?
1 sum,count,max group functions(集合函式) ignore NULL value,value is NOT NULL
2 非集合函式和NULL運算,value = NULL

120 how to use multi-form window?
profile:Self Service Personal Home Page mode
Framework only->Personal Home Page

121 how to control the access to Help/Diagnostics/Examing without apps's password?
profile:Utilities:Diagnostics

122 The username and password are not match case in application 11i.

123 what is the relationship between invoice and check?
a check may pay many invoices,a invoice may be paid by many checks,check and invoice must be associated by payment(ap_invoice_payment)
payment amount is from ap_invoice_payment.amount and not from ap_checks_all.amount

124 ap_bank_branchs.bank_branch_id = ap_bank_accounts_all.bank_branch_id
1 create a bank and bank branch
2 create several bank account under a bank branch
3 create several payment documents under a bank account
when create a payment,first select a account,then select a document

125 which profile will be used for session timeout control?
ICX:Session Timeout

126 how to use the parameter of host report?
p_program_name=$0
p_sqlpwd=$1
p_usr_id=$2
p_usr_name=$3
p_req_id=$4

127 in sql and sql/plus statement,';' function is same as '/',兩個不能同時出現,否則run doubly.
pl/sql,must end with '/'

128 profile MO: Operating Unit    org_id

129 tkprof focupgd_ora_13975_APPS.trc focupgd_ora_13975_APPS.out explain=apps/apps2dev

130 how to sum in sql*plus report?
BREAK ON REPORT
COMPUTE SUM OF column1 column2 ON REPORT

131 how to create information to output and log in 11i?
sql*plus report
output: select * from xxxx
log:

pl/sql report
output:FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'XXXXXX');
log:FND_FILE.PUT_LINE(FND_FILE.LOG,'XXXXXXX');

132 how to separately commit?
PROCEDURE P_1 AS PRAGMA AUTONOMOUS_TRANSACTION;

133 /app/prd/comn/admin/out report cache for Application Report
此目錄是Application Report產生報表檔案,供終端使用者查詢及列印。建議在系統硬碟上儲存90天,以方便使用者。如果IT人員需清理90天以前報表,必須確保備份成功並永久儲存,便於滿足使用者提出的恢復報表請求

Refer to http://hi.baidu.com/ggngixjybobbetq/item/8ce87bf4235f6c0c84d2788e

相關推薦

oracle ebs 應用筆記

1 how to set up printer style? System administrator->Install->Style 2 user a create b.table,default tablespace use b setup. 3 in

oracle ebs應用產品安全性-定義訪問許可權集

定義 定義訪問許可權集是一項分配至責任層的可選的安全功能,是對Oracle 11i應用產品彈性域安全性定義的功能擴充套件,對總帳管理模組的一些內容進行安全性定義和許可權分配的集合,以控制不同的責任對一些內容的訪問許可權,如成批分配、經常性日記帳公式和財務報表生成器 (FS

Oracle EBS無法啟動 錯誤資訊 您的安全設定已組織自簽名的應用程式使用已過期的Java版本執行

com.sun.deploy.security.BlockedException: 您的安全設定已阻止自簽名的應用程式使用已過期的 Java 版本執行。     at com.sun.deploy.security.SandboxSecurity.showBlockedDialog(Unknown Sourc

Oracle開窗函式筆記應用場景

介紹Oracle的開窗函式之前先介紹一下分析函式,因為開窗函式也屬於分析函式 分析函式用於計算基於組的某種聚合值,它和聚合函式的不同之處是:對於每個組返回多行,而聚合函式對於每個組只返回一行。 上面是開窗函式over(...)的簡單介紹。 開窗函式指定了分析函式工作的資料視窗大小,這個資

oracle資料庫配置、安裝、部署web應用——筆記

1、      oracle資料庫部署經驗; 1>  先將Oracle - OraDb11g_home2檔案複製到home1對應的檔案目錄下,再安裝home1,安裝比較簡單,設定sys和system使用者密碼即可; 2>  Oracle有自帶的SQL/plus

Oracle Apex 有用筆記系列 6 - 可編輯交互報告 Editable Interactive Report

gin where 表格 報告 查詢 查詢語句 item 提醒 lis 據筆者所知。Apex 4.x 是沒有提供可編輯交互報告組件的。這就須要我們手動實現。事實上這也並非非常復雜,僅僅須要簡單幾步。 1. 依據向導建立一個interactive report。查詢語句能

Oracle 開發使用筆記

聲明 語句 參數 rownum 使用 con ner 什麽 有時 1 前段時間換了新公司,工作一直很忙,沒什麽時間做總結! 關於幾個知識點簡單做下總結: 1綁定變量的使用:   1)使用幾次,在後面的using中要聲明幾次,使用的順序要對應聲明的順序 2 存儲過程中

Oracle EBS登錄頁面顯示空白

color mes media 3.5 ply javax queue 1.3 shu 問題描述   由於ebs數據庫需要閃回,在其他同事閃回數據庫到之前某一天後,重啟ebs應用,發現ebs客戶端登錄顯示空白 以前也出現過類似問題,一般出現此問題,可以嘗試以下操作: 1.重

STM32學習及應用筆記二:一次運算符優先級造成的錯誤

位與 指向 cells 偏移 getchar() 取地址 大於 沒有 事情 本人在最近一個項目的開發中,出現一個應為疏忽運算符優先級造成的問題,檢查了很久才發現問題,所以覺得運算符的優先級問題還是有必要再研究一下。具體的問題是這樣的,我采集了傳感器的原始數據,然後會

oracle移庫筆記

版本 登錄 分享 -1 windows 當前 esp machine ftw 1. windows 找oracle安裝目錄: HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDb11g_home1 2. 查看當前用戶權限 select

oracle 11g rac 筆記(VMware 和esxi主機都可以使用)

oracle 11g rac這個只是筆記,防止丟失,沒事見整理在vmware安裝目錄 創建磁盤:vmware-vdiskmanager.exe -c -s 1000Mb -a lsilogic -t 2 D:\VMWARE\racsharedisk\ocr.vmdkvmware-vdiskmanager.ex

APPium自動化啟動手機應用筆記

自動化appiumjava啟動方法1、需要安裝JAR2、啟動如下:public class InitDriver {public static AndroidDriver<AndroidElement> initDriver() throws Exception{File app=new File

Oracle 12c應用連接VIP輪訓負載均衡?

vip 應用連接 目前很多生產數據庫都是兩節點RAC,應用連接的數據庫通常會連接SCAN IP或者VIP,這裏做一個小實驗,如果我們使用VIP連接,應該怎樣配置我們的客戶端,負載均衡是否是嚴格意義上的輪訓機制,只有通過自己的測試才能得到準備的答案。tnsnames.ora配置<rac01:orc

Oracle 常用命令筆記(1)

數據庫 oracle 命令說明crsctl start has 啟動數據庫HAS服務。crsctl stat res -t 檢查ASM中的各服務(DG、監聽、ASM實例等)狀態。srvctl status asm 查看ASM實例狀態,正常情況下主備機的ASM實例都應該處於啟動狀態。s

oracle 11g ocp 筆記(1)-- oracle 11g體系結構概述

負責 進程 arc 可能 安裝數據庫 存儲 parallel 情況下 位圖 參考文檔: https://blog.csdn.net/gyming/article/details/41593811 1、oracle系列產品 1.1 服務器分為數據庫服務器、應用服務器和企

oracle 11g ocp 筆記(2)-- 安裝和創建數據庫

apu 數據庫管理工具 OS 靜默 software app %s 變量 多個 1.了解 數據庫管理工具 1.2 OUI(Oracle Universal Installer) ·OUI產品清單(inventory)位置 Windows:

oracle 11g ocp 筆記(3)-- 實例管理

user round nec links utf 域名 ssi 退出 .exe 1、設置初始化參數文件:    查詢參數可以從v$parameter (從實例中取得數值) 和v$spparameter(從參數文件取值。)   兩個參數文件:     1.pfile(par

oracle 11g ocp 筆記(5)-- oracle存儲結構

dia tro min 編號 contents all 重做日誌 absolut bit 1、了解oracle表空間和數據文件。 oracle存儲模型。表空間、段、區間、oracle塊,數據文件、和操作系統塊的對應關系。 select segment _type ,coun

oracle 11g ocp 筆記(14)--數據庫備份和恢復配置

tro tab actual 多路復用 mode 宕機 open data system 1、了解備份和恢復的問題 與備份恢復有關的三個指標是:MTBF 平均無故障時間 MT

oracle 11g ocp 筆記(15)--使用rman進行備份

ike cross sbt 用戶管理 文件中 所有 rest 保護 plus 一、備份的術語 關閉與打開(冷備和熱備 一致性備份和非一致性備份) 打開的備份只能是歸檔模式下 全部與局部 局部備份只能是歸檔模式下。 完整備份和增量備份 增量備份分為 累計增量備份和差異