ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

Material Workbench Changes From 11i to R12

2019-02-22 21:48:01  阅读:382  来源: 互联网

标签:Workbench form 11i Material tree use different grid query


分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

               

For Material Workbench form, the technological framework are different between R12 and 11i,In 11510 Forms grid is used where as from R12 it is upgraded to JTF grid.

(You may note Material Workbench form name is also different between 11i and R12, onhand form name in 11i is INVMATWB.fmb, in R12, form name is INVMWBIV.fmb).


For Material Workbench form, Why we use different technological framework since R12

In 11i, Material Workbench form use Forms grid to display onhand information, but due to Form technology limitation, we can't provide more complex functions, like sorting,copying...

Anyway we need a component like MS EXCEL, So since R12, we start to use JTF component, this is a JAVA component. Base on JTF component, we can provide more complex functions.


<<Material Workbench in 11i>>




<<Material Workbench in R12>>


 What happen in backend after pressing FIND button, and Why performance issue happen

a.) Base on user query criteria, System will query information from onhand table MTL_ONHAND_QUANTITIES_DETAIL, Then insert to a TEMP table MTL_MWB_GTMP.

b.) Content in temp table MTL_MWB_GTMP almost have all onhand information, but we still need some additional necessary information which need retrieve from other tables,

   (eg. item description, we need get item description information from item definition table MTL_SYSTEM_ITEMS_B table...)

   After get these additional information, then system will update them into temp table MTL_MWB_GTMP, Your performance issue happen at this time.


How To get JTF GRID Apps check
Apps Check output from Note 276207.1 for application parameter: CRM Foundation.


JFT Definiation

CRM Administrator>Spreadtable>Metadata Administration>
Search by Datasource Name:  MTL_MWB_GTMP


In On-hand qty form,how to create and construct the tree view mainly process:
11i,use INVMATWB.fmb
  use the view query on-hand quantity
1.tree.setup,initial the tree in form when-new-form-instance trigger 
2.the grid data use different object uion view to show the data by quantity_folder.new_view_by
    2.1 quantity_folder.post_query use different view to query
R12,use INVMWBIV.fmb
1.tree.setup,initial the tree in form when-new-form-instance trigger 
2.jtf_grid.init -> jtf_grid.populate -> jtf_griddb.fetchDataSet -> EXECSQL init the grid and get the data
3.apptree.event call tree.event to expand or collapse
    3.1 call inv_mwb_controller.event to construct the tree
     3.1.1 by different node_type call different package
          inv_mwb_location_tree、inv_mwb_item_tree、inv_mwb_cost_group_tree etc..
          3.1.1.1 call inv_mwb_query_manager.execute_query get the tree data and insert into mtl_mwb_gtmp for the grid query
4.tree.new_view_by:show the grid data
4.select the tree node, call jtf_grid.refresh in JTF_GRID.pld to load data again


JTF Related Documents
http://download.oracle.com/docs/cd/A89549_01/acrobat/jtf115ug.pdf
http://download.oracle.com/docs/cd/A85964_01/acrobat/jtf115trm.pdfhttp://download.oracle.com/docs/cd/A85683_01/acrobat/jtf1151trm.pdfhttp://download.oracle.com/docs/cd/A88418_01/acrobat/jtf115ig.pdf




           

分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

标签:Workbench,form,11i,Material,tree,use,different,grid,query
来源: https://blog.csdn.net/hsghggt/article/details/87886147

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有