Showing posts with label Hyperion Planning. Show all posts
Showing posts with label Hyperion Planning. Show all posts

Saturday, March 6, 2010

Hyperion HBR Run time Prompt (RTP) issue.

Hi,

  Issue:

In Planning webform HBR is attached , RTP are used and are set as "Run on Save" , "Use Member on form" and "Hide Prompt", but still when we hit save button a pop-up appears asking for RTP members.

Solution:

1. Make sure that RTP type is set as 'Member' and not 'Members' ... RTP with type as 'Members' will always give a prompt  as it is used to pass more than one member of a dimension.

2. If still problem exists...

 2.1.  Delete the RTP from BR
 2.2.  Create Local Variable RTP
 2.3.  Remove security and save BR.
 2.4.  Assign security and Save BR again.
 
Cheerz! :)
-Chinmay-

Tuesday, March 17, 2009

Update on Hyperion Planning dim deletion

Hey!

One of my friend tried deleting Planning Dim using procedure given below on 9.3.1 , and it worked!!! :)

--Chinmay

Thursday, February 12, 2009

How to delete dimension from Planning Application

This procedure should only be performed by your SQL or Oracle DBA.

** THIS PROCEDURE IS TRIED AND TESTED ONLY ON 9.2 VERSION

BE SURE YOU HAVE A BACKUP OF YOUR APPLICATION BEFOREATTEMPTING THIS PROCEDURE.

You will need to delete all the children first, then the dimension.

If you have the dimension in forms, you may also need to (after step 5) go into the hsp_formobj_def_mbr table and delete all references of that object ID. Then delete the dim id in thehsp_form_layout table. Recycle services of Planning.
Procedure: If you create a custom dimension in planning and wish to delete it, here is how you might remove it from SQL manually. We recommend that only someone familiar with relational databases attempt this.
The following assumptions are being made about the dimension: No forms have any references to thedimension. Any and all attribute dimensions have been removed from the dimension. Any and all members have been removed from the dimension. All security access has been removed from dimension. Any Alias associated with the dimension has been removed.

In this example we have created a dimension called DummyDimension.

1. Open the Enterprise Manager for SQL server
2. Open the database that has your planning application
3. Open the table HSP_OBJECT
4. You need to find the row that has the dimension name you want to delete:
5. Take note of the OBJECT_ID in my example it is50051, don't delete it yet.
6. Open the table HSP_MEMBER
7. Find and delete any rows that have a MEMBER_ID equal to the OBJECT_ID from step 5.
8. Close the Table HSP_MEMBER
9. Open the table HSP_MRU_MEMBERS.
10. Find and delete any rows that have a DIM_ID equal to the OBJECT_ID from step 5.
11. Close the table HSP_MRU_MEMBERS.
12. Open the table HSP_DIMENSION
13. Find and delete any rows that have a DIM_ID equal to the OBJECT_ID from step 5.
14. Close the table HSP_DIMENSION
15. Also delete it's reference from the HSP_UNIQUE_NAMES table.
16. Delete the row in the HSP_OBJECT table that you found in step 4.
17. Close the HSP_OBJECT table.
18. Open Essbase Application Manager for the application and remove the dimension from the necessary Essbase outlines.
19. Restart the application server.

Now when you open the application in Planning the dimension will be removed. The next step is to perform a refresh to make sure planning and Essbase are in sync.