Skip to Main Content

Analytics Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Integration possibilities with ESSBASE

JanGLiAug 26 2015 — edited Sep 1 2015

Hi,

I want to create reports using essbase but my data is in dataware house.

How can i take data from datawarehouse and store it in essbase? which tools i need? which approaches should i use?

Can anyone guide me in the right direction,

Regards

This post has been answered by Gianni Ceresa on Aug 27 2015
Jump to Answer

Comments

Mahmoud_Rabie
Answer

Finally, found the solution in this nice article

https://gerardnico.com/wiki/apex/security_group

I hope the following function helps someone

create or replace FUNCTION  "IS_VALIDUSER"(

          p_workspace in VARCHAR2,

          in_username in VARCHAR2,

          in_password in VARCHAR2)

return NUMBER

is

  l_workspace_id      NUMBER;

begin

    l_workspace_id := apex_util.find_security_group_id (p_workspace => p_workspace);

    apex_util.set_security_group_id (p_security_group_id => l_workspace_id);

  

    if(APEX_UTIL.IS_LOGIN_PASSWORD_VALID(in_username,in_password) ) then

        return 1;

    else

        return 0;

    end if;

end;

Regards

Mahmoud

Marked as Answer by Mahmoud_Rabie · Sep 27 2020
1 - 1
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Sep 29 2015
Added on Aug 26 2015
9 comments
1,141 views