客户可以通过Help gt; Diagnostics gt; Custom Code gt; Personalize,来对Form做个性化的设置。如何通过脚本来查看Form做了哪
客户可以通过Help > Diagnostics > Custom Code > Personalize,,来对Form做个性化的设置。如何通过脚本来查看Form做了哪些个性化
fnd_form_custom_rules.id IS 'A Generated Id for the table'.
fnd_form_custom_rules.function_name IS 'The Function Name to apply the rule'.
fnd_form_custom_rules.description IS 'A Summary of the Rule'.
fnd_form_custom_rules.trigger_event IS 'The Event to trigger the rule'.
fnd_form_custom_rules.trigger_object IS 'The Object on which the TRIGGER_EVENT fires'.
fnd_form_custom_rules.condition IS 'A Condition toapply the rule'.
fnd_form_custom_rules."SEQUENCE" IS 'The Sequence in which the rule is applied'.
fnd_form_custom_rules.enabled IS 'Indicates if the Rule is enabled'.
fnd_form_custom_rules.fire_in_enter_query IS 'Inidicates if the Rule fires in Enter-Query mode'.
fnd_form_custom_rules.rule_key IS 'Used for industry translations. Value is a combination of the industry id and language.'.
fnd_form_custom_rules.form_name IS 'The name of the form that has the personalization rule.'.
fnd_form_custom_rules.rule_type IS 'The type of rule for the personalization. Form or Function'.
TABLE fnd_form_custom_actions - 'Holds the Actions for a specified Rule - used by FNDCUSTM.fmb and APPCORE to apply customizations.'.
fnd_form_custom_actions."SEQUENCE" IS 'The sequence the action will be applied'.
fnd_form_custom_actions.property_value IS 'The new Value for the property PROPERTY_NAME'.
fnd_form_custom_actions.argument_type IS 'The Argument Type of the Property PROPERTY_NAME'.
fnd_form_custom_actions.created_by IS 'Standard Who column'.
fnd_form_custom_actions.creation_date IS 'Standard Who column'.
fnd_form_custom_actions.last_updated_by IS 'Standard Who column'.
fnd_form_custom_actions.last_update_date IS 'Standard Who column'.
fnd_form_custom_actions.last_update_login IS 'Standard Who column'.
fnd_form_custom_actions.target_object IS 'The Object in the form to apply the property'.
fnd_form_custom_actions.action_type IS 'Message, Builtin, Property or Special'.
fnd_form_custom_actions.enabled IS 'Indicates if the action is enabled'.
fnd_form_custom_actions.object_type IS 'The Type of the Object'.
fnd_form_custom_actions.folder_prompt_block IS 'If a Folder, the prompt block for the Folder'.
fnd_form_custom_actions.message_type IS 'The Type of the Message'.
fnd_form_custom_actions.message_text IS 'The Text of the Message'.
fnd_form_custom_actions.summary IS 'A Summary of the Action'.
fnd_form_custom_actions.builtin_type IS 'The Type of the Builtin'.
fnd_form_custom_actions.builtin_arguments IS 'The Arguments of the Builtin'.
fnd_form_custom_actions."LANGUAGE" IS 'The Language for the Action'.
fnd_form_custom_actions.rule_id IS 'The FK to the FND_FORM_CUSTOM_RULES table'.
fnd_form_custom_actions.property_name IS 'The Internal ID of the property to change'.
fnd_form_custom_actions.menu_entry IS 'The Special Menu Entry to modify'.
fnd_form_custom_actions.menu_label IS 'The New Label for the Menu Entry'.
fnd_form_custom_actions.menu_seperator IS 'Indicates if a seperator is shown after the menu entry'.
fnd_form_custom_actions.menu_enabled_in IS 'The Block(s) the menu is enabled in'.
fnd_form_custom_actions.menu_action IS 'The Action Type for the menu entry'.
fnd_form_custom_actions.menu_argument_long IS 'Long Arguments for the menu. Valid for URL and Function'.
fnd_form_custom_actions.menu_argument_short IS 'Short Arguments for the menu. Valid for Function'.
fnd_form_custom_actions.action_id IS 'A Generated sequence'.
fnd_form_custom_actions.request_application_id IS 'The Application ID for Mernu Action of Concurrent Request'.
TABLE fnd_form_custom_scopes - 'The Scopes for which the FND_FORM_CUSTOM_RULES apply'.
fnd_form_custom_scopes.rule_id IS 'The FK to FND_FORM_CUSTOM_RULES'.
fnd_form_custom_scopes.level_id IS 'The Level ID. 10 - Industry, 20 - Site, 30 - Responsibility, 40 - User'.
fnd_form_custom_scopes.level_value IS 'The Industry ID, User ID or Responsibility ID'.
fnd_form_custom_scopes.level_value_application_id IS 'The Responsibility Application ID'.
fnd_form_custom_scopes.last_update_date IS 'Standard Who column'.
fnd_form_custom_scopes.last_updated_by IS 'Standard Who column'.
fnd_form_custom_scopes.creation_date IS 'Standard Who column'.
fnd_form_custom_scopes.created_by IS 'Standard Who column'.
fnd_form_custom_scopes.last_update_login IS 'Standard Who column'.

在数据库优化中,应根据查询需求选择索引策略:1.当查询涉及多个列且条件顺序固定时,使用复合索引;2.当查询涉及多个列但条件顺序不固定时,使用多个单列索引。复合索引适用于优化多列查询,单列索引则适合单列查询。

要优化MySQL慢查询,需使用slowquerylog和performance_schema:1.启用slowquerylog并设置阈值,记录慢查询;2.利用performance_schema分析查询执行细节,找出性能瓶颈并优化。

MySQL和SQL是开发者必备技能。1.MySQL是开源的关系型数据库管理系统,SQL是用于管理和操作数据库的标准语言。2.MySQL通过高效的数据存储和检索功能支持多种存储引擎,SQL通过简单语句完成复杂数据操作。3.使用示例包括基本查询和高级查询,如按条件过滤和排序。4.常见错误包括语法错误和性能问题,可通过检查SQL语句和使用EXPLAIN命令优化。5.性能优化技巧包括使用索引、避免全表扫描、优化JOIN操作和提升代码可读性。

MySQL异步主从复制通过binlog实现数据同步,提升读性能和高可用性。1)主服务器记录变更到binlog;2)从服务器通过I/O线程读取binlog;3)从服务器的SQL线程应用binlog同步数据。

MySQL是一个开源的关系型数据库管理系统。1)创建数据库和表:使用CREATEDATABASE和CREATETABLE命令。2)基本操作:INSERT、UPDATE、DELETE和SELECT。3)高级操作:JOIN、子查询和事务处理。4)调试技巧:检查语法、数据类型和权限。5)优化建议:使用索引、避免SELECT*和使用事务。

MySQL的安装和基本操作包括:1.下载并安装MySQL,设置根用户密码;2.使用SQL命令创建数据库和表,如CREATEDATABASE和CREATETABLE;3.执行CRUD操作,使用INSERT,SELECT,UPDATE,DELETE命令;4.创建索引和存储过程以优化性能和实现复杂逻辑。通过这些步骤,你可以从零开始构建和管理MySQL数据库。

InnoDBBufferPool通过将数据和索引页加载到内存中来提升MySQL数据库的性能。1)数据页加载到BufferPool中,减少磁盘I/O。2)脏页被标记并定期刷新到磁盘。3)LRU算法管理数据页淘汰。4)预读机制提前加载可能需要的数据页。

MySQL适合初学者使用,因为它安装简单、功能强大且易于管理数据。1.安装和配置简单,适用于多种操作系统。2.支持基本操作如创建数据库和表、插入、查询、更新和删除数据。3.提供高级功能如JOIN操作和子查询。4.可以通过索引、查询优化和分表分区来提升性能。5.支持备份、恢复和安全措施,确保数据的安全和一致性。


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

mPDF
mPDF是一个PHP库,可以从UTF-8编码的HTML生成PDF文件。原作者Ian Back编写mPDF以从他的网站上“即时”输出PDF文件,并处理不同的语言。与原始脚本如HTML2FPDF相比,它的速度较慢,并且在使用Unicode字体时生成的文件较大,但支持CSS样式等,并进行了大量增强。支持几乎所有语言,包括RTL(阿拉伯语和希伯来语)和CJK(中日韩)。支持嵌套的块级元素(如P、DIV),

SublimeText3 Linux新版
SublimeText3 Linux最新版

Dreamweaver Mac版
视觉化网页开发工具

SublimeText3 英文版
推荐:为Win版本,支持代码提示!

DVWA
Damn Vulnerable Web App (DVWA) 是一个PHP/MySQL的Web应用程序,非常容易受到攻击。它的主要目标是成为安全专业人员在合法环境中测试自己的技能和工具的辅助工具,帮助Web开发人员更好地理解保护Web应用程序的过程,并帮助教师/学生在课堂环境中教授/学习Web应用程序安全。DVWA的目标是通过简单直接的界面练习一些最常见的Web漏洞,难度各不相同。请注意,该软件中