OA Framework - Help Needed in highlighting one of the rows in Custom Page

Hi Oracle Gurus,
I am new to OAF.
I have a requirement like I have to highlight one of the rows in a Custom OA Page.
These rows exist in a table structure,they are basically Claim records of the employees.
All these rows are from only One View Object. I just need the total row alone to get highlighted in different color.
I tried updating the Custom.xss file in $OA_HTML/cabo/styles.
Below is my Custom.xss file
<styleSheet>
<!-- Please start your customizations here -->
<style selector="XX_BOLD">
<includeStyle name="DefaultFontFamily"/>
<property name="background-color">#FF0000</property>
</style>
<style selector="XX_NORMAL">
<property name="background-color">#0000FF</property>
</style>
The Query of the VO is
SELECT EMP_DEP,
CLINIC,
HOSPITAL,
DENTAL,
OPTICAL,
EXE_PROFILE,
MATERNITY,
DECODE(EMP_DEP,'Total','XX_BOLD','XX_NORMAL') XX_BOLD FROM apps.XXBEN_CB_MEDUTIL_TABLE;
The VO has decode operation that decides the CSS style which will be used via Controller.
I have applied the CSS file thorugh the Controller code that I have given below.
Controller Code :
OAPageLayoutBean plb = pageContext.getPageLayoutBean();
OAMessageStyledTextBean columnBean = (OAMessageStyledTextBean) plb.findChildRecursive("EmpDep");
OADataBoundValueViewObject css = new OADataBoundValueViewObject(columnBean, "XX_BOLD");
columnBean.setAttributeValue(oracle.cabo.ui.UIConstants.STYLE_CLASS_ATTR,css);
I did all the changes and bounced the Apache Server.
But this seems to be not working....I do not see any Colour change in the OAPage.
Can Anyone tell what could be wrong in this.???
Please Reply as this very urgent........

Hi Anil,
I tried watever you had suggested,It is still throwing the same error.
I have pasted below the code that I am using.
Controller Code:
package EmployeeTest.oracle.apps.per.server.webui;
import oracle.apps.fnd.common.VersionInfo;
import oracle.apps.fnd.framework.webui.OAControllerImpl;
import oracle.apps.fnd.framework.webui.OAPageContext;
import oracle.apps.fnd.framework.webui.beans.OAWebBean;
import oracle.apps.fnd.framework.OAApplicationModule;
import oracle.apps.fnd.framework.webui.OAWebBeanConstants ;
import oracle.apps.fnd.framework.webui.beans.table.OATableBean ;
import oracle.apps.fnd.framework.webui.beans.message.OAMessageStyledTextBean;
import oracle.apps.fnd.framework.webui.OADataBoundValueViewObject;
import oracle.cabo.ui.beans.table.ColumnBean;
import oracle.apps.fnd.framework.webui.beans.form.OAChoiceBean;
import oracle.apps.fnd.framework.webui.beans.form.OASubmitButtonBean;
import oracle.apps.fnd.framework.webui.beans.layout.*;
import oracle.apps.fnd.framework.webui.beans.message.*;
import oracle.apps.fnd.framework.webui.beans.nav.OANavigationBarBean;
import oracle.apps.fnd.framework.webui.beans.nav.OAPageButtonBarBean;
import oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean;
import oracle.apps.fnd.framework.webui.beans.table.*;
import oracle.cabo.ui.*;
import oracle.cabo.ui.beans.*;
import oracle.cabo.ui.beans.form.*;
import oracle.cabo.ui.beans.layout.*;
import oracle.cabo.ui.beans.message.MessageStyledTextBean;
import oracle.cabo.ui.beans.message.MessageTextInputBean;
import oracle.cabo.ui.beans.nav.NavigationBarBean;
import oracle.cabo.ui.beans.table.ColumnBean;
import oracle.cabo.ui.beans.table.TableBean;
import oracle.apps.fnd.framework.OAViewObject;
import oracle.apps.fnd.framework.OARow;
import oracle.jbo.domain.Number;
import oracle.cabo.style.CSSStyle;
import java.io.Serializable;
* Controller for ...
public class EmployeeInfoCO extends OAControllerImpl
public static final String RCS_ID="$Header$";
public static final boolean RCS_ID_RECORDED =
VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
* Layout and page setup logic for a region.
* @param pageContext the current OA page context
* @param webBean the web bean corresponding to the region
public void processRequest(OAPageContext pageContext, OAWebBean webBean)
super.processRequest(pageContext, webBean);
int intPersonId = pageContext.getEmployeeId();
//int intPersonId; // = pageContext.getEmployeeId();
//String strPersonId = Integer.toString(277980);
String strPersonId = Integer.toString(intPersonId);
// get the Application Module
OAApplicationModule oaAM = pageContext.getApplicationModule(webBean);
Serializable parameters[] = { strPersonId };
//pass parameters to Application Module
oaAM.invokeMethod("initQuery", parameters);
oaAM.invokeMethod("insertRow", parameters);
oaAM.invokeMethod("execQuery");
oaAM.invokeMethod("totexecQuery");
oaAM.invokeMethod("tohighQuery");
OAViewObject oaviewobject1 =(OAViewObject)oaAM.findViewObject("EmployeeUtilVO1");
oaviewobject1.reset();
if (oaviewobject1 != null)
do
if(!oaviewobject1.hasNext())
break;
oaviewobject1.next();
OARow row = (OARow)oaviewobject1.getCurrentRow();
String fullName = (String)row.getAttribute("EmpDep");
System.out.println("The Name is "+fullName);
row.setEmpDep("<html><H5>"+row.getEmpDep()+"</H5></html>"); (As it is a Plain Text this HTML tag is making the text row.getEmpDep() as H5)
} while(true);
* Procedure to handle form submissions for form elements in
* a region.
* @param pageContext the current OA page context
* @param webBean the web bean corresponding to the region
public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
super.processFormRequest(pageContext, webBean);
I am successful in Interating the rows of the table.
I am being able to print out the view attribute "EmpDep", But when I tried highlighting the row attribute using Row object,it is throwing me an error.
The error code is :
Error(88,40): method getEmpDep not found in interface oracle.apps.fnd.framework.OARow
Error(88,13): method setEmpDep(java.lang.String) not found in interface oracle.apps.fnd.framework.OARow
I have already give the Query for the VO in the Thread.
Could You Plz let me know what is wrong in this code?
Edited by: user1393742 on Sep 21, 2010 7:54 PM
Edited by: user1393742 on Sep 21, 2010 7:55 PM
Edited by: user1393742 on Sep 21, 2010 7:57 PM
Edited by: user1393742 on Sep 21, 2010 7:58 PM
Edited by: user1393742 on Sep 21, 2010 8:01 PM
Edited by: user1393742 on Sep 21, 2010 8:02 PM
Edited by: user1393742 on Sep 21, 2010 8:03 PM
Edited by: user1393742 on Sep 21, 2010 8:07 PM

Similar Messages

  • Need to hide one of the selction screen block

    Hi Gurus!
    I need to hide one of the block in my selectrion screen and only display one radio button in that selection screen block . Somehow its not hiding the enitre block , so I tried doing the fields invisible but when it is transported it again makes it visible . Is it possible to do it through programming code itself rather than through screen.
    Follwoing is the block that I need to hide.
    SELECTION-SCREEN BEGIN OF BLOCK b4 WITH FRAME TITLE text-004.
    PARAMETERS:
    rb_list RADIOBUTTON GROUP rb1 DEFAULT 'X' USER-COMMAND opt.<<<<<<<<need to hide this
    SELECTION-SCREEN BEGIN OF BLOCK b4i WITH FRAME TITLE text-005 .<<< need to hide this block
    PARAMETERS: p_header AS CHECKBOX MODIF ID b5,
                p_send   AS CHECKBOX MODIF ID b5 USER-COMMAND opt,
                p_overr  TYPE sy-uname MODIF ID b6,
                p_alines AS CHECKBOX MODIF ID b5.
    SELECTION-SCREEN END OF BLOCK b4i .
    PARAMETERS: rb_alv  RADIOBUTTON GROUP rb1 DEFAULT 'X'.<<<< Just need to show this on my selection screen
    SELECTION-SCREEN END OF BLOCK b4.
    In the above code I need to hide the block b4i and the radiobutton rb_list.
    Help will be gretaly appreciated.
    Regards
    Aarav

    Hi!
    Thanks for the input but addition of that still gives me the first radiobutton 'rb_list 'in my selection screen .
    SELECTION-SCREEN BEGIN OF BLOCK b4 WITH FRAME TITLE text-004 .
    PARAMETERS:rb_list RADIOBUTTON GROUP rb1 MODIF ID rad .<<<<< This is still showing up --want to hide this
    SELECTION-SCREEN  BEGIN OF BLOCK b4i WITH FRAME TITLE text-005 .<<<<< want to hide is block completely
    PARAMETERS: p_header AS CHECKBOX MODIF ID b5 ,
                p_send   AS CHECKBOX MODIF ID b5 USER-COMMAND opt,
                p_overr  TYPE sy-uname MODIF ID b6,
                p_alines AS CHECKBOX MODIF ID b5.
    SELECTION-SCREEN END OF BLOCK b4i .
    PARAMETERS: rb_alv  RADIOBUTTON GROUP rb1 DEFAULT 'X'.<<< Just need to show this param,etere on the screen
    SELECTION-SCREEN END OF BLOCK b4.
    * At Selection screen output
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF rb_list IS INITIAL AND ( screen-group1 = 'B5').
          screen-active = '0'.
          MODIFY SCREEN.
        ELSEIF screen-group1 = 'B5'.
          screen-active = '1'.
          MODIFY SCREEN.
        ENDIF.
        IF p_send IS INITIAL AND screen-group1 = 'B6'.
          screen-active = '0'.
          MODIFY SCREEN.
        ELSEIF screen-group1 = 'B6'.
          screen-active = '1'.
          MODIFY SCREEN.
        ENDIF.
        CHECK screen-group1 = 'RAD' OR
              screen-group1 = 'B4'  OR
              screen-group1 = 'B5'  OR
              screen-group1 = 'B6' OR
        screen-active = 0.
        MODIFY SCREEN.
    Thanks
    Edited by: Aarav  Agnihotri on Sep 29, 2009 6:08 PM

  • Highlight one of the steps of my roadmap programmetically

    hi everybody,
    I have a roadmap of MultipleRoadmapSteps. I want to highlight one of the steps
    programmatically. Can anyone send me some sample code for that?
    Waiting for valuable replies..

    Hi Mainak,
    You can use the leadSelection of the node to which the MultipleRoadmapStep binds to to highlight an entry. In addition you need to set the selectedStep property at the RoadMap to mark this specific MultipleRoadmapStep as the one for which the highlighting should be done.
    Best regards,
    Thomas

  • I now have two iPads and have opened a new icloud account.  I need to change one of the ipads to the new account.  Can you tell me how to do that?

    I now have two iPads and have opened a new icloud account.  I need to change one of the ipads to the new account.  Can you tell me how to do that?

    Welcome to the Apple Community.
    settings > iCloud, scroll down and delete account. Re-enter the details of the new account.

  • Why am I getting an error when I place two OAM files one after the other in different pages?

    Why am I getting an error when I place two OAM files one after the other in different pages? They do not load or play correctly.  They are both configured to play automatically with a .125 second delay and both have a white rectangle "poster" over for a hidden effect.

    Thanks for the idea, Scott! I initially tried your idea, but my OAM files were still not loading correctly.  I tried other combinations of OAM files, and it seems to work fine.
    Back to my original OAM files: I made sure that my elements in my Edge Animate project had different names. I originally copied parts of some elements from one to another, and I think it was confusing to DPS to read it. 

  • Help needed with HTC One regarding mic problem with noise cancellation

    I picked up an HTC One last week, and so far I am loving the phone.  Great build quality, screen, sound - all as advertised.
    However, there is one very annoying problem I am having.  When I am talking to someone, I can gear them great, but they keep telling me I sound muffled or robotic.  I performed some tests, and the problem appears to be something with the dual microphones and the HTC One's noise cancellation features.
    Here are the tests I ran:
    Typical phone call, with holding the phone as I normally do on the sides and to my ear.  Call result, pretty muffled voice.  I'd give the call quality a 5/10.
    Help the phone as I typically do, but covered the mic hole on the back of the phone.  This definatelyimproved call quality.  Was louder and clearer, but not perfect.  I'd rate it at 8/10.
    Help the phone towards the bottom, using my hand to kind of cup the bottom directing the sound to the bottom mic.  This was a further improvement in sound quality.  Rating would be 9/10.
    Help phone as normal, but covered the bottom mic hole.  Very low volume and muffled sound.  Rating a 4/10.
    Talked directly into the bottom of the phone into the bottom mic.  This gave perfect call quality and volume.  Rating a 10/10!
    Talked directly into the mic on the back of the phone. Horrible quality, couldn't hear hardly anything. Rating 0/10.
    Speaker phone on, held the phone up and moved it around as I would normally use a speaker phone.  Call quality was really nice.  Id give it 9/10.
    Speaker phone on, covered back mic hole and used speaker phone as in #7.  Very bad quality, rating 1/10 for call quality.
    Speaker phone on, covered bottom mic and help speaker phone in hand.  Really good quality, even an improvement over test #7.  Would give the call quality a 9.5/10.
    Speaker phone on, placed face down on table.  Volume a bit low, a little muffled.  Call quality 6/10.
    Speaker phone on, place face up on table.  A bit worse than test #10, low volume and a bit muffled.  Call quality is 5/10.
    Based on these tests, I know this problem has nothing to do with the network CDMA connection.  It is obvious that the noise cancellation features are a bit too aggressive, or I have some hardware problem with one or both mics.
    I question wether its really a hardware mic problem, because on non-speaker phone calls, talking directly into the bottom mic gives great quality.  And on Speaker phone, covering the bottom mic makes the speaker phone sound really good.  That's why I think there's something going on with the "Sense Sound" noise cancellation.
    Is anyone else seeing the same issues?  I want to be able to hold the phone normal on a non speaker phone call and get good quality.
    Looking for any tips and advice anyone can give.  Is it worth exchanging for a new one, as I am still in my 14 day window.
    Thanks in advance for the help!

    Here are some other threads that seem to be having similar issues:
    http://forum.xda-developers.com/showthread.php?t=2262648
    http://forum.xda-developers.com/showthread.php?t=2294532

  • Help needed on correction applied to the rotatonY angle when using perspectiveProjection

    Hello, can someone help me out please?
    I have a stage with and height of : 600x400
    On this stage i have 3 squares that have a centerpoint in the middle. The square are 90 (width) and 80 (height)
    The first square is aligned to the left site and the second one in the middle and the third one on the right
    The perspectiveProjection is setup using the middle of the stage as it projectionCenter.
    When i rotate all squares to 90 degrees (rotationY) than only the middle one is now not visible anymore, at that point i want to
    switch the image inside the square. But at 90 degrees the left and right squares are not invisible..  For the left square that point would
    be at 90 - 22, and the right one 90 + 22.   Is there a way to calculate the correction value (22) in this example?
    What i don't want is to give every square it's own perspectiveProjecten , then it would work but you have a completely different
    3D rotation.
    The only thing that goes wrong in my example is that the image from the left and right square are not changed at the right time, because
    90 degrees on the left square does not mean it it not visible at that point.
    And here is the code:
    import flash.display.MovieClip;
    import flash.geom.Point;
    import flash.geom.PerspectiveProjection;
    import fl.transitions.*;
    import fl.transitions.easing.*
    var squares:Array = [c1, c2, c3];
    this.transform.perspectiveProjection.projectionCenter = new Point(300, 200);
    this.transform.perspectiveProjection.fieldOfView = 50;
    for(var i:int = 0; i< squares.length; i++) {
    var square:MovieClip = squares[i] as MovieClip;
    var tween:Tween = new Tween(square, "rotationY", Strong.easeOut, 0, 180,8, true);
    tween.addEventListener(TweenEvent.MOTION_CHANGE, onTweenUpdate);
    function onTweenUpdate(e:TweenEvent):void {
    if(e.currentTarget.obj.rotationY >=90) {
      e.currentTarget.obj.img2.visible = true;
      e.currentTarget.obj.img1.visible = false;
    } else {
      e.currentTarget.obj.img2.visible = false;
      e.currentTarget.obj.img1.visible = true;
    //trace("targ", e.target.obj.rotationY);

    try:
    import flash.display.MovieClip;
    import flash.geom.Point;
    import flash.geom.PerspectiveProjection;
    import fl.transitions.*;
    import fl.transitions.easing.*
    var squares:Array = [c1, c2, c3];
    this.transform.perspectiveProjection.projectionCenter = new Point(300, 200);
    this.transform.perspectiveProjection.fieldOfView = 50;
    for(var i:int = 0; i< squares.length; i++) {
    var square:MovieClip = squares[i] as MovieClip;
    var tween:Tween = new Tween(square, "rotationY", Strong.easeOut, 0, 180,8, true);
    tween.addEventListener(TweenEvent.MOTION_CHANGE, onTweenUpdate);
    function onTweenUpdate(e:TweenEvent):void {
    var theX:Number=e.currentTarget.obj.x;
    var difX:Number=theX-this.transform.perspectiveProjection.projectionCenter.x;
    var tempDegree:Number=e.currentTarget.obj.rotationY-(difX/10); //  <---anyone know the right formula?
    if(tempDegree>=90) {
      e.currentTarget.obj.img2.visible = true;
      e.currentTarget.obj.img1.visible = false;
    } else {
      e.currentTarget.obj.img2.visible = false;
      e.currentTarget.obj.img1.visible = true;
    //trace("targ", e.target.obj.rotationY);

  • HT2688 I have an Apple Id for my Itunes, and my children have a different Apple ID for theirs.  To home share, do I need to change one of the IDs for ITunes, or can we simply have a common Apple ID just for home sharing?  Thanks.

    I think the title says it all.  We have different Apple IDs on two computers for two users.  To home share, is it necessary to change one of the Apple IDs to match the other, or can this be done just for purposes of home sharing -- i.e., select one Apple ID as the common ID just for purposes of home sharing.
    Thanks,
    Eric

    Personally, I'd keep it simple and keep the same one.

  • Need to disable one of the select-options in dynamic selection screen

    Hi,
    we have copied the Standard program: RFDOPR00 into Z, my requirement is to disable one of the select-options in dynamic selection screen for ex: Reason code(User shouldnot able to enter anything in it).
    Can anyone please tell me the procedure to do it... I had tried using at selection-screen but it doesnt work as it in 'LOOP AT SCREEN', i am not able to capture the Parameter name(screen-name).
    Thanks,
    Ravi

    Hi,
    Get inside your selection screen, by executing your program.
    Now type /h in the field where you enter transaction code and press enter.
    Now again press enter, this will take you debugger starting from your Selection screen.
    You might be knowing this, still if you are not aware of this, this might be a valuable tip.
    From here , you can trace your Parameter name.

  • Highlight some of the rows in a datagrid

    Hi I'm new to Flex. My question is:
    Say I have a datagrid and I upload a CSV and show the data on the grid. After that I save these values to the DB. I'm using Arraycollection. Now say all the rows are not imported as a few of them are invalid data. So I return back an ArrayCollection of the rows that were not imported. Now I want to highlight those rows that were invalid & not imported. Can someone please help me on this.
    Thanks much
    Harish

    The rownum pseudo-column hold the number of the row but it doesn't work like you expect. It is assigned before sorting for example and it is not absolute. SQL conceptually deals with sets and sets have no inherent order. See http://www.oracle.com/technology/oramag/oracle/06-sep/o56asktom.html
    If you want to have an absolute number in a row you will need to maintain it yourself with PLSQL code.

  • How to re-order automatically the number of primary key column in MySql that has been set as auto_increment if one of the row deleted?

    Hello,
    Can anyone show me the way how to re-oder automatically the number of primary key that has been set as auto_increment in mysql database when the row deleted?
    example:
    No (primary key=auto increment)|
    Name |
    AGE |
    1
        | JO
    | 21
    |
    2
        | Kyle
    | 25
    |
    3
        | Macy
    | 30
    |
    When delete 1 row:
    No (primary key=auto increment)|
    Name |
    AGE |
    1
        | JO
    | 21
    |
    2
        | Macy
    | 30
    |

    Hello,
    This is not a VB.NET question, best to ask this question in
    MySQL forum.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem.

  • Help. Need to remove one of the listed QuickTimes from the "open with" menu

    When I bring up the 'Open with' menu on an audio file I have QuickTime Player (7.3.1) and just below that I have QuickTime Player (7.2.1). I would like to remove the 7.2.1 listing from this menu. There is on one version on my computer (7.3.1). The last update must have placed the newer listing in this menu and left the older listing. Is there a way to remove the older listing from the open with menu?

    Did you ever do an archival and install of your OS? If so, you have what is called previous system fold on your main hard drive. This is where you can find the player to the version. If not I guess what happen to you is strange...mmm... And I guess it could happen.

  • Should I return this laptop? Ebay purchase. Please help - need more than one opinion! College student here

    First, it was an amazing deal of $525 for a 2011, 6gb RAM, 640 GB hard drive.
    BUT, i took it to the apple store and they said I should return it because...
    1) the screws on the bottom meant the seller refurbished it because they arent apple screws
    2) the hard drive failed their test which was sad for me to see
    3) the RAM sticks are two different sticks, one apple stick and one something else
    4) the keyboard only lights up in the middle which the apple people think is water damage but they cant really tell without opening it. they wont open it because of the screws.
    The reasons I dont think I should return it are....
    1) I can get a squaretrade warranty so if it does break I can return it
    2) $525 for a 2011 mac laptop is sooo good and unheard of, but I may be able to find another similar deal on craigslist so this might not be a valid reason
    3) i've been heavily using it for a week without any issues
    4) i dont want to spend more new hours searching for a laptop
    5) i might not be able to find one on time for when school starts
    BACKROUND INFO #1: it has ZERO dents, scratches, or dings - nothing else except whats listed above is wrong with it
    BACKGROUND INFO #2: I am a college student who has had 7 PC's crash in the past 5 years. I gave up on PC and invested in this mac. I'm tired of losing my files and forgetting to back it up into my emails every week.
    so looking at all that, what do you think I should do? AKA if you were in my shoes you would do what?

    Now you know why it was $525.  Also realize you are getting a computer that isn't a warranty computer.  How much did you save?
    Read the fine print on the Squaretrade warranty.  Make sure they won't turn it away for the same reason Apple does.
    Can you live without the light?  Even if it got wet in the past it boots now.  If I buy a used car and the radio doesn't work but I get it for a really good price then I figure that's part of it if I can live with it and it doesn't interfer with day to day use.
    It would be nice to know why the hard drive failed their test. Obviously if the computer boots it isn't total toast.  Clearly somebody has been inside the computer to add RAM and maybe change the drive?  That doesn't freak me in a used computer.
    Maybe somebody can comment on non idential RAM but with some computers with RAM from a reputable upgrade source it doesn't matter.  Post the exact specs of the second chip.
    My only question is, how up-front was the person from whom you bought the computer?  Did they tell you about the light?  It isn't a critical part but it is something you can assume to be working unless they tell you it isn't.  If they didn't, what else didn't they tell you?
    Screws will freak Apple Service because they only look at stuff where they know 100% what's been done to it and nobody not-certified has messed with it.  I have done all kinds of things to my computer that would have voided the original warranty 20x over but it long ago went out of warranty.  It purrs.

  • Help needed in Business one application

    Hi all,
    My requirement is as below.
    In Business one application,
    An End user will create Purchase order of 10 units for Item A.
    After that when he do Goods Receipt for Purchase Order for 10 units,he will send all 10 units to Quality Manager for Quality Check.
    Now say,if out of 10 units,2 units are rejected because of bad quality, he should be able to update Document for Goods Receipt against purchase order for only 8 units.
    But as of now system is not allowing to Edit the document.
    Can any one give me an idea to fulfill the above requirement?
    Thanks & Regards,
    Ravi

    Hi Ravi
    It is not possible to enter rejected quantity in Goods receipt PO(GRPO) so we have to enter the total quantity received and if say 2 nos are rejected, copy the Goods receipt PO to Return and change the quantity field to 2 nos. Then when AP Invoice is raised payment will be made only for 8 nos. The Quality control (QC) person can check the items and mention his remarks in the hard copy of item challan.
    However if you want to show the rejected quantity in GRPO create an user defined field with field name as "Rejected quantity" and the rejected quantity can be noted by the QC person. But this field is only for information and not taken into account.
    Hope this clears your doubts.
    Rozario

  • Please help. need to buy one tomorrow

    If I buy the new ipad from UAE, Will 3g and 4g work in india?

    I believe all miniDV cams sold these days have a firewire port, but ask the salesperson to show it to you. It may have the letters "DV" stamped near the port. You will also have to buy the firewire cable as most manufacturers do not supply the firewire cable, only a USB cable. You want a 6 to 4 pin cable - 6 pin end goes into your Mac.

Maybe you are looking for

  • There was a problem downloading An unknown error occurred (-50).

    Hi, After upgrading to Itunes 11 it refused to play movies I had purchased through the Itunes store, even though I could see the files were there on my hard drive, and the movie covers were visible in Itunes. I discovered that the only way to get the

  • Satellite Pro A200 PSAE1E: Cannot get hotkeys working on Win XP

    Hi, I have a Satellite Pro A200 PSAE1E which came with Vista on it, I have reinstalled it with Win XP Pro installed the relevant drivers from the Toshiba download page but cannot get the hot keys working. I have installed the controls and control dri

  • Sharing pics on facebook with my Lumia 800

    Hello, I've never had a problem sharing photo's on facebook until a few days ago and now although it looks like it's uploading the picture doesn't show up on facebook at all ? What could be the problem ? Regards, Caroline 

  • Ssh: /etc/issue display between login and password prompts

    Hi All, I currently have ssh installed on one a Solaris 10 (non-global) zone. I have configured the sshd_config to run on protocol 2 and unhashed the 'Banner /etc/issue' parameter. When I attempt to log into this zone via ssh I get (in this order)...

  • Youtube app disappeared.

    I recently had to reinstall the latest Belle software on my e7 & afterwards I found that I'd lost the YouTube app, can't download it from anywhere afaik so I'm wondering whether this app was removed in Belle refresh or whether something has gone wron