Users for OBI Applications

Hello,
I am confused with item 4.4.1 from OBI Applications 7.9.6.3 installation manual... I´ve copied it bellow:
+"The transactional (OLTP) database user that is registered in DAC should be the+
+database table owner. Alternatively, at a minimum, the user registered in DAC+
+must have read privileges on the transactional database for all tables and aliases.+
+For Siebel CRM databases, the OLTP database user requires privileges to create+
+triggers and views on all tables and aliases."+
I cannot quite understand... The OLTP database user that is registered in DAC >> pls. Is this the dac repository owner ? The one we do the login in DAC ?
The next paragraph says... the OLTP database user requires privileges to create... >> I imagine that is the same user as above ?
Pls. I would appreciate comments and help :))
txs
Antonio

Txs. for your comments...
Well, I have done an implementation using DBA as privileges... but that is not the current case.
I understand you saying about the physical connections - but if I remember correctly -- this connection needs a user/pwd...
I do have something like below, but I am not sure it is correct... like BIDAC privileges below... (also I´ve seen doc in support: ID 513063.1 but it is kind of old and not clear)
I would appreciate comments... suggestions.
Txs.
Siebel Database - SIEBEL
*· Informatica – BIREP*
o   Connect
o   Resource
o   Create and Drop Indexes and Views
*· DAC Repository – BIDAC (Privileges in SIEBEL and BIOBW)*
o   Connect
o   Resource
o   Create Trigger
o   Create View
*· Oracle Business Analytics Warehouse - BIOBW*
grant SSE_ROLE
o   Connect
o   Resourceo Create View

Similar Messages

  • Query to find out the time used by an user for an application

    Hello All,
    I want to know the query to find out the whole time used by the user for an application. Please view the below data
    Employee:
    SNO EMP_ID EMP_NAME EMP_DATE LOGIN_TIME LOGOUT_TIME
    1 10 Visu 21-Nov-2010 06:30:00 07:30:00
    2 10 Visu 21-Nov-2010 06:40:00 07:20:00
    3 10 Visu 21-Nov-2010 06:50:00 07:50:00
    4 10 Visu 21-Nov-2010 07:30:00 08:30:00
    5 10 Visu 21-Nov-2010 09:30:00 10:30:00
    By checking the above data we can say that the total time Visu used the application is
    8.30 - 6.30 (From 1,2,3,4 records) = 2hrs
    10.30 - 9.30 (Based on 5th rec) = 1hr
    So the total time Visu used the application would be 3 hrs = 180 mins.
    Could you please help me in getting the result from that data using a query?

    odie_63 wrote:
    I think it may be solved with analytics too.
    with t1 as (
                select 1 sno,10 emp_id,'Visu' emp_name,'21-Nov-2010' emp_date,'06:30:00' login_time,'07:30:00' logout_time from dual union all
                select 2,10,'Visu','21-Nov-2010','06:40:00','07:20:00' from dual union all
                select 3,10,'Visu','21-Nov-2010','06:50:00','07:50:00' from dual union all
                select 4,10,'Visu','21-Nov-2010','07:30:00','08:30:00' from dual union all
                select 5,10,'Visu','21-Nov-2010','09:30:00','10:30:00' from dual
         t2 as (
                select  emp_id,
                        emp_name,
                        emp_date,
                        to_date(emp_date || login_time,'DD-MON-YYYYHH24:MI:SS') login_time,
                        to_date(emp_date || logout_time,'DD-MON-YYYYHH24:MI:SS') logout_time
                  from  t1
         t3 as (
                select  t2.*,
                        case
                          when login_time < max(logout_time) over(
                                                                  partition by emp_id,emp_date
                                                                  order by login_time
                                                                  rows between unbounded preceding
                                                                           and 1 preceding
                            then 0
                          else 1
                        end start_of_group
                  from  t2
         t4 as (
                select  t3.*,
                        sum(start_of_group) over(partition by emp_id,emp_date order by login_time) grp
                  from  t3
         t5 as (
                select  emp_id,
                        emp_date,
                        min(login_time) login_time,
                        max(logout_time) logout_time
                  from  t4
                  group by emp_id,
                           emp_date,
                           grp
    select  emp_id,
            numtodsinterval(sum(logout_time - login_time),'day') time_spent
      from  t5
      group by emp_id
      order by emp_id
        EMP_ID TIME_SPENT
            10 +000000000 03:00:00.000000000
    SQL> SY.

  • Create users for my application

    Hi! I'd like to make an administrative page so I can create users for my application. Let's say that I have following fields: username, first name, lasta name, password, etc.
    Does anyone have an example? Or a short description about what I have to do.
    Thanks a lot!

    Thanks Jes. I looked at that thread. As it's said there, I created my custom table of users and a function with 2 parameters(username and password).
    I was thinking to make a process which calls my function and take as parametres the (:P101_USERNAME,:P101_PASSWORD). I wrote some code in my function. But when I want to create the process, I got the next error:
    <b>ORA-06550: line 3, column 1: PLS-00103: Encountered the symbol "END" when expecting one of the following: := . ( % ; The symbol ";" was substituted for "END" to continue.</b>
    My function is this:
    create or replace function "AUTENTIFICATION"
    (p_username in VARCHAR2,
    p_password in VARCHAR2)
    return BOOLEAN
    is
    if p_username IS NULL or
    p_password IS NULL then
    return false;
    end if;
    if p_username NOT IN
    (select username
    from users) then
    return false;
    end if;
    if p_password NOT IN
    (select passw
    from users
    where username = 'p_username') then
    return false;
    end if;
    And in the PL/SQL Page Process I'm trying to put the following:
    <b>AUTENTIFICATION(:P101_USERNAME,:P101_PASSWORD) </b>, when I get the error.

  • How to create a reference user for B2C application?

    Hello,
    Can somebody please tell me how to create a reference user for B2C application?
    I am trying to create a new account on the B2C site. It is giving me a null pointer exception. I have not created a reference user for B2C application.
    Is there any documentation available to explain the steps required for this?
    Thanks,
    Harsha

    Hi Harsha,
    Please lookup http://help.sap.com/saphelp_crm40sr1/helpdata/en/be/511378ab1311d4b32b0050da4cccf0/frameset.htm for more information.
    Cheers,
    Ashok.

  • How to create the IView and Roles ,User for WebdynPro Application in Portal

    Hi,
           I have one simple webdynpro application. i want to create the user,Role and Iview for my webdynpro application in the Portal . after that i need to assign the roles to the user and i want to see the different output for each user depends upon the Role.
      Can anyone give me Tutorial page(PDF) or Guide me How to do?
             Thanks in Advance
    Regards
    Ramkumar

    Hello Ramkumar,
    following please find the link to available documentation in SAP Help Portal:
    http://help.sap.com/saphelp_nw70/helpdata/en/42/fa080514793ee6e10000000a1553f7/frameset.htm.
    Regards,
    SAP AG
    Gesine Raith

  • Maxl command to logout users for particular application

    Hello Everybody,
    Can you please help me on the below question.
    I have essbase 11.1.2.2 and I have a maxl script which does copy of applications A to B for maintenance, but during this process, the script logs out all the users from the system even though users dont access to A and B since they working on other applications eg., C, D and E.
    Currently I see the below command for logging out all users in the maxl script.
    "alter system logout session all force"
    Can you please let me know how I can logout user accessing only particular applications/database ( example A and B) in maxl script instead of logging out all the users from Essbase.
    Thanks for your help in advance.

    You can use...
    alter system logout session on application A force
    You will need to use one command per application.  Further details in the documentation for the same command (alter system):  http://docs.oracle.com/cd/E17236_01/epm.1112/esb_tech_ref/maxl_altsys.html  In particular, see the section titled "Session Specification" in the notes at the end.

  • Execute Webdynpro4Abap Application with same ERP-User for all portal-users?

    Hi,
    is it possible to let a Webdynpro4Abap application run with only one ERP-User for all portal-users? Therefore not needing an ERP-license for every portal-user?
    Somekind of mapping maybe?
    Regards
    Jan

    Jan,
    It is possible but it all depends on the type of application .If you want to show same data for all users you can use one user but if data is different for all users then you cannot go with this approach.
    to configure single backend user for your application go to tcode SICF and look for that application and go to logon data tab by double clicking and give one common user details
    Thanks
    Bala Duvvuri

  • Users for the j2ee application

    hi friends,
    i want to create the users for J2EE applications.
    can i create the users only for j2ee engine ?
    how can i create these users?
    if i want to implement the sap
    is it necessary to buy the licence for j2ee users?
    thanks&regards,
    srinivas.

    Hi
    To create the users in J2EE applications is not an issue, but the licensing is always applicable as it is applicable for ABAP applications.
    There are two ways depends on configurations:
    1. If the UME store is ABAP, then you can create the users at ABAP side using SU01 and at java side using http://<hostname>:5<Systemnumber>00/useradmin
    2. If the UME store is JAVA, then you can only create using http://<hostname>:5<Systemnumber>00/useradmin
    The licensing for JAVA applications depends as ABAP is having, if you use it as production you have to pay the charges. Please contact your local SAP representative for further details

  • Users for secure web services

    Hello,
    if i define a secure web service, i also have to define one or more users which are allowed to access this web service. I only found instruction for defining such users on the application level. If i undeploy or redeploy the web service i lost this users.
    Is there any possibility to store users for an application permanently or to define allowed users during the deployment?

    Hello,
    I suppose that you are in OracleAS 10.1.3.x and you are using the WS-Security built in the product. If this is the case...
    The WS-Security handlers are based on the JAAS security model, this means that the security processing is based on the container security. The user credentials are not related to the WS application but how the J2EE application security provider has been configured.
    So by default you are using the FileBased Security provided that stores the data in the system-jazn-data.xml, but you can easily configure your application to use any other system to store user information such as a LDAP server for example.
    I am inviting you to take a look to the Security Provider documentation:
    - Introducing the OracleAS JAAS Provider and Security Providers
    Regards
    Tugdual Grall

  • How to create a new application user by my application?

    Hello,
    I want to give the user of my application the possibility to create a new application user if necessary. The creation of a new user should be realized in my application. I tried to find the answer in the apex user guide, but I haven't found it. Can somebody tell me how to create a new application user in the implemented application (one page in application for creating users for my application)?
    Thanks,
    Bettina

    Hello Bettina,
    You can do that using the API: www_flow_fnd_user_api.create_fnd_user. If you look at that procedure in SQL Dev (or TOAD or whatever you like), you can see an example and the description of the arguments.
    Greetings,
    Roel
    http://roelhartman.blogspot.com/
    http://www.bloggingaboutoracle.org/
    http://www.logica.com/

  • Now "admin" user for RMIConnectionFactory goes through my UserManager class

    For about an hour, I successfully had my derived UserManager class authenticating users, AND calling an EJB session bean to create auditing events. This was working fine. Then, I did something to the configuration, and I'm not sure what. Part of the current fix was to configure the InitialContext for JNDI to specify an RMIConnectionFactory, and specifying the "admin" user and password. This is the "admin" user for the application server, not a user known to my UserManager class.
    Somehow, after I "fixed" something in my configuration, when I try to do the JNDI lookup (Using the RMI factory, etc.), instead of returning the RemoteHome, it actually calls my UserManager class to authenticate the "admin" user. My UserManager can't authenticate that, as it's a user not known to it.
    I believe that the UserManager is supposed to be in a "chain" of UserManagers. I would guess that the "parent" of my UserManager is supposed to get the first crack at authenticating a user, and the first UserManager that says a user exists, will handle the work of authenticating the user's password. I believe this is how it's supposed to work.
    So, it seems like I somehow deactivated that "chain", so my UserManager is apparently the only UserManager.
    I wish it was completely clear exactly what configuration file I should put here, either from OC4J or JDev (it happens the same way in both). The way some of these files are copied around at deployment is somewhat confusing.

    I think I'm understanding this a little better, and I think what I'm seeing is actually how it's supposed to work, but I really did think that for about the first hour after I got the EJB connection working, that it was NOT trying to authenicate the "admin" user in my UserManager class.
    I think, normally, someone writing an ordinary UserManager class could ignore this situation, because when it calls their "userExists()" method with the "admin" user, and it returns "false", it will still eventually return "true" when the XMLUserManager handles it.
    However, in my case it is bad for me to ignore the possibility of being called with the "admin" user, because my security requirements state that I have to create auditing events when someone tries to log in with an invalid user id. I create those auditing events by calling a stateless session bean (which is how I ran into this problem in the first place). It has to call that SLSB by using JNDI to get the RemoteHome, but it has to configure the InitialContext with an RMIFactory, and specifying the "admin" user and credentials. In short, if I let my UserManager class verify the "admin" user, it will fail to find it, so it will try to create an auditing event, which will be the start of a wonderful infinite recursion loop.
    I can clean this up a bit, as I don't have to hardcode "admin", because I already set up additional properties for my UserManager, including the "jndiPrincipal". So instead I just return "false" if the given userid is the same as my jndiPrincipal property.

  • Siebel CRM Modules as DataSource for OBI Apps other than EBS R12

    I want to install Siebel CRM modles that will help me serving as SourceSystem for OBI Applications to R&D DAC & associated prebuilt Informatica mappings.
    {noformat}Name                                                                                                                Part Number                       Size (Bytes){noformat}
    {noformat}Siebel Business Applications Version 8.1.1.0 Quick Installation Guide                                               V14590-01                      390K{noformat}
    {noformat}Siebel Business Applications Version 8.1.1.0 Bookshelf                                                              V14591-01                      149M{noformat}
    {noformat}Siebel Business Applications Version 8.1.1.0 Third-Party Documentation                                      V14959-01                      6.9M{noformat}
    {noformat}Siebel Business Applications Version 8.1.1.0 (SEA) Base Applications for Windows (Part 1 of 2)      V15364-01 Part 1 of 2      1.9G{noformat}
    {noformat}Siebel Business Applications Version 8.1.1.0 (SEA) Base Applications for Windows (Part 2 of 2)      V15364-01 Part 2 of 2      460M{noformat}
    Siebel Business Applications Version 8.1.1.0 (SEA) Sample Database                                              V15406-01                      1.2G
    Siebel Business Applications Version 8.1.1.0 Siebel Business Rules                                              V15464-01                      442M
    Siebel Business Applications Version 8.1.1.0 (SEA) Siebel Client (Part 1 of 2)                              V15359-01 Part 1 of 2      1.9G
    Siebel Business Applications Version 8.1.1.0 (SEA) Siebel Client (Part 2 of 2)                              V15359-01 Part 2 of 2      1.7G
    Siebel Business Applications Version 8.1.1.0 (SEA) Siebel Tools                                                      V15388-01                      1.9G
    Siebel Business Applications Version 8.1.1.0 (SEA) Self-Service Applications                                     V15041-01                      406M
    Siebel Business Applications Version 8.1.1.0 (SEA) Strong Encryption Pack                                      V15383-01                      225M
    Siebel Business Applications Version 8.1.1.0 (SEA) ImageCreator Files                                              V15373-01                      213M
    Siebel Business Applications Version 8.1.1.0 (SEA) English Language Extension Pack (Part 1 of 2)      V15367-01 Part 1 of 2      1.9G
    Siebel Business Applications Version 8.1.1.0 (SEA) English Language Extension Pack (Part 2 of 2)      V15367-01 Part 2 of 2      602M
    Siebel Business Applications Version 8.1.1.0 eMail Marketing Integrated Server Windows              V14834-01                      98M
    Siebel Smart Answer Connector for Windows                                                                              V16621-01                      317M
    Oracle Business Intelligence Product Support Information (CD)                                                      B45928-01                      116K
    Oracle BI Publisher Enterprise 10.1.3.4.0 for Microsoft Windows (Part 1 of 2)                              B50931-01 Part 1 of 2        598M
    Oracle BI Publisher Enterprise 10.1.3.4.0 for Microsoft Windows (Part 2 of 2)                              B50931-01 Part 2 of 2              162M
    Oracle BI Publisher Desktop 10.1.3.4.0 for Microsoft Windows                                                      B50929-01                      118M-----------------------------
    Can any one please help me with
    1. all the part numbers to download for a full fledged R&D set up?
    2. what other components are required to integrate siebel crm w/ obiee, obi apps, infa prebuilt mappings
    3. any installtion guide for reference.
    Appreciate your time.

    Hi
    If you do the install from the sofware lsited (btw I would challenge the choice of the SEA vs the SIA) , you will face an issue for your project as you will end up with an empty database and you will not be able to extract any data for dashboards.
    Check the licence agreement on the virtual machine available with SIebel preinstalled as you might use them to save on the effort of install and also get some sample data to play with.
    Best Regards
    EvtLogLvl

  • How to enable iphone application for multiple iDevices associated with single user for non renewable subscription?

    I am developing an ios application which has non renewable subscription.
    Which algorithm would be best if the very time an authorized user purchase my application after paying charge for it , can download it for other devices assocated with him for free?
    Any help would be appreciated?    
        Thanks in advance
         Neeraj@iDev

    Thanks! I see a potential problem--iTunes must be open on the main(?) other computer for sharing to works, according to some of the documentation. My situation is that daughter 1 grabs the main computer, access iTunes and her account. Then daughter 2 comes into room, screams upon seeing daughter 1 using the iTunes computer.
    I want daughter 2 to calmly walk to computer 2, open iTunes and somehow seamlessly access her iTunes library. In that case, iTunes may be open on computer 1, but not with her library open or her id in force. It might also be the situation that computer 1 does not have iTunes even running at that time, if daughter 1 is on Facebook.
    Can Home Sharing handle this situation?
    Larry

  • How to find solution for avoiding WARNING J2EE SECUR-00100 ********** user-manager (see application/server descriptors) will no longer be supported in the next release of this product

    HI All,
    We are using Oc4j version 10g 10.1.3 , and while starting conatiner  getting below warning , let me know if anyone have solution for this,.
    14/01/10 01:01:29 ********** user-manager (see application/server descriptors) will no longer be supported in the next release of this product!
    Please take the appropriate actions to migrate to an alternative strategy! **********
    2014-01-10 01:01:29.833 WARNING J2EE SECUR-00100 ********** user-manager (see application/server descriptors) will no longer be supported in the next release
    of this product!

    I just checked my BIOS and my current setting is set at IDE although it also mentions that the default should be AHCI. Currently I have a dual boot of Windows 7 (need it for Tax software) and Arch
    So I guess, when I get the new HDD, I will first set it to AHCI and then install the OSes on it. See if NCQ helps any, and if not I will turn it back and re-install (if I have to). I am planning to have Windows only in virtualbox in the new drive.
    Anyhoo, while I was in the BIOS I found two things which I had questions about :
    1) Under Onboard Devices --> Integrated NIC , my setting is currently set at "On w/PXE" and it says the default should be just "On". Would it be ok to change it back to On since its a single machine and its not booting an OS on any server. I just don't want to have to re-install anything now since I will be doing that in the new HDD.
    2) How would I know whether my BIOS would support a 64 bit OS in Virtualbox? I checked some setting under Virtualization, but they weren't very clear.
    I will edit this post and let you know exactly what settings were present under the Virtualization sub-section.

  • Setting Users for my managed services and application pools

    I setup my SharePoint 2013 test environment and I developed an intranet site. Now inside my test environment I set all the application pool & managed services to use Farm user account for simplicity. Now I want to setup my UAT environment and I want
    to follow the best practice for managing users and service accounts.
    I have read the “Core Solutions Of MS SharePoint 2013” book, and it have listed the following table:-
    First question. What is the difference when saying that the user “Must be a member of the Farm Administrators group” Or must be “Domain user account”?
    Second question , when I first install SharePoint 2013 a lot of applications pools and managed services such as excel services , access services, Performance Point Service Application, business
    data connectivity and Machine Translation Service  will be automatically created , so which account they will be using and should I define separate accounts for each managed service ?
    Third question. What is the recommendation for SharePoint 2013 regarding service accounts?, to use separate account for each manage service, for example one user for excel services , second user
    for access services ,etc?
    Fourth question. For example the documentation mentioned that the Required roles for the excel services is “Domain user account.”, but what permissions this domain user need to have ?
    thanks for any help, and sorry so adding multiple questions inside the same post.

    Q #1: This means the user must be part of the Farm Admins group. Every user is a Domain User.
    Q #2: Generally those should be using a single Domain User account in a single Application Pool to minimize memory usage and reduce unnecessary complexity.
    Q #3: The less Application Pools the better. E.g. One account/App Pool for all Web Applications, one account/App Pool for all Service Applications, and then Central Administration is obviously separate.
    Q #4: You don't need to specifically give this type of user any sort of rights
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

Maybe you are looking for

  • Music - The requested URL was not found on this server

    Hi I have brought iphone 5 and most of all my songs are brought from itunes, I can not play my music application - everytime I click on a song to play I get an error message saying - "The requested URL was not found on this server" also all my music

  • PS3 is making a clicking sound...

    Hi This is my first post as I am new to this website and Playstation 3 so I apologise if it is in the wrong place. I have recently bought a Playstation 3 Slim 320GB model. I load it up fine and it runs smoothly, no problems there. But there is this o

  • Offline disk problem in aperture

    I have imported photos in a project as referenced files on my Macintosh HD. Now aperture doesn't find the masters and say that the disk is offline! I've tried to mount the disk in the "located referenced files.." window but it doesn't work! please he

  • N95 camera (no image in view finder)

    hope someone can advise, when i open the camera shutter usually you see what you want to take pictures of etc with the little icons on the right (shoot mode etc) but for some reason when i open it now i get no image at all although i do get the icons

  • PSE5 organizer-like timeline display/search option in Bridge?

    I'm a former PS elements organizer (PSE5) user who recently was forced into using Bridge once we upgraded new comps & bought CS4. I still am having trouble getting my keywords to work correctly in Bridge after I migrated all the pix - but that's not