Code to move to Prod dev

HI friends,

In my porject development is complete. We have created 200 around jobs (30 Interfaces and 170 procedures) in ODI. Now, we must go that this jobs on Production Server.

How to proceed, what are the basic steps for this.

Thank you
Lony

Interfaces and procedures form the basis of the defined packages? If they then simply generate scripts for all your packages and then you can export your Dev repository as xml and import them into your repository Prod. This can be done manually or automated tools of ODI, see ODIExportAllScen and ODIImportScen, also ODIGenerateAllScen. If not doing not part of packages, then just write scenarios for each interface procedure and migrate between environments.

Tags: Business Intelligence

Similar Questions

  • How to move reports BI of Prod Dev in Standalone BI Publisher

    Hello

    How to go from BI of Prod Dev in BI Publisher standalone reports.

    Thank you
    Yogi

    Click the report icon, on the left pane, you will see Download button, it will download the zip, you can download their prod in same way.

    http://download.Oracle.com/docs/CD/E12844_01/doc/BIP.1013/e12188/T421739T421745.htm#4511520

  • CSS code to move paste-go at the top of the context menu, please

    Hello

    If someone knows if it is possible to use the .css code to move the stick and go to the top of address bar context menu please?

    Thank you.

    Hello

    To move the stick and go to the top, you must change the order of each element.

    @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
    
    .urlbar-textbox-container menuitem[cmd="cmd_undo"] {
      -moz-box-ordinal-group: 3 !important }
    
    .urlbar-textbox-container menuseparator:nth-of-type(1) {
      -moz-box-ordinal-group: 2 !important }
    
    .urlbar-textbox-container menuitem[cmd="cmd_cut"] {
      -moz-box-ordinal-group: 4 !important }
    
    .urlbar-textbox-container menuitem[cmd="cmd_copy"] {
      -moz-box-ordinal-group: 5 !important }
    
    .urlbar-textbox-container menuitem[cmd="cmd_paste"] {
      -moz-box-ordinal-group: 6 !important }
    
    .urlbar-textbox-container menuitem[anonid="paste-and-go"] {
      -moz-box-ordinal-group: 1 !important }
    
    .urlbar-textbox-container menuitem[cmd="cmd_delete"] {
      -moz-box-ordinal-group: 7 !important }
    
    .urlbar-textbox-container menuseparator:nth-of-type(2) {
      -moz-box-ordinal-group: 8 !important }
    
    .urlbar-textbox-container menuitem[cmd="cmd_selectAll"] {
      -moz-box-ordinal-group: 9 !important }
  • Some AD users unable to sign in Essbase Prod Dev EAS.

    Hi all

    I had strange problems since 11.1.1.4 to 11.1.2.3,

    A sign of cannont AD users in Essbase Prod Dev EAS. And this behavior is with only a few users, not all. They get a message of credentials bad connection, although they are able to connect with the same credentials on the EAS Prod. Any suggestions on what can be verified? I increased the logging level in logging.xml, included agentmessagelevel to debug in essbase.cfg, looked at the newspapers sharedservices_security and customer and tried but the error does not give more details invalid identification, I connected with Oracle, but they have not responded to me in a week. Thank you for your help in advance.

    This is the error

    Error: 103: unexpected error Essbase 1051293

    Error: 1051293: connection fails due to invalid login credentials

    Thank you

    Ted.

    Thanks for all the answers, this has been resolved. More of a workaround, for some reason any everything connecting to essbase dev to prod EAS 'some' users should include the name of the directory as well. For example: where previously they used the user123 id to connect, now, they had to provide user123@Active. or User123@Hyperion

  • I need better code to move an object

    I am currently using an older code to move objects around where the code is on the moved object. I would trade on for code that is not on the object, but I'm not sure what it should be. In any case, that's what I have right now:

    _Global.speed = 10

    {onClipEvent (enterFrame)}

    {if (Key.isDown (Key.Left))}

    this ._x-= speed;

    {if(this._currentframe==1)}

    this.gotoAndPlay ("walkLeft");

              }

         }

    {if (Key.isDown (Key.RIGHT))}

    This speed of ._x +=;

    {if(this._currentframe==1)}

    this.gotoAndPlay ("walkRight");

              }

         }

    {if (Key.isDown (Key.UP))}

    this ._y = speed;

    {if(this._currentframe==1)}

    this.gotoAndPlay ("walkUp");

              }

         }

    {if (Key.isDown (Key.DOWN))}

    this ._y += speed;

    {if(this._currentframe==1)}

    this.gotoAndPlay ("walkDown");

              }

         }

         if (! Key.isDown (Key.DOWN) & &! Key.isDown (Key.UP) & &! Key.isDown (Key.RIGHT) & &! {Key.isDown (Key.LEFT))}

    this.gotoAndStop (1);

         }

    {if(_parent.border.hitTest(_x+(_width/2),_y,true))}

    this ._x-= speed;

         }

    {if(_parent.border.hitTest(_x-(_width/2),_y,true))}

    This speed of ._x +=;

         }

    {if(_parent.border.hitTest(_x,_y+(_height/2),true))}

    this ._y = speed;

         }

    {if(_parent.border.hitTest(_x,_y-(_height/2),true))}

    this ._y += speed;

         }

    }

    So, how would this move the object and on a chassis? Is there a better way to manage the hitTest? How can I do to make the object retains in the direction he was moving when you stop pressing the button arrow?

    use something like the following, where mc is your movieclip of the person:

    var speed: Number = 10;

    this.onEnterFrame = loopF;

    function loopF() {}

    If (Key.isDown (Key.LEFT)) {}

    MC._x = speed;

    If (mc._currentframe == 1) {}

    mc.gotoAndPlay ("walkLeft");

    }

    }

    If (Key.isDown (Key.RIGHT)) {}

    MC._x += speed;

    If (mc._currentframe == 1) {}

    mc.gotoAndPlay ("walkRight");

    }

    }

    If (Key.isDown (Key.UP)) {}

    MC._y = speed;

    If (mc._currentframe == 1) {}

    mc.gotoAndPlay ("walkUp");

    }

    }

    If (Key.isDown (Key.DOWN)) {}

    MC._y += speed;

    If (mc._currentframe == 1) {}

    mc.gotoAndPlay ("walkDown");

    }

    }

    If (!.) Key.isDown (Key.DOWN) &! Key.isDown (Key.UP) &! Key.isDown (Key.RIGHT) &! {Key.isDown (Key.LEFT))}

    mc.gotoAndStop (1);

    }

    If (border.hitTest(mc._x+(mc._width/2), mc._y, true)) {}

    MC._x = speed;

    }

    If (border.hitTest(mc._x-(mc._width/2), mc._y, true)) {}

    MC._x += speed;

    }

    If (border.hitTest (mc._x, mc._y+(mc._height/2), true)) {}

    MC._y = speed;

    }

    If (. border.hitTest (mc._x, mc._y-(mc._height/2), true)) {}

    MC._y += speed;

    }

    }

  • Hyperion cloning of a test/prod dev

    Hi all

    I heard that in obiee, we have a cloning tool to clone a whole plant of obiee from one environment to another (dev, test/Prod). After just cloning to change connections, the names of server etc.

    Is there any tool or process is for Hyperion to do. or if someone tried to please let me know the process.

    Thank you

    Mady

    This would help Mady a blog of John (if you him have not yet seen) - more to life than that...: EMP 11.1.2.3 clone utility

    Thank you

    Vikram

  • Login in two prod & dev application complete?

    Hi, is it possible to use two instances of VSM full application simultaneously (as dev and prod environment)?

    I remember a long time ago, but my partner told me that it was just because our prod environment was still the old version then. Now that we have upgraded, I can't do more.

    Thank you!

    You used to be able to create a new desktop shortcut and point it "c:\windows\downloaded program files" select the wrapper infra / vsm and then add the URL of your system.

    However I was not able to use this method for a while and certainly not with v9.1.x.

    It is a very useful feature for developers to be able to use.

  • ODI work and Migration of the master repository of prod Dev

    Hi all

    We have all the maps and other information in the Dev environment. And we have a new together upwards to the ODI prod environment.

    In dev and prod, repository IDS are the same. (Work of Dev = Master = 1; Work prod = Master = 1)

    I want to export rep and master rep dev work and import it in the Prod.

    When importing Master rep I get an error message: ' ODI 26005: you import an object from another repository with the same identifier. It is forbidden. »

    Can someone help me on this

    Your master repository and the production work should be different from each other.
    Thank you.

  • Migration of the financial reports of prod Dev

    Hello

    I'm back for more urgent help...

    Can you please share the steps of the migration of the Financial reports of Dev in the Prod. The version is 9.2 X.

    Thanks in advance for your help...

    -Jean...

    Published by: user640496 on January 29, 2009 14:21

    Hello

    No, you don't have to take anything offline to migrate the reports.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • EBS > PROD dev > Post cloning steps > massive updates

    Oracle database: 11g
    Oracle EBS 11i
    OS - RHEL 5

    Dear, all -.
    Is there a way to make mass updates as follows:

    (1) deadline all Oracle EBS Application user accounts.
    (2) change the passwords on all the user accounts on request.
    (3) change e-mail addresses on all the user accounts on request.

    Instead of going to each user request account, I would like to know how we can make the collective update. Thanks in advance!

    ainigma wrote:
    Oracle database: 11g
    Oracle EBS 11i
    OS - RHEL 5

    Dear, all -.
    Is there a way to make mass updates as follows:

    (1) deadline all Oracle EBS Application user accounts.
    (2) change the passwords on all the user accounts on request.
    (3) change e-mail addresses on all the user accounts on request.

    Instead of going to each user request account, I would like to know how we can make the collective update. Thanks in advance!

    Use the FND_USER_PKG API.

    http://ETRM.Oracle.com/pls/trm11510/etrm_pnav.show_object?c_name=FND_USER_PKG&c_owner=apps&c_type=package

    FND_USER_PKG
    https://forums.Oracle.com/forums/search.jspa?threadID=&q=FND_USER_PKG&objid=C3&DateRange=all&userid=&NumResults=15&rankBy=10001

    You can also use FNDCPASS to change the passwords.

    FNDCPASS
    https://forums.Oracle.com/forums/search.jspa?threadID=&q=FNDCPASS&objid=C3&DateRange=all&userid=&NumResults=15&rankBy=10001

    Thank you
    Hussein

  • OBIEE 11 g - role migration of applications DEV UAT or PROD

    Hi all

    There are blogs that have mentioned about migration applications role of UAT or Prod dev...

    Please provide the correct path below two files that we use for the migration of application role

    1 system-jazn-"Data.xml"

    2 jps-config. XML

    I have looked for these files but noticed there are 3 or 4 files whose name even under different paths.

    Kindly help. TIA

    Concerning

    If you mess up these files, your system will be getting damaged.

    You need to take good back and then do it.

    in other words, where you can avoid this risk is to manually enter roles. Creation of roles is an effort of time unless you keep deleting and creating new roles. If you do it manually you will have more control over the migration and you can fix it if there's a problem easily. Note that the migration of roles is not mapped groups to roles. You still need to map manually.

    OBIEEHOME\user_projects\domains\bifoundation_domain\config\fmwconfig

    1 system-jazn-"Data.xml"

    2 jps-config. XML

  • Planning of the migrated to dev app still points to prod shared services.

    I have a 11.1.1 planning app to the dev who has been updated from prod by creating the app dev, restoring production Plannning app sql databases dev server, copy the prod dev essbase outline.

    My main concern is that the app always seems to point to prod SSP when you look in the advanced settings, under Shared Services settings. I tried to change the shared path to dev services. When I try to save changes I get ' year error occurred while processing this page.» Check the log for details". I don't know where is this newspaper. I see the path that points to prod in the table HSP_SYSTEMCFG under EIE_SERVER.

    I'm a little nervous to play with this because the last time that I trashed production shared services.

    Any advice would be greatly appreciated.

    Dave

    You can go in the relational table and update to the correct address of shared services, you will need probably need to restart the schedule service so that when you view it in the web planning it shows the correct url.
    It takes nothing to worry in this regard does not mean that your application is registered for bad shared services.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • How to move the code to the left or to the right?

    Hello

    Is anyone know how you can easly code to move to the left or right using ExtendScript Toolkit app?

    There are 2 buttons that allows to move the code into Dreamweaver. The buttons will insert or remove tab characters before the code.

    Kind regards

    John

    Quite to my surprise (Adobe missed the boat, AFAIAC, with almost all of the rest of the Extendscript editor), it sticks to the current agreements for the majority of the editors (*) code: tab indents a selected block, Shift + Tab outdents it.

    (*) Apple's XCode Editor replaces text selected with a tab yuck.

  • I need to move two reports published by a DEV to QA how do I

    Hi all

    I want to move 2reprots from DEV to QA how can I move you can send me the path

    Thank you
    Françoise

    Hi Francoise,.
    See deployment from development to production environment

    Thank you
    Saichand.v

  • Satellite L750 - Director Windows starts with the E945000E error code

    Satellite L750 (PSK1WA-03c00R)
    4gig

    Hello

    Previously, I had windows essensials and used Director!

    I had my hard drive empty and reinstalled Windows 7 and some web Toshiba drivers to start all over again!

    I have redownloaded Movie maker and now get this error message "error code window movie maker c945000e.

    He said that I might need to update my video card driver! Problem is that I can't see all downloads for video card on the Satellite L750 download page?

    I have Intel HD 3000 family video card! But since I've started using movie maker my CPU had slowed down somewhat and was part of the reason restore my hard drive! I think I just have too many things in the background!

    I can do the basic CPU features but a guru IT Im not! Can someone help me or explain what I could do to solve the problem in laymens terms!

    Post edited by: tony73 update of what I use the video card

    Did you notice the same problem when using original Windows 64-bit Home Premium that you got with your laptop?

    Generally speaking, it is Microsoft related question and best explanation to this problem, I found here.

    You have the Australian mobile phone model and drivers download page you can find on http://www.mytoshiba.com.au/support/download
    > I previously had windows essensials and used Director!
    By the way: do you use the same version as before?

Maybe you are looking for