How to register user in Warehouse Builder

Hi All,
I have installed OWB 11g in my machine. I have created repository owner user in OLAP schema. In my process flows few flows are related to "OLAP instance" and few flows are related to "OLTP instance". Now I want to register my OLTP user present in OLTP instance, but when I start the wizard for registering user I get only OLAP instance users.
Please let me know how can I register my OLTP user of OLTP instance.
Is there any way to register database user manually in warehouse builder i.e. without using register user wizard?
Thanks
VishalS

Hi,
create the users as repos-owner in the design center or grant the roles to an existing db user. Don't make them to TARGET users!
Then selct the project, right mouse-click opens the context menue, select configuration, select the security tab and revoke all permissions except read from this users.
Regards,
Detlef

Similar Messages

  • Registering Database Users as Warehouse Builder Users - Paris

    On OWB 10.2.0.1 When I do this (Registering Database Users as Warehouse Builder Users - Target) I am getting ORA-01031: insufficient privileges
    DEVDW error:ORA-01031: insufficient privileges
    ORA-06512: at
    "REP_OWNER.WB_RTI_TARGET_SCHEMA_PRIVS", line 356 ORA-06152: at line 1

    i too get the same error..............even i had given that privs externally through OEM the same error is repeating.we could not able to log into the registry as repoitory owner.can some one give what sort of databse privs should a repository owner and repository user should have.

  • How to register User custom field using PHP?

    Hi!
    I am looking for a way to share user specific data between connected users. For example, all participants should know each other IDs(our own system IDs, not LCCS).
    User's custom fields looks the best solution for this, but I can't find a way to register one using PHP, while creating room.
    How to register User's  custom field using PHP? Or may be there are better solution to make such things?

    Got it, just need to add new node to UserManager collection.
    const USER_MANAGER_COLLECTION = 'UserManager';
    static private $USER_MANAGER_CUSTOM_FIELD_CONFIGURATION = array(
       'accessModel'=>self::ROLE_VIEWER,
       'publishModel'=>self::ROLE_VIEWER,
       'persistItems'=>true,
       'modifyAnyItem'=>false,
       'userDependentItems'=>true,
       'sessionDependentItems'=>false,
       'itemStorageScheme'=>self::STORAGE_SCHEME_MANUAL,
       'allowPrivateMessages'=>true,
       'lazySubscription'=>false,
       'p2pDataMessaging'=>false
    const USER_INVITE_ID_CUSTOM_FIELD = 'inviteId';
    static private function createUserManagerCustomFields($room){
       $account = self::init();
       $collection = self::USER_MANAGER_COLLECTION;
       $account->subscribeCollection($room, $collection);
       $account->createNode($room, $collection, self::USER_INVITE_ID_CUSTOM_FIELD, self::$USER_MANAGER_CUSTOM_FIELD_CONFIGURATION);

  • How scaler query works in warehouse builder

    suppose i have two tables. 1 is salary, the other is overtime. Salary is given by each employee but few of them are given overtime. i solve this in SQL like this
    " SELECT S.EMPLOYEECODE,S.DEPTCODE,S.DESIGID,S.GROSSPAY,
    (SELECT O.AMOUNT
    FROM OVERTIME_CALCULATION O
    WHERE O.EMPLOYEECODE = S.EMPLOYEECODE
    AND O.OVERTIME_DATE = S.SALDATE) OVERTIME
    FROM YTOD_SAL S, EMPLOYEES E
    WHERE S.EMPLOYEECODE = 'D2194'
    AND E.EMPLOYEECODE = S.EMPLOYEECODE "
    how can i solve this in warehouse builder,
    plz help me...
    thanks in advance

    Yes. Everybody has right. your query is an outer join.
    This SQL (which is approximately yours)
    select t.*, (select c1 from t2 where t2.key1 = t.key1) c1,
                (select c2 from t3 where t3.key1 = t.key2) c2
      from tis the same that :
    select t.*, t2.c1, t3.c3
      from t, t2, t3
    where t.key1 = t2.key1 (+)
       and t.key2 = t3.key2 (+)Thus transform your query in an outer join and use a joiner operator.
    Just a question. What is scaler query ?
    Success
    Nico
    http://gerardnico.com

  • How to create user using Form Builder

    How can use Oracle Developer2000 Form6 to create user in database (oracle 8i) from Trigger of Form6. I've try to use statement "create user ..... identified by ...." in PL/SQL editor of When-Button-Pressed trigger and it had complilation error with that statement.

    Probably best not to create the user directly from Forms.
    Create a DB Package with a procedure to create a user. This proc should take, e.g. username & password as parameters (& maybe other things - default tablespace, etc.):
    PROCEDURE cre_user(p_username VARCHAR2, p_password VARCHAR2) IS
    BEGIN
    EXECUTE IMMEDIATE('CREATE USER '||p_username||' IDENTIFIED BY '||p_password);
    END cre_user;
    Give the package the correct user creation privileges & DEFINER or INVOKER s rights.
    Grant EXECUTE on the package (or its SYNONYM) to the appropriate end-users
    Finally, call the packaged procedure from your Form with the appropriate parameters.
    If you need to return info. to the Form, use OUT parameters.
    Also, consider the security implications of sending the password in an unencrypted form.

  • How to register user with developer rights in Netweaver 2004s

    Dear all,
    I have installed net 2004s on my laptop i want to use bw system in default client 001.
    for that that i created a new user in 001 client
    but that user is not registerd as developer .
    can you suggest a way .
    Regards,
    gaurav.

    Hi,
    You have IDES version running,here some default user id and corresponding access key will be stored in table DEVACCESS.In real case there will be no entry initially.You have to get it from service marketplace as mentioned by Juan.When a developer will give the key that entry will be updated in the table  DEVACCESS.
    so I said try to see if any access key entry is there in table DEVACCESS.If so create a user id (from the table entry) and assign the key.
    Regards
    Ashok

  • Confuse about Configuring Oracle Warehouse Builder

    newbie here... i am abit confuse on how to configure the Oracle Warehouse builder...
    I have 2 database... 1 source and 1 new one...
    I understand that i have to install the Runtime Repository in the database computer and the Target Schema through the client's computer...
    so all this while... i am just confuse about what to install into the source database and what to install into the new database...
    Please help...

    Location is a logical entity in your OWB design that can be either a database schema, a flat file location, an SAP application location etc. Once you complete your design and are ready to deploy the design into the runtime environment, you will have to 'register' the locations by providing the physical details of your location to OWB (user name/password, database, hostname etc.).
    I am a bit confused by your configuration - are the source and the target in two separate schemas or in the same schema? Your posts are somewhat contradictory.
    If they are in two different schemas, you should:
    1. Create a source module pointing to a source schema (you can then import data object structures from the source schema - i.e. you don't have to create source tables manually in OWB, but you can import them into the module automatically). This module will have a source location (for example SRC_LOC).
    2. Create a target module where all your target objects will be (i.e. where the data will be loaded). This module will have a different location (TGT_LOC). In your target module you will also create the mappings.
    3. When deploying, you will register SRC_LOC with the physical details of your source schema, while the target location will be registered with the physical details of the target schema. The code generated by OWB during deployment will make sure that the data is extracted from the source schema and inserted into the target schema (either by generating and using DB links or by qualifying the schemas in the extraction queries if source and target are in the same database instance).
    On the other hand, if both source and target objects are in the same db schema, you can have all your objects in the same target module and you will only have to register the location of this target module when deploying (LOC_TGT).
    That said, there can be a variety of reasons why there is no data in the target after you run the extract mapping that have nothing to do with locations, such as logical errors in the mapping (an inappropriate filter or a wrong join), insufficient privileges etc. I suggest you take a look in the runtime audit browser that should contain the error messages relative to your mapping.
    Regards:
    Igor

  • Warehouse builder mapping

    how to populate data using warehouse builder using
    transformations from stage table to fact table.My problem is
    that only those records are inserted which have the
    transformations satisfied but not the others. So how do i give a
    join condition to overcome this.

    Hi
    I hope I can help you out but couldn't get your problem
    correctly. It would be more clear if you can cite an example.
    Regards
    Sudhanshu

  • Warehouse Builder Browser Customization

    Hi,
    I user Oracle Warehouse Builder 11.2
    Is there the possibility to customize "Warehouse Builder Browser"? Styles, contents and so on...
    Thanks
    Regards,
    Luca

    I haven't seen anyone doing this, OWB is based on UIX which although had this capability wasn't exposed. You can build up custom reports using the public SQL views for the design and runtime repositories.
    Cheers
    David

  • Warehouse Builder - Workflow - How to integrate both?

    Hi All
    I have installed Oracle Workflow Server in a SUN machine; and the Oracle
    Workflow Client (Builder) in a WIN2000 machine.
    In the SUN machine, I already had installed Oracle9i and OMS (Oracle
    Management Server) version 9.2.0.1.0.
    In the WINDOWS 2000 machine, I already had installed the Oracle9i
    Client and the OWB (Oracle Warehouse Builder) version 9.0.3.35.0. Workflow Builder
    was installed together with Oracle Client components.
    I have a OWB (Oracle Warehouse Builder) project, and I deploy and schedule JOBS in OEM.
    Now I need Oracle Workflow in order to better ordering, manage and schedule that jobs.
    I'm reading the following documentation:
    Oracle Workflow Guide (Release 2.6.2)
    http://www.csis.gvsu.edu/GeneralInfo/Oracle/workflow.920/a95265.pdf
    But I think Oracle Workflow is very complex to learn quickly.
    My OWB Project has several mappings that load tables in a Data Warehouse.
    When I deploy these mappings one by one, in OEM, I can execute them in OEM
    and they work well.
    But when I use the Workflow Deployment Wizard, I create a new Workflow
    Project (Item type and Process).
    But I can't Launch this process. I go to Launch Process in Workflow page
    (http://<my_machine>:<port>/pls/<WorkDAD>/) but when I iniciate the project,
    it stops in the OWB Standard Begin Function. It does not go ahead.
    Well, when I use the Workflow Deployment Wizard inside OWB, it generates jobs that can
    be viewed inside OEM (Oracle Enterprise Manager) too. But when I submit
    these jobs, I can't get success too.
    Can somebody help me? May you guide me in order to solve my problem, or send me some
    documents or links about workflow, and it's integration with OWB and OEM?
    Best regards
    Adriano Sastre Vieira
    Especialista em Sistemas
    Inatel Competence Center
    +55 35 3471 9335
    [email protected]

    Mark, I've already made the steps you suggested.
    As it did not works yet, I will explain step by step what I've made, and the versions of the softwares:
    In my Win2000 machine (development) I have installed:
    - OWB version "9.0.3.33.0" and updated it to "9.0.3.35.0". (in a Oracle9iDS ORACLE_HOME).
    - the OEM version "9.2.0.1.0" and Oracle Workflow Builder version "2.6.1.5.2" (in a Oracle9i ORACLE_HOME), both were installed with Oracle9i Client. Here maybe an error is the OWF Builder version, is there an newer version of it?
    In a SUN SOLARIS machine (the server) we have installed:
    - OMS version "9.2.0.1.0".
    - OWF Server version "2.6.2" (installed with Oracle "9.0.2.1").
    - Apache HTTP Server version "1.3" (also installed with Oracle "9.0.2.1").
    - The repository for OWB, OEM and OWF (both 3 are different schemas in one database), and the target Warehouse (another database) are installed in this machine (SUN) too.
    Well, working in my OWB project I can normaly deploy my tables, views and mappings in the target warehouse.
    I can also run these jobs (generated by OWB) and they populate the Warehouse tables. It is exactly what I need, but now I need to schedule and order these jobs in workflow, you know.
    When I run the Workflow Deployment Wizard (in OWB), in the "connect information for the Workflow Server" screen, I fill in with the "owf_mgr" username and its password. In the next screen I choose one or more mappings.
    Next, suppose I fill in the Workflow Item Type as WIT_DW and the Workflow Process as WP_DW.
    And in the last screen, I check the option "Deploy the Workflow Process into OEM".
    It generates 4 jobs in OEM:
    - WIT_DW_OWB_STD_BEGIN
    - WIT_DW_OWB_STD_END
    - WIT_DW_OWB_STD_ERROR
    - WIT_DW_WP_DW
    Next, I go to the Oracle Workflow Builder, open the project I've created (in the Database), make the flow, and save the project.
    Next, I come back to the OEM and Submit the "WIT_DW_WP_DW" job, but it does not work. So, there's something wrong yet.
    About the Workflow Queue Listener:
    - Together with OWB 9.0.33.3.0 installation, there's the directory "extras\wfql_unix". I copied this directory contents inside "$ORACLE_HOME" in SUN.
    - Inside OWB, in the Warehouse Module, in the "Configuration Properties DATA_WAREHOUSE" screen, I filled in the "Run
    Time Directories > Queue Listener Directory" field with "/disk1/oracle/owb/bin/solaris". (It's the local where the workflowqlsnr.sh is located). And in the field "Queue Listener Host" I put the name of the SUN machine.
    - But I can't run the workflowqlsnr.sh with success. Some java errors occurs. Is there anything to do or configure yet?
    More questions (Please I'd very glad if you could help me):
    - Is there some thing I need to configure in the Workflow Manager page?
    (http://[machine]:[port]/servlets/em/oam/wfm/wfmLogin$tns_address=)
    E.g., change or add Background Engine / Agent Listener / Queue Propagation / Purge.
    - Is there some thing I need to configure in the Workflow home page?
    (http://[machine]:[port]/pls/[WorkDAD]/wfa_html.home)
    - How do I erase the Workflow Items Type in the Workflow Home Page? I runned the "workflowqclr.sh" but it didn't erase.
    Thanks again
    Adriano Sastre Vieira
    Especialista em Sistemas
    Inatel Competence Center
    +55 35 3471 9335
    [email protected]
    You wrote:
    Adriano,
    In order to manage the dependencies between the mappings using Oracle Workflow you have to do the following:
    - Deploy your mappings (PL/SQL into the database; ABAP to the SAP machine; SQL loader on to the target database's file system).
    - Register all mappings in OEM (that is, using the tcl scripts and the OEM register button).
    - Run the Workflow deployment wizard to create the process steps in Oracle Workflow. At the end of the wizard, you can choose to create Workflow jobs to invoke the process flow.
    - Use Workflow Builder to build the actual process flow (so far you have only created the process steps). Save the process.
    - Either use OEM to submit the process or use the workflowqlsnr.sh to invoke the workflow queue listener manually. In order to use OEM, make sure you have set the Workflow Queue listener path correctly in the configuration of the target module.
    Then... figgers crossed... it should work.
    Hope this helps,
    Mark.

  • How ETL (mappings) is done in Warehouse Builder ??

    Hi All,
    I am new to warehouse builder and was wondering if there is tutorials or video tutorials on how mapping works in warehouse Builder.
    I need to use this builder to map different tables from different schemas.
    example:
    schema_1 schema_2
    table1 -----> maps to ------> table2
    col1 -----------------> col1
    col2 ---------------> col2
    col3 --------------> col3
    Anything to get me started would be great.
    Thanks for the help.
    Edited by: Rooney on May 21, 2012 12:36 PM
    Edited by: Rooney on May 21, 2012 12:37 PM

    Hi,
    Here are some videos:
    - http://www.youtube.com/watch?v=BUHGSr10gJs
    - http://www.youtube.com/watch?v=Y_V1Lurzwbc
    The better approach is to read the User's Guide http://docs.oracle.com/cd/B28359_01/owb.111/b31278.pdf
    Mina

  • How do I get connected to a server on my network via an IP address?  When I try to open in a URL and login as a registered user with proper login it errors out saying there was a problem with connecting to the server?

    I am new to Mac...How do I get connected to a server on my network via a hyper link IP address path?  When I try to open in a URL and login as a registered user with proper login it errors out saying there was a problem with connecting to the server?

    Some of the following is going to use some technical terms — this area is inherently somewhat technical. 
    If you don't understand some part of the following reply, please ask.
    Is this your own OS X Server system on your own network, or is this some other server within some larger organization? 
    You're posting this in the OS X Server forum, which is a software package that allows OS X systems to provide web-based and many other services; to become servers.
    If it's your OS X Server on your network, then the network and DNS configurations are suspect, or the server is somehow malfunctioning or misconfigured.   This is unfortunately fairly common, as some folks do try to avoid setting up DNS services.
    If it's a larger organization and somebody else is managing the server and the network, then you'll probably need to contact the IT folks for assistance; to learn the network setup and DNS requirements, and if there's a problem with the server itself.
    The basic web URL "hyper link IP address path" — without using DNS — usually looks something the following, where you'll need to replace 10.20.30.40 with the IP address of your server:
    http://10.20.30.40
    UptimeJeff has posted a URL that specifies the AFP file system; an OS X file share.  That's used if you're connecting to an Apple storage service somewhere on your network.  You might alternatively need to specify smb://10.20.30.40 or such, if it's a Windows file server.  (There can be additional requirements for connecting to Windows Server systems, too.)
    If there's local IT staff available here, please contact them for assistance.  If these are your own local systems and your own local OS X Server system, then some information on the server will be needed.  (If you're on a NAT'd network, you'll also need to get DNS services configured and working on your local OS X Server system and your network — you'll not be able to skip this step and reference ISP DNS servers here — or things can and usually will get weird.)

  • When connecting to a previously opened server, how do I change to a "registered user" from formerly used "guest?"

    During my attempt to transfer my PC contents to my Mac using an ethernet cable, I typed my PC name in to the server address space (under connect to server).  I did not understand that the sign-in info for "registered user" was supposed to be my PC sign-in info.  I was trying to use my MAC info, which didn't work, so I just signed in as a guest.  All the files are useless, I think because I signed in as a guest.  So I would like to sign in as a "registered user," now that I know I need to use my PC sign-in info.  However, now the mac has it in its system and won't give me the option.  Does anyone know how I can get a second chance to do this?
    Thanks, Sharky

    Server Admin 10.6 Help: Changing the Password Type to Open Directory
    Server Admin 10.6 Help: Changing a User’s Password
    Server Admin 10.6 Help: About Password Types
    Server Admin 10.6 Help: If You Must Reset an Administrator Password
    Server Admin 10.6 Help: If You Can’t Change a User’s Open Directory Password
    Server Admin 10.6 Help: Changing the Password Used for Authenticating an LDAP Connection
    Server Admin 10.6 Help: Specifying User Name and Password

  • How to show register attribute value in my register users report in FIM 2010 R2

    Hi,
    How to show register attribute value in my register users report in FIM 2010 R2?
    Please suggest on this.
    Regards
    Anil Kumar

    hello,
    the only way I know is manage the attribute descriptiona s a property and then enable the pivot table option "Show properties in tooltip".
    But I'm interested in what you mean with  "using
    "OLAP pivot table extension" is an option". How this works?
    Thanks
    bye
    Norman

  • I have 100 groups in planning for those 100 groups i want to build roles like interactive,view user,planner etc.for those how to change in export -import folder .xml file  in that edit  how  to change user roles in that xml it will generate automatic id.h

    I have 100 groups in planning for those 100 groups i want to build roles like interactive,view user,planner etc.for those how to change in export -import folder .xml file  in that edit  how  to change user roles in that xml it will generate automatic id.how to do that in xml file ?

    Thanks john for you are reply.
    I had tried what you sad.I open shared service in that foundation project i had export shared service.after that in import-export file.In that role.csv,user.csv,group.csv.Like this file have.When i open user file added some users after i trying save in excel it shown messgse
    I click yes and save the .csv file and import from share servie. i got error like this
    am i doing right way john.or explain clearly

Maybe you are looking for

  • Create Sales order with reference to a Billing Document - Net price issue

    Hi Everyone,     The Billing Document has one line item with Net value of 16,000. However, when I create the Sales Order with reference to the Billing Document, the net price shows 64,000.  When I check the Document flow of the Billing Document, ther

  • Bridge Help | Create web galleries and PDFs with Adobe Output Module

    This question was posted in response to the following article: http://helpx.adobe.com/bridge/using/create-web-galleries-pdfs-adobe.html

  • How to Calculate last 12 months in webi?

    Hi, I am working on a webi report based on oracle. My report table does not have any month field in it. Hence, I created a derived table in the universe for 12 months. Now, in my report I need to calculate last 12 months data. The month and year valu

  • Automated testing tools for Oracle Finanacials

    Hello all, We are planning an upgrade to R12 and in order to save time we are wondering if an Oracle or 3rd party tool exists to input user data in various Oracle products - AP,PO, GL. The problem lies in getting our users to find time to input data

  • "Cheater Sheet"?

    I am trying to get up to speed on FCE. I have no experience in video editing so this is a challenge. When I first used Photoshop (v2.5) back in the day I had a cheat sheet that listed what all the tools did and their hot keys. Can something like this