DVR issue with show overrun by 1 minute

New customer to FIOS.  Loving the service so far however, I am encountering a problem with show overrun.
I am DVRing two shows at 9pm. I am also attempting to DVR two shows at 10pm.
Show A (records from 9:00-10:01) is scheduled to run until 10:01pm.  Therefore the FIOS DVR will not allow me to record 3 shows, even though Show A is only going over by one minute. 
Cablevision used to allow me to alter the recording time by changing the recording time by a minute.  Ergo, my 10pm show could be recorded from 10:01 -11:00.  I don't care if I miss the first minute recap of the show.
Is there anyway for this to happen?  To be able to alter the actual record time, so that it would not completely disregard the entire 10pm show I want to record?
Thanks in advance!
Solved!
Go to Solution.

Manual recording is not so much a 'solution' as it is a workaround. Come on Verizon even Comcast automatically just clips the 1 minute of off the next show and their DVR is terrible.

Similar Messages

  • Issue with showing input forms for update SQL statement

    Hi guys - I'm currently doing a college project and I'm not overly experienced in the area of Java/JSP but I'm having an issue with a project. I have a JSP project inserting, viewing and deleting rows from a database but having an issue getting the update/modify function working in my project.
    If I hardcode values into my variables and launch the project it updates fine, but I believe theres an issue with how I'm calling the existing rows. I wish for the user to be able to view the rows from the database and modify as they wish. Once they submit the modifications, I want the row to be updated. Can anyone see where the problem might exist in my code below? I hope it's something small, but I'm not able to fix it at the moment and would apreciate anyone's help! :)
    The problem I'm facing at the moment is the input boxes for displaying the current rows from the database are not even showing up..
    ModifyNode.jsp:
    <%@page contentType="text/html" pageEncoding="UTF-8"%>
    <%@page import="suaspackage.NodeManager" %>
    <jsp:useBean id="AddNode" scope="session" class="suaspackage.NodeManager"/>
    <%@ page language="java" %>
    <%@ page import="java.sql.*" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <title>Suas</title>
        </head>
        <body
        <%! // Class level declarations
            Connection dbCon; // interface type in java SQL
            ResultSet rs; // interface type in java SQL
            String serverName = "localhost";
            String nodeID;
            String valowneremail;
            String valownersms;
            boolean bFirstTime;
            %>
            <%
            bFirstTime = true;
            if(request !=null){
                if(request.getParameter("submit") != null){
                    nodeID = "6";
                    valowneremail = request.getParameter("OwnerEmail");
                    valownersms = request.getParameter("OwnerSms");
                    bFirstTime = false;
                    AddNode.update(nodeID, valowneremail, valownersms);
            %>
            %>
        <%
            try{
            Class.forName("com.mysql.jdbc.Driver"); // SQLServer specifics 1
            dbCon = DriverManager.getConnection( // SQLServer specifics 2
                    "jdbc:mysql://" + serverName + ":3306" + "/suasdb", "root", "9631");
            Statement stmt;
            String sqlString = "select nodeid, node, owneremail, ownersms from nodemanager";
            stmt = dbCon.createStatement();
            rs = stmt.executeQuery(sqlString);
            } catch (ClassNotFoundException e){
                out.write("<B><CENTER><P>");
                out.write("Error loading class for Suas database connection: </P><P>");
                out.write(e.toString());
                out.write("</B></CENTER></P>");
                } catch (SQLException e){
                    out.write("<B><CENTER><P>");
                    out.write("Error accessing Suas database connection: </P><P>");
                    out.write("</B></CENTER></P>");
            if(rs!=null){
        %>
    <jsp:include page="includeheader.jsp" />
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td><img src="images/pagemarker_nodemanager.jpg" alt="Node manager" width="176" height="55"></td>
        </tr>
      </table>
             <jsp:include page="includenodemenu.jsp" />
    <TABLE WIDTH="75% BORDER="0" CELLPADDING="5" ALIGN="CENTER">
    <TR BGCOLOR="#9ddc4f">    </TR>
    <br>
    <TR BGCOLOR="#9ddc4f">
      <TH>Node ID</TH>
      <TH>Node</TH>
      <TH>Owner E-Mail Address</TH>
      <TH>Owner SMS Number</TH>
      <TH></TH>
    </TR>
             <%  } else {
                %>
    <% while (rs.next()){
        %>
    <FORM>
    <TR BGCOLOR="#d7eabf">
        <TD><%=rs.getString("nodeid")%></TD>
        <TD><%=rs.getString("node")%></TD>
        <TD><INPUT size="20" type="text" name="OwnerEmail" value="<%=rs.getString("owneremail")%>"</TD>
        <TD><INPUT size="20" type="text" name="OwnerSms" value="<%=rs.getString("ownersms")%>"</TD>
        <TD><INPUT type="submit" name="submit" value="Save"></TD>
    </TR>
    <% }
        %>
        </body>
    </html>
    {code}
    The relevant part of my NodeManger package:
    {code}
        public void update(String updateNodeId, String valEmail, String valSMS) throws ClassNotFoundException, SQLException{
            try{
                String updateSQL;
                String nodeid = updateNodeId;
                String updateowneremail = valEmail;
                String updateownersms = valSMS;
                Connection dbCon;
                Statement stmt;
                ResultSet rs;
                String serverName = "localhost";
                Class.forName("com.mysql.jdbc.Driver"); // SQLServer specifics 1
                dbCon = DriverManager.getConnection( // SQLServer specifics 2
                 "jdbc:mysql://" + serverName + ":3306" + "/suasdb", "root", "9631");
                updateSQL = "update nodemanager SET owneremail='" + updateowneremail + "', ownersms='" + updateownersms + "' WHERE nodeid='" + nodeid + "'";
                stmt = dbCon.createStatement();
                stmt.execute(updateSQL);
            } catch (ClassNotFoundException e){
                throw(e);
            } catch (SQLException e){
                throw(e);
        }{code}
    Edited by: daveomcgee on Apr 9, 2009 8:03 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    I support what ThomYork suggests. Learn how to properly separate database/business logic from your view logic. Learn how to use servlets and JSPs together. Read abourt DAO classes. Learn how to build a view in JSPs using taglibs (JSTL to begin with).
    You might think it is too much work, but if you learn this stuff the wrong way now, it is going to be that much harder converting to the clean, readable, reusable and maintainable way later on.

  • Issue with 'Show approval controls in task details only' in Human Task

    Hi,
    In human task, for the approval controls / outcomes to be displayed only in the task details (Not in the task summary, actions menu), the below option was selected and it was working perfectly in SOA BPM worklist application (11.1.1.5.0). But when we migrate to 11.1.1.6.0, this was not working...
    Option to be selected: .task > Assignment > Configure Assignment > Assignment > Show approval control controls in task details only.
    We are anyhow planning to test in 11.1.1.7.0 also, but do anyone knows why its not working in 11.1.1.6.0?

    I'm facing the same issue in 11g PS5. Any update on this?

  • Filtering issue with "Show photos in subfolders" option

    Hi,
    Maybe I missed something but there's a problem I'm unable to solve...
    I have disabled the "Show photos in subfolders" option in the Library module because I don't want LR to systematically display all photos each time I hover the root folder or a folder containing multiple subfolders: this is time consuming and slows down the software very much.
    However, there's an unwanted side effect of this choice: I can no longer do a global search from the filtering panel. The filtering criteria that are available there are related to the photos located in the currently selected folder. Even when selecting the root folder (which actually doesn't contain any photo but only subfolders), I can't select for example all photos from a given camera or captured at a given date. Actually, since the root folder is empty, there's no filtering option at all.
    Even when the "Show photos in subfolders" option is disabled, we should have the possibility to make a global search without having to re-enable this option first and then disabling it when we're done. Again, I may have missed something obvious and I know that solving this problem might not be that easy. Anyway, if a solution exists...
    Thanks in advance.

    Clicking on any folder is a kind of a filter-search already; regardless of whether you are also showing images in subfolders, or not.
    The All Photographs virtual collection will allow you to filter-search the entire Library. Any other use of the filter bar is not really a search; it is a refinement of an existing search. So in the case of viewing a given folder, if you want to view images with given properties even that fall outside this folder, you will first need to abandon that folder view - this seems to me, to be inherent.
    IIRC at or near the "breadcrumbs" display at the left end of the filmstrip, you can get at a little history menu of previously visited collections and folders (sorry, I cannot check the specifics just now). So you could view a folder, then recall a whole-catalog view and filter that for your lens or whatever, then go back to your single-folder view that way - still with that filter active, until you clear it.
    As to using the filtering, I find it handy to make some saved filter presets for commonly used search criteria (like lenses), including also a "no filters" option. Once set up, these can be readily accessed on the fly, at the right end of the filmstrip, without needing to go into Grid or use the filter bar at all. So in combination with a recent history of where you have been, it may be possible to get closer to what the OP has in mind.
    RP

  • Library Issue with showing Documents.

    After a restart of the server I have noticed that some libraries are showing a Correlation ID error message instead of documents. The error is shown below. On some libraries that have InfoPath forms attached, if i change the view, all the documents appear. 
    So basically on some libraries the All Documents is showing the error message below.
    Unable to display this Web Part. To troubleshoot the problem,
    open this Web page in a Microsoft SharePoint Foundation-compatible HTML editor
    such as Microsoft SharePoint Designer. If the problem persists, contact your Web
    server administrator.
    dfrancis

    resolved. I removed an update and restarted the server.
    dfrancis

  • Frustrated - Multiple issues with Fios TV/DVR - need advice on dealing with tech support

    I have been a Verizon Fios customer since Feb. 20th (all of two and a half weeks).  I signed up for my bundle on-line around 11am on the 20th, and had a technician out for install within a few hours on the SAME day.  I thought that was impressive - and I was looking forward to having a more reliable and fast internet connection than I had been experiencing with Brighthouse.
    The technician who installed was very friendly, and although he had some issues (apparently, there was a Verizon box in this house before us, but someone ripped it off the wall, so they had to run new wire all the way out to the street) the install went pretty quickly and smoothly.
    The first few days went along without a problem, and the internet was great.  Some of the functionality of the DVR was less than I'd hoped for, but some of the other features were great.  I had a glitch trying to set up my online account, but I used the online chat feature to work with tech support and she was able to correct the issue.  We noticed a couple times in the evenings that the TV would pixelate - but it only happened a few times and was very brief.
    On Sunday the 26th, our real issues started.  The live TV started freezing, then having a liquid-like pixelation problem, sometimes no sound.  We tried to watch a recorded show from our DVR list and received error messages stating that we didn't have DVR.  We called Verizon tech support and a very rude person reset the box several times and apparently even reinitialized the box and the result was that the box wouldn't even turn on anymore.  He said that he'd have a new box shipped out to us and that it would arrive by Tuesday or Wednesday.  My husband got on the phone at that point and suggested to him that since we were brand new customers (less than a week) and that since we had service installed on the very same day that we ordered it online, that certainly they could have someone bring us a new box on Monday morning.  The technician told us that he would transfer us to the billing department because we could probably just cancel the service.  We were both dumbfounded.  Especially considering that he had been rude from the minute he took our call, and while we were obviously frustrated, we were never rude.  We were eventually transferred to someone in billing who said she had never heard of such a thing and that she could not help us unless we wanted to cancel.  While this was going on, I had unplugged the box again, let it sit for several minutes, then plugged it back in - and the tv worked.  And the DVR worked. We assumed that maybe something the tech support guy did had worked after all.  Well, it worked until the next morning.  We had error messages saying we had no DVR.  A reboot of the box worked again.  After work, in the evening, it turned out that scheduled shows didn't record.  So, we called tech support again and asked for our new box.  We were told we'd have it by Thursday.
    New box arrived Thursday and we set it up that evening.  Went through trying to get all of our recordings set up again and finally sat down to watch tv.  I switched to Showtime (which we are subscribed to in our package) and received an error that the channel was not available, press B to troubleshoot or call tech support with this code.  Pressed B, went through the steps and the channel came back.  Then, proceeded on to HBO, also part of our subscription - and we received the same error.  We pressed B and this time going through the steps did NOT correct - so we called tech support.  After working with the girl for over an hour, she finally determined that we needed to be switched to billing to have them remove our HBO package and then put it back on and that should correct the problem.  So, while we were waiting for billing to come on the line, we started flipping channels again.  Now, channels that had previously worked were now showing the error that the channel was unavailable - even non HD, non premium channels.  When the billing girl got on the phone, she said there was really nothing she could do with that being the case and that downgrading our package and re-upgrading it would do nothing - that we needed technical support.  She got us on the line with a different tech support person who said that we were obviously having signal related issues and that we needed a tech to come out to look at the wiring.  He scheduled an appointment for us for Friday.  That call took over 2 hours.
    On Friday, the tech came out and spent time checking all of the wires coming in to the house - he said we had multiple splitters on lines that didn't need splitters and that this was likely causing a signal disruption and was probably the cause of the failure on both boxes.  He removed some of the splitters and apparently streamlined some of the wiring.  We still had the original box and the new box.  He hooked up each box and they both worked - all of our premium channels worked, DVR was good, etc. We boxed up the old box to send back, kept the new box and had tv that worked just fine for a few hours... then we started having the channel not available issues again.  And, now - we were also getting messages saying that we weren't subscribed to a channel - and this would range from HBO all the way to a non HD standard tv channel.  A reboot will work and restore function - for a while.  However - scheduled shows aren't recording - or record for 7 seconds and stop.  Or record for a while, then have a 20 minute gap in the middle where it's frozen, etc.  This has been going on since a few hours after the technician left Friday evening.  And, I have to say - when the tech left Friday - everhything seemed fine.  He had tested the signal strength - seemed completely thorough and was very nice.  I don't think he could have known, at that time, that the problem wasn't fixed.
    We have not called back to tech support yet.  We're busy with our work and our lives and we're also frustrated.  I know it will take another several hours and don't have much faith that there is any resolution.  It seems to me that we probably need the whole house completely rewired - brand new - start over.  I'm thinking there's a bad wire in there somewhere.
    This morning with my coffee before work, I tried to watch a tv show in my DVR list that apparently didn't record properly - no surprise (it froze and skipped over half the show).  So, I went to On Demand and found the show. (Without Bay News 9, I'm kind of lost with morning coffee, so I need a show of some kind)  It started to play and was going along just fine, till I received a CableCARD  (tm) Pairing Information is not available message.  I tried the auto fix in the menu, rebooted, etc.  It worked for a few minutes, then stopped again.  At one point, I got an error saying the set top box lost video due to a network connection failure.  Great, does that mean my internet is going bad too?? While looking around in the menu function, I clicked on the self diagnostics feature.  It filled in all the information, as I'd seen it do before - except when it got to the package description.  This time, instead of Ultimate HD, HBO, VOD, etc., etc (like I'd seen before). it told me that my package is: Arabic, Armenian, ART (Arabic), Extreme HD, HBO, Prime & Ultimate HD, Prime HD, RA, RAI (Italian), etc., etc.  Huh???  Really???
    So, I'm not sure now what the deal is - would a signal issue cause my subscription package to change?  Do I get on the phone with someone at tech support for another few hours?  Are they going to send yet another box?  Are they going to come re-wire the whole house?  Is it worth it?  This is really ridiculous.  Do I cancel and go back to Brighthouse with my tail between my legs?  At least with them, I knew that my internet connection would be wicked slow at certain times of the day, but at least I knew it was coming and could expect it - and I could at least count on my tv and dvr recording my shows.
    When I logged into verizon to vent on this forum, my account said that it was unable to access my DVR.  When I clicked on manage my DVR, it just says Bad Gateway.  Not a great start to our relationship, Verizon.
    I really need some advice.  Should I stay or should I go?  And, if I stay - what is the best way for me to explain this to tech support so they will do the right thing and fix this?  And, what is "this" anyway?  Bad box, bad wiring?  
    Any help would be greatly appreciated.

    Replied to private message with all information including name, address, phone number and account number.  Thank you.

  • I cant find my pdf/ibooks on computer after backing up my iPad (they are on my iPad).   Also, I'm having issues with my Ipad turning off about every 2 minutes so I want to restore it.  Dont want to lose my files from my iPad.

    Actually I have 2 problems:  I cant find my pdf/ibooks on computer after backing up my iPad (they are on my iPad).  I looked under Ipad, I Books, PDFs, and it doesn't show them on the computer. How do I manually transfer these files?
    Also, I'm having issues with my Ipad turning off about every 2 minutes, and I want to restore it.  I want to make sure all of the files are backed up before I restore.  My trouble started when I was trying to update my IPad but it was taking too long (internet was scetchy) so I powered off...now Im having problems.  I haven't tried to update again since this problem. Any suggestions?  Should I restore? Should I update to 7.0.6?  (currently 7.0.3).
    Thanks,

    Try here:
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer

  • Severe audio sync issues with DVR and RAI(Italian) channel.

    Having severe audio sync issues with the Motorola QIP6416-2 while
    watching RAI(Italian) channel. The audio is about 2 seconds behind
    the video. This is the only channel it seems to happen with.
    I just switched from Cablevision about a week ago and never had a
    sync issue with their DVR with the same RAI channel or any channel.
    I've tried changing hdmi cables with no success and I also went to
    component video cables but the problem remains. Resetting the
    box helps but within 15 minutes the sync issues return. Also,
    a channel change and back helps briefly,
    The only new piece of equipment in the mix is the Motorola DVR,
    nothing else has changed.  The DVR is connected directly to my
    tv.
    Any help is greatly appreciated.
    Mike

    Being a foreign channel, there may be something screwy with the framerate (PAL conversion?). I don't personally subscribe to any foreign languages channels and I doubt too many on this forum do either, so you may have trouble finding someone to replicate the problem on their end here.

  • Hi. I am having an issue with music on my Ipod. It would probably be easier to explain my specific issue: I have songs by Band of Horses from Cease to Begin. When viewing my albums through cover flow, it shows Cease To Begin as two separate albums, one wi

    Hi. I am having an issue with music on my IPod. It would probably be easier to explain my specific issue: I have songs by Band of Horses from Cease to Begin. When viewing my albums through cover flow, it shows Cease To Begin as two separate albums, one with only Islands on the Coast, and the other having Islands on the Coast with 3 other songs. If I delete the album with only one song from my IPod, it deletes the song from the other "album" as well. If I go to "All Songs" by Band of Horses, it only shows one Islands on the Coast, so it is not a duplicate issue. Also, in Itunes, it only shows one album. I just recently updated to iOS5 on my 4th Gen IPod Touch, if that helps.

        Hello APVzW, we absolutely want the best path to resolution. My apologies for multiple attempts of replacing the device. We'd like to verify the order information and see if we can locate the tracking number. Please send a direct message with the order number so we can dive deeper. Here's steps to send a direct message: http://vz.to/1b8XnPy We look forward to hearing from you soon.
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

  • Performance issues with 10.6/1/2 - Mac hangs every 5 minutes

    Hi all,
    A recent problem I have started to experience is that my Mac keeps hanging, avery 5-10 minutes the beach ball comes up and freezes the machine; sometimes for 3-5 minutes and it is really frustrating me!
    Didn't have any issues with a fresh install of 10.6 or 10.6.1 but it all seems to have started with 10.6.2. Have reinstalled 10.6 then 10.6.1 but now still having the issue.
    Any ideas, there isn't anything I have changed other than OS upgrade so am at a loss and becoming incredibly frustrated!
    Thanks in advance :0)

    Are you having similar symptoms as I am? http://discussions.apple.com/thread.jspa?threadID=2234792&tstart=0

  • I bought a few songs on itunes but the songs appear in grey letters and I cannot transfer them to my iphone. I've bought/rented TV shows/movies since so there isn't an issue with my account. How can I get these newly purchased songs onto my iphone?

    I bought a few songs on itunes but the songs appear in grey letters and I cannot transfer them to my iphone. I've bought/rented TV shows/movies since so there isn't an issue with my account. How can I get these newly purchased songs onto my iphone?

    You made a purchase and exhausted the credit on your card before it processed. All purchases are final. Contact iTunes Store support. You need to settle up before you can purchase or download anything else.

  • I have issue with my account acutely I can't download any application when I try to downloading any application it show my Apple ID has been disabled ,so please I want to get your usual support.  Beat Regards..

    I have issue with my account acutely I can't download any application when I try to downloading any application it show my Apple ID has been disabled ,so please I want to get your usual support.

    Sweet-jeje wrote:
    ... it show my Apple ID has been disabled ,..
    If disabled for Security Reasons... See here  http://support.apple.com/kb/TS2446
    If not for Security reasons...
    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • I am still having issues with the TOC. I finally got several chapters and sections to show different pictures in the TOC, but have spent hours trying to figure out how to repeat it. This should be so simple. Is there an update? Please help us Apple.

    I am still having issues with the TOC pictures. I got several chapter/section photos to show up, but can't seem to repeat this success. It is some mystery that happened during a time that I had practically given up. This should be such a simple thing. Drag and place a picture into the placeholder and it shows up in the TOC....right? Help, help help! want to get this thing done and it's taken two days of work just get some of the photos to show up. I am going to have to publish this ibook with no photos in several sections.....why can't this be simple? I have even had someone else spend hours trying to figure this out. This software is such a GREAT idea....come on...help with this little part of it.

    I had the same problem myself. I got to the point where I couldn't replace the photo, of a new chapter, in the TOC. What I did was to duplicate an existing chapter that was working and was able to replace it's TOC's photo. I also found that if you try different areas of the photo you can sometimes get it to replace correctly. For example, instead of dragging the new photo to the middle of an existing photo, try dragging it to the right top corner.

  • I added an iTunes card to my account. THe balance shows on the account, but I can not download, because iTunes has an issue with the debit card linked to the account. Shouldn't it default to the balance from the card I added?

    iTunes keeps telling me my debit card is declined, when I am trying to use an iTunes card that I added today. The amount from the iTunes card shows on the account.

    You need to fix the issue with the credit card on the iTunes account or you can remove the credit card.

  • I'm having issues with text layers in photoshop. Text layers show it's there but not visible on the canvas.

    I'm having issues with text layers in photoshop. They aren't visible. I've checked font size, alignment, layer order and color. And the layer list shows that it's there. All seems well but I still can't see the text that I write. Need help trouble shooting. (I asked this question about a month ago but I got sidetracked and never circled back.) Thanks.

    Please refer to your original topic (Text Layer not Visible.) instead of posting a new topic.

Maybe you are looking for

  • How to call a AM method with parameters from Managed Bean?

    Hi Everyone, I have a situation where I need to call AM method (setDefaultSubInv) from Managed bean, under Value change Listner method. Here is what I am doing, I have added AM method on to the page bindings, then in bean calling this Class[] paramTy

  • How to use xslt mapper

    I'have created a xsd with sequence occurences. In the xslt mapper I try to connect nickname, initials and full name to the same field, because I just see one field. Can somebody help me? Thanks Jasper

  • LDAP Configuration in UCM

    Hi All, Please can somebody tell me how to configure LDAP Provider so that I can authenticate my ucm users via OpenLDAP 2.0.0.27 I tried my best to configure using the manual from oracle but this didn't help out and didn't work Please Help Thanks Raj

  • Where are udump,cdump,bdump  trace files in grid control?

    Hi All I want to show all the trace file those are in bdump,udump and cdump. Where can I find those file or information in Grid control? Thanks, Vishal Message was edited by: vishal patel Message was edited by: vishal patel

  • Regarding Exception in  compiling BPEL in Jdeveloper

    I am getting the following exception building the SOA Composite in Jdeveloper. Can any one please help me in solving this issue. Your help is appreciated. c:\programfiles(x86)\oracle\middleware\jdevloper\bin\ant-sca-compile.xml : 236 : Java returned