Followers

Thursday, December 17, 2015

How to reset drm admin password??

                                            How to reset drm admin password??


Login as the drm schema/database user

Step 1 Make back up of current table data:

for oracle database execute the following:

create table rm_user_bak as
select * from rm_user;


for sql server execute the following:
Make sure that the drm database is being used
USE { database }
SELECT * INTO dbo.rm_user_bak
FROM dbo.rm_user;

---------------------------------------------------------------------------------

Step 2: Rest password to default::

for oracle execute the following:

update rm_user
set c_password ='S5ZY+Gwo/mR0xJVvh/bgB4e+eioS3lG7JVoO2PtuemrNAXcXc3qivFQAA62kKbUuZF8VceuEiUxgq8pznMUrTg=='
where c_user_name ='ADMIN';
Commit;

for sql server execute:

update dbo.rm_user
set c_password ='S5ZY+Gwo/mR0xJVvh/bgB4e+eioS3lG7JVoO2PtuemrNAXcXc3qivFQAA62kKbUuZF8VceuEiUxgq8pznMUrTg=='
where c_user_name ='ADMIN'

Commit

Step 3: test the changes
The password has been reset to the default.
Try logging into the application using user ADMIN and the password Welcome!


Warning: Do NOT update any other user with this password it will NOT work.

if there are any issues restore the the original password from the created back up table

Saturday, September 5, 2015

Could not connect to repository - IncorrectResultSizeDataAccessException: Incorrect result size: expected 1, actual 2 - ODI

IncorrectResultSizeDataAccessException: Incorrect result size: expected 1, actual 2 - ODI
Description::
This error we will get when there is multiple entries in SNP_LOC_REP table.
Solution: Delete latest entry and make sure only one entry will be there in the same table.
Error msg looks like below::
In my case there 2 entries in SNP_LOC_REP table, deleted entry from the same.


                                   After deleting one entry from the SNP_LOC_REP table


                                                    Now ODI logged in successfully.


Thanks,
Mady


Saturday, August 1, 2015

FDM - HFM adapter

                                                         Register HFM adapter

1. First extract hfm adapter to the following location::
D:\Hyperion\Middleware\EPMSystem11R1\products\FinancialDataQuality\SharedComponents


 

2. Open FDM application then first import adapter. Browse the FM11X-G5-E file from shared Components.

3. Once import done, the Register adapter with fdmFM11XG5E.dll from the Shared Components\AdapterComponents\fdmFM11xG5E

4.  Then create Machine profile with source and Target Server details

5.  After creating application if FDM application giving issue to integrate with HFM application, then we need to enable same number of custom dimensions on FDM application. Then we can see Target Period, Year etc from FDM.

Thanks,
Mady

FDM application 11.1.2+

                             How to create FDM application in 11.1.2.1+

1.       FDM works on 32-bit mode only even if you have installed on 64-bit machine.
2.       Create schema on oracle database with below::

Privileges::
CREATE SESSION,CREATE VIEW,CREATE TYPE,CREATE TABLE,CREATE CLUSTER,CREATE TRIGGER,CREATE SEQUENCE,CREATE INDEXTYPE,CREATE PROCEDURE,CREATE ANY SYNONYM,DROP ANY SYNONYM,UNLIMITED TABLESPACE

Roles: Connect, Resource and DBA.

3. We can check connect of FDM schema connectivity using udl32 file.
  • Create a text file and save as with udl32 extension.
  • Launch a command prompt.
  • Execute the following command like below::
C:\WINDOWS\SysWOW64\Rundll32.exe "c:\Program Files (x86)\Common Files\System\Ole DB\oledb32.dll",OpenDSLFile c:\testconn.udl32

4. Udl32 file will open now. You can check connectivity.
5. Create FDM application with same schema details.
6. Check the upsLBMgr.exe process in Task Manager which shows the application creation progress
7. If you get “Object variable or with block variable not set”
  • Check FDM service account has permissions.
  • If you are giving UNC path (if it is load balance), check folder permissions and try / and \
  • If you are UNC Path, try with drive name while creating application later you can change to UNC path.
  • If FDM version 11.1.2.1, we need to apply patch. Patch number—12795642
  • If FDM 11.1.1.4 version, we need to apply patch. Patch number--13336220 (PSU 102)
Thanks,
Mady

Thursday, July 30, 2015

How to connect to Shared Services from second time from Hyperion 11.1.2.0+

             How to connect to Shared Services from second time from Hyperion 11.1.2.0+

Some scenarios::
1. when we will do configuration first time, we will give Shared Services schema/Database details, then from next time onwards we directly get components page. we never get Shared services page until unless Sahred Services Schema / Database is not able to connect

2. If you want to change Shared Services Schema or Database

3. If you are facing Failed to Navigate to system registry error:::
Failed to navigate from registry-state.displayName: Error while initializing registry. See logs for more details.

Just follow the steps below::
1. Open a command prompt
2. Navigate to EPM_ORACLE_HOME/common/config/version_number
3. Launch configtool.sh|.bat -enableRegTask
4. On the “Shared Services and Registry Database Configuration” page, select Connect to a previously configured Shared Services database and re-enter the database connection information

If you want to edit it at any cost, just find reg.properties file for Shared Services, delete password or just rename the reg.properties file after taking backup.

Thanks,
Madhu


Wednesday, September 24, 2014

How to execute a command from another machine remotely?

How to execute a command from another machine remotely?

1. Make sure both computers are in same workgroup or domain.
2. Enable Admin share in both computers.
Go to Start à Control Panel à System and Security à Windows firewall à Allow a program through Windows Firewall



 Search for File and Printer Sharing and check the boxes to Enable Admin$
Do the same in Server also. 


 Check whether we are connected to server or not. Go to Start and Search using the below,
\\<servername>\c$ (It will prompt for username and password to login to the server)
Try to connect to cmd using the below cmd:

 Check IP Address using ipconfig command

 Now we are working in server remotely.
I am trying to execute one batch file. I am executing one batch file to refresh the cube using CubeRefresh.cmd

One more thing we can observe:
In the server Service one temporary service will be running while executing PsExec commands. It will be stopped and deleted automatically after execution process done.