UserID and Passwords in Oracle BI EE Maui

Are UserID's stored in the .rpd, the .webcat or in some other file? If in some other file, what is the filename and path?
We are setting up 3 environments: EPMDEV, EPMTST, and EPMPRO for Development, Test, and Production. To migrate from one environment to the next we copy the .rpd and the .webcat file. I want to ensure that doing so does not also copy the userids and passwords from one environment to the other.
We want to maintain each unique environment with it's own set of userid/passwords that can be changed by the user. We are not using database authentication.
Thanks!
Annie

Hi Gopal,
The following calculation gives you the minutes between <datetime_column1> and SYSDATE: TIMESTAMPDIFF( SQL_TSI_MINUTE , <datetime_column1>, VALUEOF("CURRENT_DATE"))
Good Luck,
Daan Bakboord

Similar Messages

  • How to find/create  SSO userid and password for oracle forms

    hi all,
    I have applied sso to one of my forms application by creating entries in the formsweb.cfg file.
    ssoMode=true
    ssoDynamicResourceCreate=true
    now single-sign-n has been applied to the forms application.What will be the user-id password that must be entered at the sso-login page.
    Do i need to create a separate sso user in metadata repository to login to this forms application?If so , please tell me how to do it.
    Thanx:)

    There are two types of orcladmin accounts. The first (cn=orcladmin) which is typically used to login to Directory Manager, is the superuser. He has rights into all parts of OID. The second type is the realm orcladmin user (cn=orcladmin,cn=Users,<your_realm>). There will be one of these for each realm .
    Login in to Oracle Diectory Manager as orcladmin , and :
    Navigate to Entry Management > your_realm > cn=Users > cn=orcladmin
    A sample realm would be dc=com > dc=oracle > dc=us
    Scroll on the right side to "userpassword" and edit the value
    Save changes and :
    Retry logging in to OIDDAS as orcladmin

  • How to use the userid and password infor from Oracle DB in BO

    Out client has the userid and passwords(encrypted) infomration stored in oracle table.
    Is it possible to import this useid and password information into BO .And use the same userid and password from Oracle table for its login authentication and for data security...?
    In other words can the userid/pwd info from Oracle Profile Table imported and re-used in BO Enterprise Edition.

    If the users/pw are in an Oracle LDAP v3 compliant server then you can import them via LDAP plugin, else you would need to bring them in an enterprise users via script. The Import wizard can do this and the SDK (see the SDK forums for more info on how)
    Maintaining the passwords would be difficult unless you are using and industry standard directory like LDAP.
    Regards,
    Tim

  • What are the default userid and password to logon to Oracle Applications

    What are the default userids and passwords to logon to Oracle Applications Manager?

    There r no any default password for Application Manager,
    However userID is applmgr and if I have to create a password for applmgr I would do that as welcome or welcome1 so the applmgr user can change it when he/she log on first time as needed.

  • When starting webcenter domain, how not to enter userid and password?

    Dear All,
    I followed this link http://yonaweb.be/start_webcenter_domain in installing my webcenter domain and I was successful in setting my own webcenter and busy exploring the webcenter spaces.
    My only concern is that when I am starting my webcenter domain it always ask for user id and password for the weblogic.
    I created a small batchfile for this.
    call C:\Oracle\Middleware\user_projects\domains\webcenter_domain\bin\startManagedWebLogic.cmd WC_Spaces http://localhost:7001but how can I get away from typing the user id and password?
    Thanks

    >
    otherwise,you can specify the userid and password in boot properties file of your domain.
    \user_projects\domains\dryrun_domain\servers\AdminServer\security\boot.properties.
    # Generated by Configuration Wizard on Wed
    username={AES}dbjKVafUpVLPvTG04tGl12RJRCaYmU5dmv2Yw=
    password={AES}5WHBgndS2Fq2uoiIKKWI+rM2uwTPAYQ0I=
    replace the username and password with your credentials.There's a nice tutorial with screenshots describing how to do this here:
    http://st-curriculum.oracle.com/obe/fmw/wls/10g/r3/installconfig/enable_auto_login/boot_identity_file.htm#t4

  • Copy function in APEX needs userid and password

    Hi,
    I use APEX 3.2 on Windows Vista and XDB, PL/SQL Gateway on Oracle Database 11g.
    The installation was very easy and the application runs nearly perfect. In 1 site there is a function (Button) to copy a record from the database to the screen to make updates. Here needs the system a userid and a password. I unlocked the user XDB and set the password to xdb (alter user as sys).
    Nothing changed. Which userid and password is needed?
    Can anyone please help me.
    Thanks and kind regards
    Siegwin

    I need some more info than that. Please provide me with the wokspace name, username & password. You can post that here and change the password afterwards or send me an e-mail.
    But you added some additional info..let's rephrase:
    1. You had 11gR1 and upgraded the standard APEX version (3.0) to 3.2 and created your app in there.
    2. You upgraded your database to 11.0.1.7 and ended up with the standard APEX 3.0 (FLOWS_03000).
    3. So where is the 'old' FLOWS_030200 schema? Is that still in the database?

  • Creating userid and password login from web page

    I want to create a page where i will have userid and password.When i log in it should check the username and password in the table.
    When i make a new entry also it should be added in the table
    Please help me how to proceed with this .
    Please help me in creating the html page also

    mod_plsql manual at:
    http://download-east.oracle.com/docs/cd/B25221_03/web.1013/b25599/toc.htm
    Configuration for mod_plsql:
    $ORACLE_HOME/Apache/mod_plsql/conf/dads.conf
    First thing to do is to ensure that mod_plsql works and can run your stored procs. Edit the dads.conf file (use dads.readme for instructions) and configure a DaD (Database access Descriptor) for you database.
    Restart Apache to effect the config change. I simply (and incorrectly) use $ORACLE_HOME/Apache/Apache/bin/apachectl - and it will tell you why it is not recommended and the correct command to run.
    The URL for will be something like:
    http://yourserver/dad/[schema.][package.]procedure[&parameters]
    The stuff in square brackets are optional.
    Create the following sample PL/SQL proc to call from the web browser:
    create or replace procedure Hello( cName varchar2 DEFAULT NULL ) is
    begin
    htp.prn( 'Hello World from '|| NVL(cName,'Nobody') );
    end;Make sure the Oracle user you configured the DaD with has exexcute rights on this procedure. E.g. if the DaD uses Oracle user WEB_USER to connect to the database and the procedure is created as SCOTT, then SCOTT must grant execute rights on the proc to WEB_USER.
    The web browser URL for calling this stored proc will look as follows:
    Without passing any parameters:
    http://yourserver/dad/scott.hello
    With passing the cName parameter as defined in the stored proc:
    http://yourserver/dad/scott.hello?cname=John
    As for the rest - you likely will need to use cookie authentication to "login" from a web page. Then you also need to determine just how you are going to use these session cookies on the database server side for security. How you're going to manage these cookies. Persist them in the database. Which also means managing session states for stateless clients via such a session cookie. Etc.
    This is not trivial to design, code and implement.
    Why not use Oracle Application Express instead?

  • SSO Configuration not working - Still asking for Userid and password

    Hi Guys,
    I have configured Portal to use with backend server. Configured WAS & ITS and created System Alias.
    For Testing SSO I did following steps on portal:
    System Administration > Support > SAP Appliction > SAP Transaction
    Selected system Alias and tcode se12. Selected SAPGUI for HTML. Pressed Go.
    Instead of SE12 screen, I get Logon Screen asking for USERID and password.
    I should be getting SE12 screen directly without entering USERID and PASSWORD.
    I tested with Transaction iView (SE12)  and getting the same logon screen. After entering userid/password  it displays SAP Easy Access menu instead of displaying SE12
    Please help.
    Thanks a lot.
    mini

    Hi Sandeep.
    Thanks for your reply. Here are the answers to your questions:
    1. Is the username same in the portal and the backend that you are trying to connect, ensure that there is the same username that exists in the system you want to connect to. YES
    2. The ticket is imported properly- check the ACL and Certificate list in Tcode STRUSTSSO2.
    Ticket is valid from 01 Jan 2009 to 14 Mar 2012.
    3. Check for the parameters in place login_accept_ticket = 1 and login_create_ticket = 2 and icm_hostname_full is set to FQDN. 
    In RZ10 it has 3 parameters:
    login/accept_sso2_ticket = 1
    login/create_sso2_ticket = 2
    icm/host_name_full = sapecc6.tri.com 
    4. What is the result when you test the system connection?
    WAS & ITS Connections are successful.
    Connection test for Connectors is giving following results:
    Results
    Retrieval of default alias successful
    Connection failed. Make sure user mapping is set correctly and all connection properties are correct.
    My Connectors Details:
    Application Host : sapecc6
    Gateway Host : sapecc6.tri.com
    Gateway Host : 3301
    SAP Client : 800
    SAP Client : EC7
    SAP System Number : 01
    Server Port: 3201
    System Type: SAP_R3
    I am using same userid for Portal and backend.
    5. Are the 2 systems that you want to configure SSO in the same domain?
    I am trying to connect R3 to Portal.
    Please give me directions to fix the problem.

  • BSP - UserId and Password for Internal Users - Anonymous for other users

    Hello,
    We developed an application via BSP's. This application can be accessed by two kind of users.
    1. External Users, with should access the page without using a userId and password.
    2. Internal Users, they will have more authorisation and need to specify their userId and Password.
    How can we accomplish this? I tried internal aliases, but can't get it to work properly.
    In the first service 'zbsp' I didn't specify a userId and password in sicf.
    Then I created an internal alias 'zbsp' referring to this 'zbsp'. In this alias I specified a userId and Password, but the system still asks for a userId and Password. (and after logging in the system gives the following error: The application name in URL .../bc/bsp/sap/zbsp2/uat_report.htm is invalid.)
    What did I do wrong? Or are there other ways to accomplish this?
    Greetings,
    Bart

    Take a look at the following mesaages that discussed the whole SSO and SSO2 ticket logins.
    As for a way to handle the two different login types. Well first and formost - active the SSO Tickets on your system.  Set your BSP up for that.
    Then create a new starting page with an alias to the pöublic section for BSP's in your system. On this page make two links.
    For your external users - one that redirects to your BSP passing the user and password in the url for the "read only external user" - that's the sap-user=name here&sap-password=passwordhere.
    For your internal people give them simply the link to the BSP which when they click it will see no user name and password and redirect them to the BSP login.
    Make sure you setup the BSP login according to SAP note 517860 and follow the instructions from http://help.sap.com/saphelp_nw04/helpdata/en/1d/13c73cee4fb55be10000000a114084/frameset.htm using the supplied SYSTEM_PUBLIC)
    It's a bit basic but it works, we do it
    Oh and setting up the system for the SSO (transaction sso2) is very very simple!!

  • Hi, how to develop application , matching of userid and password to backend

    hi masters ,
                  , user  have to give userid and password of back end sap system  to see particular report. i mean there is a first view ( this first view muust not be first screen of portal ) with userid and password fields . after gave his id and password he can go to second view to see the particualr details .please suggest me about how to do custom bapi code and , in also  webdynpro java  how to develop .
               i know about sso. in this concept i have to use through webdynpro java only. no need of sso concept here .
              after giving the  userid and password , those details must be match with  backend sap database.if no  one of userid and passwrod field  is  matching it has to show some error message. and in password field must be in encrypted letters .

    hi surya,
    Use JCO api to create connection to the backend.
    [JCO tutorial|http://www.apentia-forum.de/viewtopic.php?t=1962&sid=9ac1506bdb153c14edaf891300bfde25]
    On the webdynpro screen you can ask users to enter login id and password. Use this information to create connection to backend using JCO.
    Hope this helps!
    Monalisa

  • How to authenticate userid and password of b2b user in a b2c portal

    I am having a reqirement in B2C web portal , where in i have to create two input text fields which will accept userid and password ( the userid and password will be of b2b users)and button to logon and if i click on the logon button, it should take into b2b web portal. Is it possible? if possible please help me in this issue.
    Please get back to me if i am not clear in my requirement.
    Thanks a lot in advance!
    lakshman reddy G.
    <MOVED BY MODERATOR TO THE CORRECT FORUM>
    Edited by: Alvaro Tejada Galindo on Oct 6, 2008 6:07 PM

    To get an idea check these links.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/aaa1a890-0201-0010-eb93-ae3d2bb74a78
    BSP/HowTo - Customizing the design of System Logon page in NetWeaver '04
    -Aman

  • Web report without userid and password

    Hi Experts,
    I exported a BW web report to excel spreadsheet and sent it through mail to others, When recepients tried to open that exported spreadsheet, It is prompting for userid and password. I dont want this to be happened and it should open without asking userid / passsword? Can any one suggest some clues onthis.

    Check to see if they are looking at the data or running the report.  If they are running the report, then they will be prompted for the user id and password.
    You can run the report for them and download the data only, then they will not get the prompts, however they will not be able to update the data or drill down.
    Alternatively, you can use the Broadcaster to send out the updated reports directly to them.
    Brian

  • How to encrypt UserID and Password in HTTP url

    Hello experts,
         We want to encrypt UserID and Password which has used in http URL in SAP PI 7.1.
    As we have used SOAP adapter with Transport Protocol HTTP for sender server.
    Kindly help us on it.
    Regards,
    Poonam.

    Hi,
    please go through below blog,
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b04408cc-f10e-2c10-b5b7-af11026b2393?QuickLink=index&overridelayout=true
    please go through below threads,
    SOAP Envelope with user id password
    Soap ---to ----file scenario
    regards,
    ganesh.

  • How do pass the UserID and Password in the SOAP header for web services

    I am encountering issues trying to pass the userid and password in the SOAP header when consuming a 3rd party web service.  Rostewitz posted something similiar but I don't know how to type iv_xml.  Any help would be greatly appreciated.
    Thank you,
    jpina

    It helps to post a link to a thread when you refer to it.  If you are trying to implement that solution though, you can look at the parameter of the corresponding method being called.  The parameter has type 'SIMPLE' which means that it is compatible with all of the predefined elementary ABAP types.  In this case, you should use 'STRING'.

  • Where to set UserID and Password for NFS file share in Central File Adapter

    Hi All,
    Does anyone know if/where it is possible to set the userID and password if you want to connect to an NFS fileshare with the central XI30 file adapter?
    Cheers,
    Frank

    Hi Frank,
    The file adapter uses user ID SAPSERVICE... with the addition of the system ID of your SAP XI system. So if your system ID is EXD the user id which needs read/write access should be SAPSERVICEEXD.
    Have fun

Maybe you are looking for

  • Can you have different colour modes in one image?

    Hi all, I work on magazines which are half grayscale and half CMYK. Problem is that I don't know what spreads will be on what pages until I get close to completion. So what I do is make two copies of each image, a CMYK file and a grayscale copy and I

  • T Code for Payment Slip?

    HI Experts, Pls. let me know Tcode for <i><b>Print Payment Slip</b></i>. Bcoz, the Z_SmartForm is assigned to <i><b>RLB_INVOICE</b></i>(Print of a invoice by SAPscript SMART FORMS) with out put type ZD20. So,  wanna to see the output of z_smartform.

  • Cad & illustrator

    hi guys ive just recently imported a drawing from autoCAD into adobe illustrator, all the lines in autoCAD are poly lines (which means the shapes are one continues line), now usually this means they are a single path in illustrator when imported in (

  • IPhone 5 won't wake up

    It freezes for about 2-3 and nothing works. Tried soft and hard reset still nothing. This happens all the time.

  • IPhoto albums and events and thousands of photos not showing on iOS devices

    I have 10,000 photos in iPhoto, and several albums. I have noticed that for the last few weeks on my iPhone 6 plus the only albums that show are Photos.... Years 2004, 2005 and 2014 Shared (nothing) Albums All Photos (only 163 photos) Videos and Dele