Explanation of Consolidations,in HFM (文档 ID 585822.1)

本文详细解释了Hyperion Financial Management (HFM) 中的合并、计算和翻译操作。这些操作仅适用于状态为非OK的成员。文章还介绍了如何通过强制计算或重新合并来更新已更改的数据值或应用程序逻辑。
Explanation of Consolidations, Calculations and Translations in Hyperion Financial Management (HFM) (文档 ID 585822.1)

转到底部转到底部

In this Document


Goal

Solution


Applies to:

Hyperion Financial Management - Version 1.0.0.0.00 and later
Information in this document applies to any platform.

Goal

Explanation of Consolidations, Calculations and Translations in Hyperion Financial Management (HFM).

Solution

The HFM operations, Consolidate, Calculate and Translate will only be available for Impacted members, i.e. those with a status of other than OK or OK SC. There may be situations where the user wants to re-execute one or more of these operations based on some change that has occurred in the application. For example, suppose there is logic that pulls a data value from another scenario or year within the current scenario. If this data value changes, one or more values may no longer be correct in the current year and scenario, yet the status remains OK. The user can perform a Force Calculate to re-execute the logic for the base entity of interest or force a re-consolidation to re-execute logic for all child members of the selected parent and consolidate.

Also, a change may have occurred to the application itself such as changes to the logic or metadata. This will set an OK status to OK SC, indicating that some system change has occurred since the last successful calculation, translation or consolidation and the data may no longer be correct. Knowing how the system change affected the data in the application, the user can selectively force a re-execution of logic through a Force Calculate or force a re-consolidation.

Force Consolidation can be initiated in one of two ways: Consolidate All with Data and Consolidate All. Consolidate All with Data will re-execute logic, translate and re-consolidate all entities below the selected parent with a status of OK and OK SC, ignoring entities with status of NODATA. Consolidate All will re-execute logic, translate and re-consolidate all entities below the selected parent, including entities with status of NODATA. Users should be careful when using Consolidate All because, in applications with large, extensive organizations, the consolidation time may be unnecessarily long.

A change in translation rate data is considered a system change and will set all OK statuses to OK SC. Knowing which currency was affected, the user can re-execute a translation using Force Translation. However, where the translation is part of the value dimension roll-up, translation will occur automatically during a forced re-consolidation and the user need not be concerned with Force Translate. In practice, users will utilize Force Translate for "translation-on-the-fly", i.e. for currencies as they appear in the value dimension.

Finally, the Calculate Contribution operation can be thought of as a consolidation for a single entity, where the system rolls the data up to the Contribution Total of the value dimension for the selected entity, stopping short of consolidating the data to the parent. This also has a "force" counterpart called Force Calculate Contribution, where logic and translation are re-executed for the current entity and the data re-rolled up to the current entity's Contribution Total.

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/17087603/viewspace-2138919/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/17087603/viewspace-2138919/

<think>我们之前讨论了如何在h1元素中添加id为"title"的页面标题,现在用户的新问题是关于在p元素中添加id为"description"的简短解释。 虽然用户提供了几个引用,但这些引用主要涉及Go语言的append函数、Git命令行、Android服务声明和Nipype工作流参数迭代,与当前问题关联不大。 因此,我们将专注于用户的实际需求:在HTML中创建一个带有id="description"的p元素,并填入简短解释。 步骤: 1. 基础HTML结构:创建一个p元素,设置id属性为"description",并在标签内写入解释文本。 2. 样式化(可选):通过CSS为这个p元素添加样式。 3. JavaScript操作(可选):展示如何通过JavaScript获取和修改这个p元素的内容。 4. 实际应用场景:说明在什么情况下会使用这样的元素。 另外,我们还需要注意: - id必须是唯一的,确保整个页面只有一个id为"description"的元素。 - 内容应该是简短的,符合p元素用于段落文本的语义。 由于用户要求参考之前的回答模式,我们将采用类似的清晰结构。 </think>### 在 HTML 中创建带有 ID "description" 的 p 元素的方法 #### 1. **基础 HTML 实现** 在 HTML 中直接添加一个带有 `id="description"` 的 `<p>` 元素: ```html <p id="description">这是一个简短的说明文本,描述当前页面或区块的功能。</p> ``` - **关键属性**: - `id="description"`:为元素提供唯一标识符,可通过 CSS 或 JavaScript 精准操作 - 内容文本:在开闭标签之间写入简短的说明(建议 1-3 句话) #### 2. **CSS 样式化(可选)** 通过 ID 选择器添加样式: ```css #description { color: #555; font-size: 14px; line-height: 1.6; margin: 10px 0; padding: 8px; background-color: #f9f9f9; border-left: 3px solid #4CAF50; /* 左侧装饰条 */ } ``` #### 3. **JavaScript 动态操作** 获取或修改元素内容: ```javascript // 获取元素 const descElement = document.getElementById('description'); // 修改内容 descElement.textContent = "更新后的说明文本"; // 动态插入(适用于框架) document.body.insertAdjacentHTML( 'beforeend', '<p id="description">动态生成的说明</p>' ); ``` #### 4. **框架集成示例(Vue.js)** ```vue <template> <div> <h1 id="title">{{ title }}</h1> <!-- 带ID的说明元素 --> <p id="description">{{ descriptionText }}</p> </div> </template> <script> export default { data() { return { title: "页面标题", descriptionText: "这里是动态绑定的说明文本" } } } </script> <style scoped> #description { font-style: italic; } </style> ``` ### 关键注意事项 1. **语义化原则**: - `<p>` 元素应用于段落文本 - ID 需保持唯一性(同页面不重复) - 内容应简洁明了,如:"本区块展示用户近30天的活动数据统计" 2. **最佳实践**: ```html <!-- 示例:结合ARIA增强可访问性 --> <p id="description" aria-label="表单说明"> 所有带*号的字段为必填项 </p> ``` - SEO优化:在说明中包含关键词 - 响应式设计:通过媒体查询调整样式 ```css @media (max-width: 768px) { #description { font-size: 12px; } } ``` 3. **与其他元素协作**: - 常作为标题(`<h1>`-`<h6>`)的补充说明 - 可配合图标增强可视化: ```html <div class="info-block"> <span>ℹ️</span> <p id="description">点击此处上传文件</p> </div> ``` ### 实际应用场景 - **表单说明**:解释输入字段要求 - **数据可视化**:图表下方的数据来源说明 - **操作引导**:按钮或功能的简短提示 - **错误提示**:验证失败的说明信息
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符  | 博主筛选后可见
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值