Users for Applications of the OBI

Hello

I am confused with point 4.4.1 of the Applications OBI 7.9.6.3 installation manual... I ve copied below:

+ "The transactional (OLTP) database user which is recorded in the DAC must be the +"
+ the owner of the database table. You can also at the very least, the user registered in DAC +.
+ must have read privileges on the transactional database for all tables and aliases. +
+ For databases CRM Siebel, the OLTP database user requires privileges create +.
+ triggers and views on all tables and aliases. » +

I do not quite understand... The OLTP database user that is registered in DAC > > pls. It is the owner of the dac repository? One that do us the DAC connection?

The next paragraph explains... the OLTP database user requires privileges to create a... > > I guess it's the same user that above?

PLS, I appreciate the comments and help :))

TXS
Antonio

Answers to your questions:

I do not quite understand... The OLTP database user that is registered in DAC > pls. It is the owner of the dac repository?

A: this is referring to the ERP system schema user. DAC direct JDBC calls to the OLTP system so that user must read the tables and also ADD/DROP index. You may also import OLTP tables to DAC to save time. This isn't the user you are using to connect to the DAC or the owner of the DAC repository. More precisely, it is the user of ERP system you describe in your source system.

The next paragraph explains... the OLTP database user needs privileges create... > I guess it's the same user as above?

A: Yes, this is the user OLTP. If your source system is Siebel CRM, you must have access to CREATE. If its NOT Siebel CRM then CREATE TABLE privilege is not necessary.

So useful, mark appropriate or useful

Tags: Business Intelligence

Similar Questions

  • What is the difference between Fusion and Applications of the OBI. ?

    Hi all

    Please help me understand what OBIA and merge request. ? They are even if not, what is the difference. ?

    Thank you

    J Smith

    Merger application is a suite ERP (basically an OLTP system) supporting families of products such as Supply Chain, procurement, finance, HCM, CRM.

    Applications of the OBI is an output of the application of datawarehousing box (OLAP) that provides précodé ETL (in ODI or lower depending on version) and predefined in OBIEE reporting model. This application supports the extraction of the source data from systems ERP Oracle EBS, TFTP, Siebel systems of source. Applications of the merger is also one of the source systems supported by the Applications of the OBI.

  • EBS Tables for Tables of the OBI.

    Hello world

    We have a fast requiremnet, for this we need to find the tables of the EBS for corresponding arrays of OBI and their columns are below.

    < font color = "Blue" > W_GL_ACCOUNT_D < / police > GROUP_ACCOUNT_NUM
    < font color = "Blue" > W_GL_OTHER_F < / police > GLOBAL1_EXCHANGE_RATE
    < font color = "Blue" > W_STATUS_D < / police > ROW_WID
    < font color = "Blue" > W_MCAL_DAY_D < / police > MCAL_DAY_DT_WID
    < font color = "Blue" > W_EMPLOYMENT_STAT_CAT_D < / police > W_EMPLOYMENT_STAT_CODE
    < font color = "Blue" > W_WRKFC_BAL_A < / police > WORKFORCE

    Please share with us, if someone of you having good idea on EBS Source System.

    Your entries here are very much appreciated...

    Thanks in advance.

    Raghu Jen7782

    Published by: Jen7782 on May 20, 2013 Rambaud 03:36

    Hello

    Have you checked your old post. That's what I said in that.

    "You can use Data lineage guide to tie the process."

    Here is the note the same id. Check in the Oracle support site.

    Oracle Business Intelligence Applications ETL Data Lineage Guide version 7.9.6.2 and 7.9.6.3 [ID 1274680.1].

    Mark correct or useful if it helps.

    Let me know if you need anything that anyone else.

    Kind regards
    Rayan Vieira

  • Where can I find data, such as saved games, for applications like the pillars of eternity?

    I looked at the support of the application, and there is no record of the application of the pillars of eternity. In fact, there is only the application itself, and opening "content" does not show a file parts stored. Any help will be appreciated.

    Finally, with the assistance of a person in POE forum community. I mention it here only because there may be other applications for which this is true. The location for such a game records are library/containers... you will find a folder containing everything, in this case, the files of POE.

  • Wrote a review for application on the surface rt

    I'm writing a review for an application on the windows store I use windows done rt area someone has an idea how do?

    Come on...

    There are several ways to do so.

    -First, that you did not clearly, doing a simple Internet search to understand.

    -the second is to launch the application, open the charm of settings and using the applicable rating and review option.

    -the third is to find the app in the store and use the appropriate rate and examine the area is generally located next to the app description.

    I am inclined to believe that you haven't looked around (?) because it is very easy to know how to do.

  • "Face control" for applications at the opening session in the database

    I need to deny access to certain applications, except written request by me (oracle forms)

    I do the following

    1 beforehand (form krn_start), I add line dbms_application_info.set_module ('KIKIMARA', ");
    and after logon user, the module name "KIKIMARA" appears in v$ session.

    2 create the trigger for logons
    CREATE OR REPLACE TRIGGER AfterConnect AFTER LOGON ON DATABASE
    declare
    l_module_name VARCHAR (48);
    l_action_name varchar (32);
    BEGIN
    DBMS_APPLICATION_INFO.read_module (l_module_name, l_action_name);
    insert into audit_tab (l_module_name, sysdate) values;
    If l_module_name not in ('KIKIMARA') then
    raise_application_error (-20000, "Program error");
    end if;
    end;

    But all the user of any application of connections and audit_tab shows a column null with current sysdate.

    PS: when I start my form after module of logon user name "KIKIMARA" appears in v$ session

    Help, please. SOS!

    Sanjar wrote:
    Question for developers - how to change the module of ORACLE FORMS before logging?

    You can not set_module before logging. For an obvious reason - you are not connected :)
    You can try the workaround is to use dbms_job.submit in trigger AFTER logon.
    After 1 second, submit the procedure that will kill session if the module name is not KIKIMARA. This module time name must be already defined by shapes.
    Unfortunately no user-friendly messages in this solution...

    something like that:

    in the forms after LOGON

    dbms_application_info.set_module('KIKIMARA','');
    

    On the database:

    CREATE OR REPLACE TRIGGER AfterConnect AFTER LOGON ON DATABASE
    DECLARE
    l_job NUMBER(10);
    BEGIN
     FOR x IN (SELECT audsid
                     FROM v$session
                 WHERE audsid = USERENV('SESSIONID')
                 AND program = 'frmweb.exe') LOOP
           DBMS_JOB.SUBMIT(l_job, 'Audit_Kill('|| x.audsid ||');', SYSDATE+1/24/60/60);  -- 1 second
           COMMIT;
      END LOOP;
    END;
    
    CREATE OR REPLACE PROCEDURE Audit_Kill (p_audsid VARCHAR2) IS
    l_module_name VARCHAR(48);
    l_sid NUMBER(10);
    l_serial NUMBER(10);
    BEGIN
     SELECT module,  SID, serial#
     INTO  l_module_name,l_sid, l_serial
     FROM v$session WHERE audsid=p_audsid AND program='frmweb.exe'
     AND ROWNUM=1;
     INSERT INTO AUDIT_TAB VALUES(l_module_name, SYSDATE );
     COMMIT;
     IF l_module_name not in  ('KIKIMARA') THEN
      EXECUTE IMMEDIATE 'alter system kill session '''||l_sid||', '||l_serial||'''';
     END IF;
    END;
    
  • How - to add options for application to the BlackBerry Options

    I generated the example "How - to add application options to the BlackBerry Options" of the knowledge base and run it on a Pearl Flip but I don't see any new added options. I could be looking in the wrong place, but I thought that the sample adds "Options Sample" to the list of options.

    No one knows where to look for the new option added by this example?

    I went back and Setup another entry point recompiled and still can't find where is the new option.

    Thanks Mark. That makes perfect sense as the mail app needs to retrieve incoming messages at any time.

    I've updated my code to close to the bottom of my library of applications by programming, I added a menu too. Is better to be sure that the library is closed and ready for the next event to use it.

  • How to change the types of licenses for Adobe CC users for accounts of the teams?

    I am the administrator of a CC from Adobe on behalf of teams for my business. We currently have 13 users who have received licences "Creative cloud - full", and we would like to drop 8 of them to Photoshop licenses only. I would like to do this in a way minimizes the impact of our users and ideally prevents an office visit.

    How can I convert these 8 users of Photoshop licenses only and reduce my monthly bill? Thank you.

    This is an open forum, Adobe support... you need Adobe personnel to help

    Adobe contact information - http://helpx.adobe.com/contact.html

    -Select your product and what you need help with

    -Click on the blue box "still need help? Contact us. "

  • writing in an array of FPGAs for application of the rt

    When you use the control to write in an application of rt to write to a table fixed fpga is it requires to perfectly fit the sizes of battery?  I am assuming that you can write an array which is less than or equal to the size of table fixed fpga with no penalty.

    You can write any table size to the FPGA IO node; It will be resized to the correct length.  If you write a shorter range, however, I don't know if the remaining elements will be filled with 0 or something else.

  • Errorlog for application on the device

    is it possible to view a log of errors of the application once on the device?  My application does not work when the phone, but does on Simulator.

    Debugging on the device, by connecting the device to your IDE.  Sorry don't know how to do this on Eclipse, I always get this using the JDE, there is video that describes this process.

    You can view the error log by using the combination of keys ALT-L-G-L-G standard from the home screen.

    Sign here of the usual problems and level of operating system, make sure that the level of the OS on your device is > = your package JDE/component.

  • Please Ad 2.0.1 for min free for applications on the PlayBook

    In reference to:

    http://supportforums.BlackBerry.com/T5/Adobe-AIR-development/apps-can-be-extracted-from-the-PlayBook...

    Please add 2.0.1 as a min OS apps can take advantage of the new security measures.

    This is right now.

  • Can't see the photos for applications on the taskbar

    original title: overview on the taskbar

    Somehow, I disabled the preview function on my icons in the taskbar. They now display a written description of the window when I point at them. How can I change in preview mode?

    Read this

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-desktop/Aero-Troubleshooter-says-desktop-window-manager/82f1eb92-D371-407C-8118-bee158c3ccae

  • Objects of the class defined by the user for an element of the ADF (button, inputfield)

    How to set a class object defined by the user for objects of the ADF?
    My requirement is that when I make a change to the object of the class, it should get reflectected to all instances on my page.
    For example:-I'll have the class object clsInputField, and all my fields entry in my pages are based on this object. So when I change clsInputField it should get reflected to all my controls based on this class object.
    Help, please!

    It's the classic use of a library of component declarative ADF.
    Put your postal code entry filed in an adf library, as well as any other code you will need to manage the entry, pack it as a library of the adf and reuse the item (and its formatting, validation) on each page as you like.
    If you change the component changes are global to all instances of the component.

    Take a look at this demo

    Timo

  • Cannot call a spade BBM video or Audio application in the workspace

    I have an application workspace, I'm developing, and I can't call video BBM.

        InvokeManager invokeManager;
        InvokeRequest request;
        request.setTarget("sys.service.videochat");
        request.setAction("bb.action.OPEN");
        QString data_str = "dest="++"&video=1";
        QByteArray data = data_str.toUtf8();
        request.setData(data);
        invokeManager.invoke(request);
    

    I don't get any errors. It does not only. It is not accessible from the workspace?

    Sorry, I should have been more clear.  BBM video and Audio conversations are not officially supported, but you can call BBM to do a text based chat.  The bullets refer to list the features of BBM.  But note that it is also said that some of these features are available for applications in the workspace.  Not all the target invocation of basic applications take on the workspace.  For example, that the camera is not supported.

  • File system access for applications, where is ' accounts/1000/removable/sdcard/camera' I can not find...

    Hello

    I have pictures stored in the accounts/1000/removable/sdcard/camera, but I can't find anywhere on my camera, I can see it using the app file manager with bb10, under ' Media Card/camera ' and the filepicker may also be seen, but I can't open a file residing in the path: for example accounts/1000/removable/sdcard/camera/img0000123.jpg.  I also tried to find it by using the "Target File System Navigator" momentics, I can't seem to find the sd card media anywhere there either... I took a quick glance to access to the file for docs apps system at: https://developer.blackberry.com/cascades/documentation/device_platform/filesystem/

    and there, I see no reference to my sdcard/media...

    IF someone could help me it would be greatly appreciacted...  Thank you

    The working directory (also known as the current directory) for an application is the folder above the data / folder, which is/accounts/1000/appdata/yourappidhere for applications in the personal area.

    In this folder are a number of actual files and symbolic links to other folders. A shared symbolic links / if you can use it to search the shared folder on the device, as you do here.

    There is no symbolic links for removable file systems...

    You must use the full path to access. Note that they have another symbolic link upwards in the root folder, specifically the /sdcard2, that points to the SD card, but I don't know if that has supported (documented and supposed to exist in the future).

Maybe you are looking for