SSO Deployment-specific login - howto display application name

I am deploying 4 forms applications using a single SSO server/OID for authentication. The problem is, I want to display the application name on login.jsp, depending on which application was requested.
For example:
If the URL is http://localhost/forms/frmservlet?config=app1, then login.jsp should display "App1".
If the URL is http://localhost/forms/frmservlet?config=app2, then login.jsp should display "App2".
...... and so on. Has anyone ever done it before? I am using Oracle 10g Release 2.
Thanks,
Sanjay Gulabani

Thanks to timktaylor's earlier post (messageid=1184036), I was able to solve this problem. I am using Oracle 10g (10.1.2.0.2) Single Sign On and Forms Services.
For anyone who is facing a similar problem, I am pasting the code - just use it as it is in login.jsp - of course, you will need to change app1 and "APP 1" etc to suit your application names.
(%ORACLE_HOME%\j2ee\OC4J_SECURITY\applications\sso\web\jsp\login.jsp):
<%
String str_token = null;
try
str_token = request.getParameterValues("site2pstoretoken")[0];
catch (Exception e)
try
str_token = request.getParameterValues("Site2pstoreToken")[0];
catch (Exception e1)
str_token = null;
if(str_token == null)
throw new Exception("The site2pstoretoken value not found");
//Code to decode site2pstoretoken starts here
java.sql.Connection con = null;
try
oracle.jdbc.pool.OracleDataSource ds = new oracle.jdbc.pool.OracleDataSource();
ds.setURL("jdbc:oracle:thin:@ngt-hyd:1521:orcl");
con = ds.getConnection("orasso", "UBrWt0c9" );
java.lang.String query = "begin ? := wwsso_utl.unbake_site2pstore_token('" + str_token + "',?); end;";
java.sql.CallableStatement cstmt = con.prepareCall(query);
cstmt.registerOutParameter(1, java.sql.Types.VARCHAR);
cstmt.registerOutParameter(2, java.sql.Types.VARCHAR);
cstmt.executeQuery();
java.lang.String x = cstmt.getString(1);
if (x.toLowerCase().indexOf("config%3dapp1") > -1) ngd_app_name = "APP 1";
if (x.toLowerCase().indexOf("config%3dapp2") > -1) ngd_app_name = "APP 2";
if (x.toLowerCase().indexOf("config%3dapp3") > -1) ngd_app_name = "APP 3";
if (x.toLowerCase().indexOf("config%3dapp4") > -1) ngd_app_name = "APP 4";
if (x.toLowerCase().indexOf("oiddas") > -1) ngd_app_name = "Delegated Administrative Services";
javax.servlet.http.HttpSession session = request.getSession();
if (ngd_app_name.trim().length() > 0) session.setAttribute("ngd_app_name",ngd_app_name);
out.println("<center>");
out.println(ngd_app_name);
out.println("</center>");
finally
if( con != null ) { con.close(); }
//Code to decode site2pstoretoken ends here
%>

Similar Messages

  • SSO requires double login for partner application

    I'm having some trouble with SSO partner applications, when I login to a SSO protected application, the login works fine, but when I try to navigate to another application I'm presented with the login page again, the sso cookie seems to be working since clicking on the login button without entering the user credentials works. For example, I log in to portal and from there I navigate to a forms application that is on the same server and the same port (portal: https://apps.mydomain.com:4444/pls/portal --> forms: https://apps.mydomain.com/forms/frmservlet?config=app) I am presented with the login page and after clicking on the login button without entering any information everything works fine. This is happening for all the middle tiers that are connected to the same OID. Any ideas on what can be wrong on my configuration?

    Hi Andrey,
    The problem sounds really wierd.
    Can you check your SSO settings for your Portal ECC system? I mean, please check the User Management/Administration properties in your System Adminstration of Portal System that points to ECC.
    Regards
    <i><b>Raja Sekhar</b></i>

  • Doesn't display application name

    Hello Mozilla Support
    we have a problem since the inbuilt PDF-viewer came to Firefox. We can't use the inbuilt pdf-application from Firefox, because printing with it is to slow on our system.
    But this feature is not our Problem.
    We just set pdfjs.disable to TRUE and changed the action for Portable Document Format (PDF) to "Always ask". The reader is disabled but now we have a Bug at the point where you choose between download and application. If you choose an application it will open your pdf as always. But after this the Bug happens.
    Firefox =< 18.0.2 does remind the application you have chosen even if you don't activate the "Do this automatically for files...". In the Field "Open with: pdf-viewer" the name (pdf-viewer) is displayed.
    Firefox >= 19.0 the default after you opened an application switches back to "Save File" and the name of the last used application is not shown. If you toggle the "Open with" field and press OK even if there is no application displayed, it will start the last application u used for this file type, but it's not displayed before.
    The bug hinders us to update Firefox. We use Firefox for our users. They don't know where to find the applications and if no application is shown, they will believe none is chosen.
    I hope we find a way to fix this.
    Thanks for helping me.
    Arne Raetzer

    The File is just a test pdf file on our Web host. But The Problem is not the file. It's the same if you use this.
    [http://www.einfach-fuer-alle.de/artikel/pdf_barrierefrei/download/pdf_barrierefrei.pdf Random test file].
    Before the update, Firefox also just picks the MIME defaults from "~/.local/share/applications/". After the Update, firefox just don't use this MIME database anymore (i think this is the main problem)
    >>"Have you tried checking the "Do this automatically…" option (FürDateien dieses Typs…), selecting Open With (Öffnen mit) and manually choosing the PDF reader application? Once you do that and click the OK button, you should have a new PDF entry under Options - Applications. "
    There is only one application/pdf entry in the menu. I have tried it but than happens the Display error. We need the Option for our users so they can download and open the file. My Programm is listet in the menu, but if i choose to "allway ask" the Programm is not shown at the "Open with" point.
    The Option "Open with" is selectet BUT it looks like no Programm is chosen(in german "Durchsuchen..."). If i just Press "OK" and don't choose a Programm, it will start the Programm listet in Options - Applications.
    If no Programm is chosen i should normaly get an error ("" can't be chosen" or something like that).
    Hmm PDF-File and PDF-Document can just be a changed name in the firefox description.

  • How can one use one specific security realm per application ? The realm-name attribute of the login-config tag of web.xml does not make any difference

    Hi,
    I have different sets of users coming from different databases and using different
    roles mapping for each of my web applications. I would like to configure a specific
    security realm per application in my weblogic server 7.0 . Is it possible ?
    I try to specify the realm-name of the login-config tag from the web-xml deployement
    descriptor but it doesn't make any difference. The default realm is always used.
    I also would like to tell the Weblogic server to use the default realm in case
    the realm isn't specified or isn't found. For example, the default would contains
    my admin users.
    Thanks a lot for your answer.
    Iz

    I thik this is a common mistake the ralm-name tag in the deployment descriptor is used
    just by the browser for display purposes (when it opens the basic auth dialog box) so as
    of now there is only 1 active realm which can have multiple providers as Kevin pointed
    out
    Kevin Lewis wrote:
    WebLogic 7 now ignores the realm-name tag (I found that out yesterday).
    My understanding is that there is only one realm active at a time for a domain
    (I would be interested in being contradicted in this).
    However, you can have multiple providers in each category of a realm: authentication,
    authorization, etc. Therefore, what you can do is key authentication, et al,
    off of some other information. We have our users enter their company, for example,
    and use the TextInputCallback to get it. You could also encode something in the
    initial page, based on the URL they hit, or whatever, and get that back in your
    callback.
    You can store that information in your own Principal implementation, and key off
    of that in your authorization provider, going to a different database as appropriate,
    or abstaining when a specific provider doesn’t have anything to say about a subject.
    Anyway, there should be a way to do it, even if it's more complex than you would
    have hoped.
    --Kevin

  • Biztalk SSO Application name

    Hi,
    I want to retrive the settings of SSO from SSO Config app store manager but i dont know the application name is there any way to know this?

     Hi,
    To find all the applications names deployed in store, follow the below instructions:
    On the Start menu, click Run, and then type cmd.
    At the command line, go to the Enterprise Single Sign-On installation directory. The default installation directory is
    <drive>:\Program Files\Common Files\Enterprise Single Sign-On.
    Type ssomanage -listapps [all] where all is an optional parameter that will also display applications using the Configuration Store feature. If the user running this command is an Application administrator, it will only list the applications
    for which they are an administrator. If the user running this command is an Affiliate Administrator or an SSO Administrator, it will list all the affiliate applications.
    Rachit
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful
    by clicking the upward arrow mark next to my reply.

  • [svn] 1978: Bug: vendors. properties file which is used in vendor specific login commands was not being read properly and as a result some login related error messages were not being displayed correctly .

    Revision: 1978
    Author: [email protected]
    Date: 2008-06-06 08:05:34 -0700 (Fri, 06 Jun 2008)
    Log Message:
    Bug: vendors.properties file which is used in vendor specific login commands was not being read properly and as a result some login related error messages were not being displayed correctly.
    QA: Yes - we need automated tests to make sure that errors.properties and vendors.properties in BlazeDS/LCDS are loaded properly.
    Doc: No
    Modified Paths:
    blazeds/branches/3.0.x/modules/common/src/java/flex/messaging/util/PropertyStringResource Loader.java
    blazeds/branches/3.0.x/modules/opt/src/jrun/flex/messaging/security/JRunLoginCommand.java
    blazeds/branches/3.0.x/modules/opt/src/tomcat/flex/messaging/security/TomcatLoginCommand. java

    I have a lot of grief with this version of Windows Media Player.
    It is very buggy and frustrating to use.
    I have my Music library on a QNAP NAS, which is as reliable as they come.
    System notifications make it not save changes.  It also does not do a good job of interpreting albums and artists from folders.  Changes to track names are not saved, nor are tracks moved to other albums, renamed albums, changes to genre, artist
    or date.  It separates and merges albums/tracks without sense or reason.  Some changes I've made up to 4 times, then closed WMP and re-started my machine to check if it has/hasn't saved the changes.  Often it has not.
    This is the first time I've used WMP in this capacity, and I do not recommend it.
    New service pack please.

  • How to get the Application name/fullpath in a servlet deployed in WebLogic

    Hi ,
    Just like we can get the domain root directory from weblogic.management.DomainDir
    String root = DomainDir.getRootDir() ;and domain name from weblogic.management.configuration.DomainMBean
    DomainMBean domainMBean = MBeanUtils.getDomainMBean();
    String domainName = domainMBean.getName() ;How can i get , the application name in which the servlet is deployed from inside the same servlet ? Which API from weblogic provides that information ?
    for eg : application path = Middleware/user_projects/domains/Domain_1/servers/AdminServer/upload/webapp1.war
    and application name = webapp1.war
    Edited by: Tom on Mar 31, 2011 9:32 PM

    Not sure about Weblogic Specific API however you can use Java API.
    public void init(ServletConfig config) throws ServletException {
              // TODO Auto-generated method stub
              System.out.println(config.getServletContext().getRealPath(""));
              System.out.println(config.getServletContext().getContextPath());
    output:
    C:\Documents and Settings\user\KEDB\KEDBRISKIT\WebContent --- Application Path
    /KEDBRISKIT --- Application Name
    -Akshay

  • How to create sso login for webcenter application

    Hi,
    i have created a webcenter portal application with a login page.i have to create a sso login for that application .
    can anyone suggest me how to do?

    Hi.
    Do you have OAM as SSO?.
    The best way is to create a loginProxy page which proxies the user and password entered to OAM Login process (or the other SSO system).
    This post of JayJay will help you: http://jjzheng.blogspot.com/2013/10/non-programmatic-authentication-using.html
    Regards.

  • Itunes not workin and the problem displays - m signature:   Problem Event Name:     BEX   Application Name:     iTunes.exe   Application Version:     10.5.3.3   Application Timestamp:     4f14cc3d   Fault Module Name:     QuickTime.qts_unloaded   Fault Mo

    i tunes not working and the problem its displaying is
      m signature:
      Problem Event Name:    BEX
      Application Name:    iTunes.exe
      Application Version:    10.5.3.3
      Application Timestamp:    4f14cc3d
      Fault Module Name:    QuickTime.qts_unloaded
      Fault Module Version:    0.0.0.0
      Fault Module Timestamp:    4cf45322
      Exception Offset:    706e1040
      Exception Code:    c0000005
      Exception Data:    00000008
      OS Version:    6.1.7601.2.1.0.256.1
      Locale ID:    1033
      Additional Information 1:    0a9e
      Additional Information 2:    0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:    0a9e
      Additional Information 4:    0a9e372d3b4ad19135b953a78882e789
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt
      please help.

    im having this problem to ive uninstalled and installed but this still comes up!!
    Problem signature:
      Problem Event Name:    BEX
      Application Name:    iTunes.exe
      Application Version:    10.7.0.21
      Application Timestamp:    504d85d9
      Fault Module Name:    StackHash_0a9e
      Fault Module Version:    0.0.0.0
      Fault Module Timestamp:    00000000
      Exception Offset:    00000000
      Exception Code:    c0000005
      Exception Data:    00000008
      OS Version:    6.1.7601.2.1.0.768.3
      Locale ID:    5129
      Additional Information 1:    0a9e
      Additional Information 2:    0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:    0a9e
      Additional Information 4:    0a9e372d3b4ad19135b953a78882e789

  • Application name for SDA Deployment(Custom Adapter)

    hi Experts,
    I am trying to deploy an SDA file using SDM. I had created an EAR project using NWDS and then converted this into an SDA file using CECLT.
    Now while deploying this file using SDM, it is asking for application name and vendor name. Vendor name i had given while creating SDA file.
    What is the meaning of application name while deploying SDA file?
    Please help if possible! Thanks!
    Mayank

    Hi DDasgupta,
    After you created a web application with a custom host name, if you got a prompt for the user and you may face the following issues:
    There is continuous prompt for the credentials
    HTTP 401.1 error
    This shows that there is a problem with the Loopback configuration. This situation should occur only when we access the application from the server machine.
    For fixing the problem, we have to disable the Loopback value inside the registry.Open the Registry Editor (regedit.exe) and locate the following key:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa, and create a new Key Value of type DWORD inside
    it and set the value to 1.
    More information, please refer to the link:
    http://www.c-sharpcorner.com/UploadFile/40e97e/sharepoint-2010-creating-host-name-for-web-application/
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • I want application name can display more than 13 character.  Could you tell me how to fix this problem?

    I want application name can display more than 13 character.
    Could you tell me how to fix this problem?

    Backup and restore your software via iTunes. If the problem continues, restore as a NEW device. If this solves it, that means there is some corruption in your backup file. If the problem is still there, you should take it to the Genius Bar at an Apple Store for evaluation.

  • How To Remove A Specific Application Name From The "Open With" Dialog

    When you right click on a file you are presented with the "Open With" menu item and you are also presented with a list of applications that could potentially be used to open that file.
    In my case, when I click on a file of type .mov I am presented with the name of an application that I want to remove from the list, because that application ( Miro.app (2.5.2) ) no longer exists on my system.
    What is the best way to remove that application name from the list?

    Ok, but how does one remove some of the applications that are appear in the context menu for a given file type? Is there an asc file which can be edited?
    For example, in my system a PDF can be opened with over 10 applications. I would like to see just the three ones I use: Acrobat, Skim and Preview.
    Thanks in advance.

  • How to pull application names & version numbes  from  weblogic servers ??

    Hi Friends,
    I have situation that I need to display the application names and version number of ear/war/jar files that got deployed on weblogic servers using WLST or any simple way to do that.
    Scenario: I have 2 manged servers MNG1 & MNG2 and I had deployed google.1.4.5.ear, web.4.514.war & xxx.jar files and targeted to MSG1 & MSG2.
    ++++++
    Now I want to pull the applications names and the version numbers associated with it and display to some kind of dashboard page like below.
    | Application Name | Dev Environment | TEST Environment | PROD Environmnet |
    google 1.4.5 1.4.5 1.4.5
    web 4.514 4.514 4.514
    Like this .....
    can any one tell me the best way for achieving this task
    Thanks in advance,
    newbee
    Edited by: user11140631 on Dec 23, 2009 11:18 PM

    HI,
    Here i have developed a Simple JMX Code which displays the Application Name, It's Current Status and The Application Version. Please let me know this is what u wanted?
    import java.util.*;
    import java.util.Enumeration;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.management.ObjectName;
    import weblogic.jndi.Environment;
    import weblogic.management.*;
    import weblogic.management.runtime.*;
    import javax.management.*;
    public class ApplicationStatusChecker
    MBeanServer server = null; // MBeanServer
    MBeanHome mbeanHome=null;
    Hashtable inStart = new Hashtable();
    public ApplicationStatusChecker()
    try {
    Environment env = new Environment();
    env.setProviderUrl("t3://localhost:7001");
    env.setSecurityPrincipal("weblogic"); // username
    env.setSecurityCredentials("weblogic"); // password
    Context myCtx = env.getInitialContext();
    mbeanHome =(MBeanHome)myCtx.lookup("weblogic.management.home.localhome");
    server = mbeanHome.getMBeanServer();
    catch (Exception ex)
    System.err.println("\n\n\tCannot get MBeanServer: "+ex);
    public void getAllMBeans()
    Set set=mbeanHome.getAllMBeans();
    Iterator it=set.iterator();
    while(it.hasNext())
    System.out.println("\n\t "+it.next());
    public void getMBeanByType(String type)
    Set set=mbeanHome.getMBeansByType(type);
    Iterator it=set.iterator();
    while(it.hasNext())
    ApplicationRuntimeMBean appRun=(ApplicationRuntimeMBean)it.next();
    int n=appRun.getActiveVersionState();
    String status="";
    if(n==0) status="UNPREPARED";
    if(n==1) status="PREPARED";
    if(n==2) status="ACTIVATED";
    System.out.println("Application Name : "+appRun.getApplicationName());
    System.out.println("Application Status : "+status);
    System.out.println("Application Version : "+appRun.getApplicationVersion());
    System.out.println("---------------------------------------");
    public static void main(String ar[]) throws Exception
    ApplicationStatusChecker sm=new ApplicationStatusChecker();
    sm.getMBeanByType("ApplicationRuntime");
    OUTPUT
    C:\DELETE>java ApplicationStatusChecker
    Application Name : UsernameTokenEar
    Application Status : ACTIVATED
    Application Version : null
    Application Name : consoleapp
    Application Status : ACTIVATED
    Application Version : null
    Application Name : bea_wls_internal
    Application Status : ACTIVATED
    Application Version : null
    Application Name      : complexServiceEar+
    Application Status    : ACTIVATED+
    Application Version   : VesionB+
    Application Name : bea_wls9_async_response
    Application Status : ACTIVATED
    Application Version : null
    Application Name : mejb
    Application Status : ACTIVATED
    Application Version : null
    Application Name : SystemModuleA
    Application Status : ACTIVATED
    Application Version : null
    Thanks
    Jay SenSharma
    http://jaysensharma.wordpress.com (WebLogic JMX And Wonders Are Here)

  • How to change application name in system-jazn-data.xml

    I have weblogic server installed and applications deployed.
    However, I'd like to change the application name in system-jazn-data.xml, specifically, the "<name>context=APPLICATION,name=app1</name>" change "app1" to be "AllMyApp".
    Is this possible? ideally, I do not want to re-deploy the application. I'm not sure what files in application(I have both Web and EJB based applications) kept the name to point to above names in system-jazn-data.xml
    Thanks

    Hi thanks for your quick response.
    I mean to say we have deployed one application and that application appears as a web-DynPro application in PCD. Then i copied that application and pasted in the application folder as a page(PCD object). The page in the folder and application in webdynpro application both are having the same name.
    Now when i changed the name of the application in webDynPro (By re factoring) and deployed. The name in PCD in webdynPro application get changed but the PCD object in Folder becomes like a warning sign and shows that broken delta link.
    Now i want to know can i edit the link of the object so that it can point to the exect application or i have to copy the application and again paste as PCD object in the folder and then assign again to all 20 roles.
    Thanks & Regards
    Jeetendra....

  • Deploying a large Oracle BPM Application with multiple UI projects

    Hi everyone
    I'm working on a large application with Oracle BPM 11.1.1.5.0.
    I'm using JDeveoper 11.1.1.5.0 to build the application.
    The application has lots of user tasks with lots of UI projects (one for each user task).
    My problem is, each time I make a small change in the project, I have to deploy the whole thing, which includes one main project and five or six UI projects (for now) for the user tasks.
    As the application gets bigger I'm sure this will definitely become an issue.
    So my question is if I'm doing this the right way? or should there be a more efficient way?
    Thanks in advance
    Edited by: luke on Apr 17, 2012 12:16 AM

    Hi Luke
    1. Generally, there is NO need to have One UI Project for one individual Task. Say you have like 10 Tasks (.task files) like Initiator, Approver, Reviewer, LegalApprover etc etc. You can have just One UI TaskForms Project and have taskDetails.jspx generated for each one of these Tasks. This is the preferred way.
    2. Any Workflow Application should have just 2 deployers. Means one deploy is for actual Workflow stuff that will have the main BPEL or BPM Process, human Tasks etc etc. Basically all that goes into workflow project. And another deployer is the REST of the things means the TaskForms UI Project and any other supporting projects like EJB projects, utils projects, any WebServices projects (if you have WebServices). All these will be deployed as one SINGLE EAR.
    Lets take an Example from JDeveloper IDE point of view.
    1. Application Name: SalesOrderApp
    2. Workflow Project Name: SalesProcess (This is a a jdeveloper project of type BPM Project or SOA Project and has all human tasks, bpels, bpm process, business rules etc etc).
    3. UI Project: SalesTaskForms (This is a auto generated form for the very first Task that you choose. Then for rest of the Tasks use this same Project, to generate jspx for all other .TASK files. REFER online docs on how to do this. I will see if I can compile this list of urls for you).
    3. Supporting EJB Projects: MyEJBProject1 (Some EJB Project that connects to some backend database specific to your project)
    4. Supporting another EJB Service Project: MyExtServiceProject1 (Like another EJB Project, that pulls data from some external source)
    5. Some WebService Project: SalesCreditCardValidationWebService (Some WebService Project to be deployed as .WAR file that does some service).
    Try to apply SOA Concepts for each Service that your application needs. Instead of putting all the EJBs and everying in one single giant project, try to split them logically/business need wise and geenrate separate projects so that they can service as it is to other projects and other apps.
    Anyhow, coming back, in above Example, you should have jsut 2 Deployement: 1 is Workflow SCA JAR File and other is full EAR file.
    a) For the Workflow Project, right click and generate a Deployment profile to deploy just this workflow and NOT any other UI Projects.
    b) For each individual project genereate a deployment profile like MyEJBProj1, MyEJBProj2, MyWebService1 etc etc.
    c) For TaskForms project also, generate a deployment profile like SalesTaskForms. This will be a WAR file.
    d) At Application Level, create a new Deployment profile of type EAR and now assemble all the projects under this EAR except for the Workflow project.
    First you deploy Workflow SCA JAR file. You need to redeploy this again only when you make changes to workflow, humantasks etc etc.
    Deploy full blown EAR file that has all the stuff (EJB JARs, TaskForm WARs, WebService WARs etc).
    Anytime you change taskforms, or any java or ejb code, ReDeploy EAR file.
    You should have one JAR and one EAR to deploy at the end of the day. Infact this is how it should go into UAT and Production. They should not have multiple JARs, multiple WARs to deploy. The reason we have separate Workflow SCA Jar file is, bcos workflow will not change frequenly. And also older versions of SOA/BPM (before 11.5 FP) have a huge disadvantage. Everytime we deploy workflow project, it will make all existing process STALE unless you deploy with a diff version. This is not an issue any more for 11.5 + FP (Feature Pack applied). Hence be careful when you redeploy workflow project.
    Thanks
    Ravi Jegga

Maybe you are looking for

  • ITunes 10.7 install wants to move my music library.

    I need to upgrade iTunes 10.6 on my Windows 7 Lenovo T420 laptop to 10.7 to use my new iPod Classic (replaces my iPod video), and I'm not yet ready to accommodate the changes in iTunes 11. My iTunes music data files have been moved to a large partiti

  • Adding a map page causes my book to freeze when printing or purchasing

    I have created several books with maps. When printing to pdf, viewing in Preview or even purchasing, the everything "freezes" at the map page. If I remove the map page everything works fine. I've purchased many books before, but I've never used maps.

  • What are Best Video Settings format to be used in Encore?

    Hey, So I have been raking my brain an issue or two I have with Encore.  I am Exporting video files to be used in Encore CS5 and am coming up with mixed results.  I created a 30 sec video and exported it as an .avi, .mov, .m2p all with mixed results.

  • Case statement problem for a column in BMM layer

    Hi friends. In physical layer I've a "cardio" column whose data type is INT, and two values comes here either 0 or 1. I need to replace 1 by 'YES' and 0 by "NO'. For that I changed the datatype of "Cardio" column to CHAR. and in BMM layer I'm using t

  • Oracle Schedule to Run Job?????

    Hi, I want to make a schedule to run a job once in a week i.e on every Sunday night. For that I make a schedule using following code. DBMS_SCHEDULER.CREATE_SCHEDULE( SCHEDULE_NAME => 'MyWeeklySchedule', START_DATE => '1-AUG-10 12:0:0', REPEATE_INTERV