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!
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
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 NUMBERis 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;
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;
Mahmoud