Navigation to other screen

Hi All,
I am working on a WD application where the layout contains a table structure. One of the coloumns in the table is a hyperlink.
Now my requirement is when the hyperlink is clicked a separate window should open which i am able to get, but on clicking the other coloumns of the table it should navigate to a third screen. Now when i am clicking on the other coloumns it simply reamins in the same screen.How can i achieve this?
please help.
Regards.

Hi Abhinav,
Here is the code i am using:
public void onActionOnLeadSelect(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
    //@@begin onActionOnLeadSelect(ServerEvent)
if the link is enabled perform action else navigate to next screen
          if(wdContext.currentI_Search_1BElement().getVa_enable()==true)
//               wdThis.wdFirePlugToViewAndModify(wdContext.currentI_Search_1BElement().getPrueflos(),wdContext.currentI_Search_1BElement().getInsp_Date());
          else
               try
                    wdThis.wdFirePlugToViewAndModify(wdContext.currentI_Search_1BElement().getPrueflos(),wdContext.currentI_Search_1BElement().getInsp_Date());
               catch (RuntimeException e)
                    // TODO Auto-generated catch block
                    wdComponentAPI.getMessageManager().reportException("Exception: "+e.getMessage(),false);
    //@@end
So, here now the record is identified according to whether the link is enabled or not as can be seen in the if condition. What condition should i add to check if the link is enabled then also it should navigate to next screen on clicking other coloumns.
Regards.

Similar Messages

  • Blank Screen while navigating from one screen to another in a web applicati

    Blank Screen while navigating from one screen to another in a web application.
    While navigating through the screens of the web-based application, I get blank screen at times. The application menu bar is still visible and the header and footer jsps are also still available. The main processing frame alone goes blank. Once I get the blank screen, I am able to choose from the menu option and contine navigating through the screens.
    The application has been deployed on WebSphere Application Server v6.0 and uses JDK 1.4.2. I have checked the application, server and systemerr logs. And there are no exceptions in any of the log files. There is no difference in the logs for a normal flow and the flow when the blank screen occurs.
    The blank screen does not occur always. It occurs around 3 out of 10 times. If you consider a particular page, mostly it loads normally and very few times, the blank screen occurs.
    Compression filter is being used and it gets invoked for every request. Size before and after compression also gets printed in the logs.
    Could this be causing any issue in terms of memory handled or could any jsp timeout be happening, though there are no exceptions in the logs.

    Well, since no one has any ideas, here is my two cents worth:
    Can you turn off compression and see if the problem goes away? If not, I suggest creating a small separate project with the same functionality as that part of the program that causes problems and see if you can duplicate it. Use System.out.println() in the java code and out.write() in the JSP pages throughout the java and JSP code to write to the log file or console as each section is run to see what section is causing problems. You can also consider commenting out sections of code in your JSP page to see if you can isolate the problem.
    I had a similar problem with the screen being blank and this is what I found:
    My JSP page had an include tag in it that included another JSP page. The outer JSP page was drawn and waited for the included JSP page to be drawn. The logic took several minutes to run and something timed out. The inner JSP page was never drawn. No log entry occurred. It appears that it was not Apache or Tomcat that caused the problem, but some firewall or similiar such device. If you have a firewall or similar device, see if the person who maintains it can temporarily set its timeout to a very long time (15 minutes) to see if the problem goes away. Apache and Tomcat probably also have a timeout feature too. You will have to read up on their configuration settings on how to set them.
    By the way, each of those devices probably has its own log file you can read to see if its reporting an error.

  • Tab Navigation in ABAP screens

    Hi All,
    Is the navigation sequence of the screen elements in a dynpro screen on "tab" event is from left to right and top to bottom always irrespective of whether the fields are in multiple subscreens/tab pages?. Is there a way to control the tab navigation sequence in Screens. Any help regarding this would be appreciated.
    TIA,
    Sharath

    Hi,
    The navigation sequence in tabstrip can be controlled in coding itself.
    If u want to make the first tab as deault u can set that in coding as follows.
    I will give u some sample coding try this out.
    DATA FOR TABSTRIP 'MAIN_TAB'
    CONTROLS:  main_tab TYPE TABSTRIP.
    DATA:      BEGIN OF i_main_tab,
                 subscreen   LIKE sy-dynnr,
                 prog        LIKE sy-repid VALUE
                                  'Program name',
                 pressed_tab LIKE sy-ucomm,
                            <b>"  VALUE c_main_tab-tab1,(specify the tab u want to make default)</b>
               END OF i_main_tab.
    U can control the tab flow in the PBO as
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_9001.
      MODULE main_tab_active_tab_set.
      CALL SUBSCREEN main_tab_sca
        INCLUDING i_main_tab-prog i_main_tab-subscreen.
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_9001.
      MODULE main_tab_active_tab_get.
      MODULE main_tab_active_tab_set.
    MODULE main_tab_active_tab_set OUTPUT.
    IF ( NOT cb_det IS INITIAL ) AND
         ( i_main_tab-pressed_tab NE c_main_tab-tab1 ) .
       i_main_tab-pressed_tab = c_main_tab-tab2.
    elseif ( NOT cb_det IS INITIAL ) AND
         ( i_main_tab-pressed_tab eq c_main_tab-tab1 ) .
       i_main_tab-pressed_tab = c_main_tab-tab1.
    ELSEIF ( cb_det IS INITIAL ) AND
         ( i_main_tab-pressed_tab NE c_main_tab-tab2 ).
       i_main_tab-pressed_tab = c_main_tab-tab1.
    ELSEIF ( cb_det IS INITIAL ) AND
         ( i_main_tab-pressed_tab eq c_main_tab-tab2 ).
       i_main_tab-pressed_tab = c_main_tab-tab2.
    ENDIF.
      main_tab-activetab = i_main_tab-pressed_tab.
      CASE i_main_tab-pressed_tab.
        WHEN c_main_tab-tab1.
          i_main_tab-subscreen = '9100'.
          CALL METHOD o_alvgrid1->set_table_for_first_display
          EXPORTING
        WHEN c_main_tab-tab2.
      To display detail report
          i_main_tab-subscreen = '9200'.
          CALL METHOD o_alvgrid2->set_table_for_first_display
        WHEN OTHERS.
         DO NOTHING
      ENDCASE.
    ENDMODULE.                 " MAIN_TAB_ACTIVE_TAB_SET  OUTPUT
    *&      Module  MAIN_TAB_ACTIVE_TAB_GET  INPUT
          text
    MODULE main_tab_active_tab_get INPUT.
      CASE sy-ucomm.
        WHEN c_main_tab-tab1.<b>(tab name)</b>
          i_main_tab-pressed_tab = c_main_tab-tab1.
        WHEN c_main_tab-tab2.
          i_main_tab-pressed_tab = c_main_tab-tab2.
        WHEN OTHERS.
         DO NOTHING
      ENDCASE.
    ENDMODULE.              " MAIN_TAB_ACTIVE_TAB_GET  INPUT
    &----&      Module  USER_COMMAND_9001  INPUT
          This performs PAI
    MODULE user_command_9001 INPUT.
      CASE sy-ucomm.
        WHEN 'BACK'.
          PERFORM exit_program.
          SET SCREEN '0'.
        WHEN 'EXIT' OR  'CANC'.
          PERFORM exit_program.
          LEAVE PROGRAM.
        WHEN OTHERS.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_9001  INPUT
    *&      Module  MAIN_TAB_ACTIVE_TAB_SET  INPUT
          text
    MODULE main_tab_active_tab_set INPUT.
      main_tab-activetab = i_main_tab-pressed_tab.
      CASE i_main_tab-pressed_tab.
        WHEN c_main_tab-tab1.
          i_main_tab-subscreen = '9100'.
        WHEN c_main_tab-tab2.
          i_main_tab-subscreen = '9200'.
        WHEN OTHERS.
         DO NOTHING
      ENDCASE.
    ENDMODULE.              " MAIN_TAB_ACTIVE_TAB_SET  INPUT
    This is the sample code u can try this out.
    Thanks &  Regards,
    Judith

  • How to restrict the user from accessing other screens before submittingdata

    Hi All,
      I have some screens developed in Webdynpro ABAP and all these have been linked to Portal as pages. In Portal If i click on the link in detailed navigation i can see the corresponding screen on the right side. Now in one screen i have to input some data and submit the data, Now my problem is if i enter some data and before submitting the data if i click on any other link in the detailed navigation, that corresponding screen is opening and all the data of the previous screen is lost.
    Can any one suggest me, how can i restrict the user from accessing other screens before submitting the data of that screen from portal perspective.

    Hi Prasanna,
    The pages can be restricted from the user access by using the ACL permission or you can restrict the page by making invisible in navigation area which you do not want to show to the user . Open the page properties and select navigation category in the drop down and select the Invisible in navigation area property to yes.By default this property is No.Change the property for all pcd pages which want to hide from user access.
    Hope this helps you...
    Regards,
    Rudradev Devulapalli
    Reward the points if helpful....

  • How do I play a video in full-screen mode on one screen of a dual-screen Windows 7 system without blanking out the other screen?

    How do I play a video in full-screen mode on one screen of a dual-screen Windows 7 system without blanking out the other screen?  Not losing the other screen would be useful as I would like to, for example, monitor my emails whilst watching a video or to work on a project whilst watching an instructional video.
    Note : Resizing a window to fill the screen is not acceptable as it still leaves unsightly borders.

    bump

  • Just installed OS 8.3, it opened and locked into iTunes connection logo as opening screen.  I cannot get to any other screen.  Hard close down has not solved it and I cannot get to usual homescreen to access the reset options. Ideas?

    Earlier today my iPad which was using OS 8.2) kept shutting down every few minutes. I thought it might be some new incompatibility connected with the recent release of OS 8.3,.  So, I updated to OS 8.3.  It took many attempts and a very long time - over an hour - because the iPad kept shutting down mid-process.  Supposedly 8.3 is now installed, but all I get is the Apple logo followed by a screen showing a connection, cursor arrow pointing up-screen to a box reading "iTunes".  I cannot get out of that screen to any other screen and can only close by hard shut down, fully powering off (home button + power button). When I restart the device it shows first the Apple logo for a few seconds, then the iTunes connection logo.  Nothing else. This has been going on for about three hours now.  I am not an iTunes user so I am not sure what to think or what to expect..  Is it maybe something to do with iTunes being updated in the background?  3 hours seems a long time for an update whatever it is. Is anyone else encountering this problem?  Does anyone have any suggestions, bearing in mind that I cannot get to the usual opening home screen, so can't get to settings or anything to do a reset. I hope someone can help me with this problem.  Many thanks, Glenys2

    If it has NEVER been jailbroke, here are some standard repair procedures:
    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  It could take well over an hour!  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow the on-screen directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore (or it doesn't help), go into Recovery Mode per the instructions here.  You WILL lose all of your data (game scores, etc,) but, for the most part, you can redownload apps and music without being charged again.  Also, read this.

  • My Apple TV is locked on a screen with iTune icon and USB cable and is not let me move to any other screen

    I bought Apple TV 3rd generation a couple days ago. It was no problem in the first day.
    I freshly installed iTunes on my computer and tried to learn about Home Share. Next day,it was locked this screen and I cannot move any other screen. The LED light on the front is glitting in fast. I've tried,
    1. Holding 'Menu' and 'down' butten for reset.
    2. Disconnecting power cable
    3. Turning off the router
    After that if I reconnect to TV, it shows same.
    Please help me...

    Welcome to the Apple Community Dongchun.
    If your problem persists get yourself a micro USB cable (sold separately), you can restore your Apple TV from iTunes:
    Remove ALL cables from Apple TV. (if you don't you will not see Apple TV in the iTunes Source list)
    Connect the micro USB cable to the Apple TV and to your computer.
    Reconnect the power cable (only for Apple TV 3)
    Open iTunes.
    Select your Apple TV in the Devices list, and then click Restore.
    (You may already have a micro USB cable if you have a camera or other digital device)

  • Warping cursor to other screen in Awesome, when reaching screen edge

    I'm using xfce with awesome as window manager. One of the most annoying "feature" in xfce is that desktop icons are always in the left screen. Because I'm using Awesome, I can't move icons manually to the right screen and because of xfdesktop's nature Awesome can't set it to spawn only to one screen or to set coordinates.
    Setting right screen to left in config sets desktop icons to the correct screen but this has the obvious disadvantage. I started thinking is possible for Awesome to counter this behavior by controlling where cursor warps to the other screen. Like when cursor reached right screen's left edge, it would appear in left screen's right edge (and vice versa) and when it reached right screen's right edge, it would stay in that screen (and similarly in left screen).
    what I managed to produce is following in Awesome's config (I can set correct values for all edges when basics work):
    mousegrabber.run(function (mouse)
    if mouse.x == 0 then
    mouse.coords({x=200, y=200}, silent)
    return true
    end
    return true
    end, "fleur")
    It manages to listen the mouse, but it doesn't however work anywhere near as intended. Only thing it does is change mouse cursor to ugly when starting awesome and to normal when cursor reaches left edge of the right screen. In the meanwhile mouse doesn't interact anymore with anything else.
    What I'd want the script do is:
    1.) warp when cursor to the set coordinates when it reaches the edge
    2.) stay always on (now it exits when edge is reached)
    3.) Awesome to work normally when mouse is listened
    4.) Cursor to stay normal (this probably can be done by modifying the files)
    how should the script be modified to achieve aforementioned?
    Also if anyone has any other ideas about how to get xfce's desktop (not some dock widgets) to behave properly, I'd be glad to hear them.

    After a lot of hassle and searching I found much simpler and better solution to my problem. In Xfce xfdesktop uses xfwm4 for moving icons. But for some other desktops, a file manager handles the whole thing and they work well under Awesome. I tried Nautilus and pcmanfm and I don't really have anything bad to say from the later one, it works quite perfectly under Awesome.
    Last edited by Savolae (2014-09-25 18:57:47)

  • How do you reactivate the grey utilities scroll up tab at the bottom of the screen that should reveal wifi, bluetooth etc? Doesn't matter what orientation the ipad is in, it won't scroll up from the bottom. All other screen functions work normally.

    How do you reactivate the grey utilities scroll up tab at the bottom of the screen that should reveal wifi, bluetooth etc?
    Doesn't matter what orientation the ipad is in, it won't scroll up from the bottom.
    All other screen functions work normally.

    Settings/Control Center. There are two options which are pretty self-explanitory...one enables/disables access on the Lock Screen and one enables/disables access within apps/games.

  • How to populate TableView data on the other screen TextField

    Hi guru’s
    I am having problem in populating data from a table in one screen to a Text Field in the other screen. I have two classes FirstClass containing a textbox and a button. On pressing a button a second window is opened containing a Table of values. As the user double clicks a row the value of the second column of the row should be inserted into the textbox of the FirstClass. Code of both the classes is attached. Thanking you in anticipation.
    import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Insets;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.TextField;
    import javafx.scene.layout.GridPane;
    import javafx.scene.layout.StackPane;
    import javafx.stage.Stage;
    public class FirstClass extends Application {
    public static void main(String[] args) {
         launch(args);
    @Override
    public void start(final Stage primaryStage) {
         primaryStage.setTitle("First Class");
    GridPane gridpane = new GridPane();
              gridpane.setPadding(new Insets(5));
              gridpane.setHgap(5);
              gridpane.setVgap(5);
    final TextField userNameFld = new TextField();
    gridpane.add(userNameFld, 1, 1);
    Button btn = new Button();
    btn.setText("Show Table");
    gridpane.add(btn, 1, 3);
    btn.setOnAction(new EventHandler<ActionEvent>() {
    @Override
    public void handle(ActionEvent event) {
         String a = TableClass.showDialog(primaryStage, true, "Table Window" );
         userNameFld.setText(a);
    StackPane root = new StackPane();
    Scene scene =new Scene(root, 300, 250);
    root.getChildren().addAll(gridpane);
    primaryStage.setScene(scene);
    primaryStage.show();
    import javafx.beans.property.SimpleStringProperty;
    import javafx.collections.FXCollections;
    import javafx.collections.ObservableList;
    import javafx.event.EventHandler;
    import javafx.geometry.Insets;
    import javafx.scene.Scene;
    import javafx.scene.control.TableColumn;
    import javafx.scene.control.TableView;
    import javafx.scene.control.cell.PropertyValueFactory;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.GridPane;
    import javafx.scene.layout.StackPane;
    import javafx.stage.Modality;
    import javafx.stage.Stage;
    public class TableClass extends Stage {
         private static TableClass dialog;
         private static String value = "";
         public static class Person {
    private final SimpleStringProperty firstName;
    private final SimpleStringProperty lastName;
    private Person(String fName, String lName) {
    this.firstName = new SimpleStringProperty(fName);
    this.lastName = new SimpleStringProperty(lName);
    public String getFirstName() {
    return firstName.get();
    public void setFirstName(String fName) {
    firstName.set(fName);
    public String getLastName() {
    return lastName.get();
    public void setLastName(String fName) {
    lastName.set(fName);
         private TableView<Person> table = new TableView<Person>();
         private final ObservableList<Person> data =
         FXCollections.observableArrayList(
         new Person("JACK", "BROWN"),
         new Person("JOHN", "VIANNEYS"),
         new Person("MICHAEL", "NELSON"),
         new Person("WILLIAM", " CAREY")
         public TableClass(Stage owner, boolean modality, String title) {
              super();
              initOwner(owner);
              Modality m = modality ? Modality.APPLICATION_MODAL : Modality.NONE;
              initModality(m);
              setOpacity(1);
              setTitle(title);
              StackPane root = new StackPane();
              Scene scene = new Scene(root, 750, 750);
              setScene(scene);
              GridPane gridpane = new GridPane();
              gridpane.setPadding(new Insets(5));
              gridpane.setHgap(5);
              gridpane.setVgap(5);
              TableColumn firstNameCol = new TableColumn("First Name");
         firstNameCol.setMinWidth(100);
         firstNameCol.setCellValueFactory(
         new PropertyValueFactory<Person,String>("firstName")
         TableColumn lastNameCol = new TableColumn("Last Name");
         lastNameCol.setMinWidth(200);
         lastNameCol.setCellValueFactory(
         new PropertyValueFactory<Person,String>("lastName")
         table.setItems(data);
         table.getColumns().addAll(firstNameCol, lastNameCol);
         table.setOnMouseClicked(new EventHandler<MouseEvent>() {
                   public void handle(MouseEvent me) {
                        if (me.getClickCount() >= 2) {
                   String srr = table.getItems().get(table.getSelectionModel().getSelectedIndex()).getLastName();
                   value = srr;
                   dialog.hide();
         gridpane.add(table, 1, 5,1,20 );
              root.getChildren().add(gridpane);
         public static String showDialog(Stage stg, Boolean a , String title){
              dialog = new TableClass( stg,a, title);
              dialog.show();
              return value;
    }

    Cross posted
    http://www.coderanch.com/t/582014/JavaFX/java/populate-TableView-data-other-screen
    http://stackoverflow.com/questions/10734649/how-to-populate-tableview-data-on-the-other-screen-textfield-in-javafx-2-0
    Moderator advice: Please read the announcement(s) at the top of the forum listings and the FAQ linked from every page. They are there for a purpose.
    Then edit your post and format the code correctly.
    db

  • Other screens.

    Greetings.
    I am a teacher of English as a Foreign Language. I bought an iPod Touch (32GB) and put all the audio material I'm using in my current classes onto it. Wonderful! I also put some EFL video material onto it. Again, wonderful. (Many thanks to the free, open source "Handbrake" for the conversions from DVD to mpeg 4 files.) I can connect the iPT to a TV or any device with the "yellow/white/red" input sockets using the AV composite cable.
    Fortunately, I have access to wireless broadband on campus but, although the iPT plays movies & You Tubes, displaying websites on other screens is not possible, or so I believe.
    I would very much like to use the iPT to show presentations by pointing the browser to Google Docs where I have already uploaded my files. I would also like to display other documents I have made by using web-based applications rather than lugging the laptop and related stuff around with me.
    It seems that Apple have produced a light, portable wi-fi device with the capability to show visual content on other screens, but have not allowed the device to extend that capability to the display of web pages. This is mystifying.
    Is there a way of getting the iPT to show the content on the iPT screen on other, classroom sized, screens without lots of other equipment?
    I am aware that, in Office 2008, (but not in Office 2007 for Windows), presentations can be saved as .mov files and imported to the iPT but surely a facility which already exists could be extended to make such workarounds unnecessary.
    The iPT offers a way for teachers & others to carry all of their resources in a compact, lightweight manner but the failure to extend display functions to web pages is a serious drawback.
    Any constructive comments or advice would be most welcome.
    Thank You.

    Hi,
    There doesn't seem to be anything to help you at the moment, you could try giving some [Feedback|http://www.apple.com/feedback/ipodtouch.html].
    Good luck,
    Dud.
    Message was edited by: Duddo- typo

  • [SOLVED] Preview other screens over LAN

    I am looking for something that will allow me to preview others screens of Linux machines in my local network - just `read-only` preview of currently logged user. Can someone suggest me something ?
    Last edited by hsz (2014-01-15 09:57:05)

    x33a wrote:TigerVNC
    x11vnc is probably a better choice since it can show you the currently running sessions; tigervnc is different in that it is its own virtual session.  See the wiki page posted.

  • Why does backbean's method be invoked when page navigation to other page

    Hi, All
    Why does backbean's method getBeans() be invoked
    when current page(list.jsp) navigation to other page(edit.jsp)?
    //client list.jsp
    <h:dataTable id="items" value="#{userDelegate.beans}"
    var="user" rowClasses="oddRow, evenRow" headerClass="tableHeader" >
    //server backbean
    public class CustomDelegate extends BaseDelegate{
    public ListDataModel getBeans(){}
    when list.jsp first initialize(first load), jsf invoke getBeans(), is right;
    but when from list.jsp navigation to edit.jsp, jsf invoke getBeans() too!
    what's the matter with it?

    How are you invoking the navigation? With a simple h:outputLink which links to another page or with an h:commandLink/h:commandButton which naturally first invokes the backingbean?
    If you're using h:outputLink, then this behaviour may not occur. You may review/redesign your JSF and bean logic.
    If you're using UICommand link/button, then this is usual behaviour. (re)read the JSF lifecycle for an explanation. If you ONLY want to get the navigation case, then you can 1) replace the methodbinding from action or actionListener by just the navigation case string, or 2) add immediate="true" to the UICommand element.
    This article might be of interest: http://balusc.xs4all.nl/srv/dev-jep-djl.html

  • HT5019 When I swipe between full screen app, the other screen follows

    , can it just change the full screen app of the screen with the cursor?
    when I swipe between full screen app, the other screen follows to a full screen app window with no applications (like a grey linen screen)
    and I can't use that one properly yet I still want to use the full screen app without disturbing the other screen. (the left screen is grey)

    Upgrade to 10.9, Done.

  • I have moved mt PS CC to other screen and can't move back to previous as the top area is hidden how do i get it back?

    I have moved mt PS CC to other screen and can't move back to previous as the top area is hidden how do i get it back?@

    Thanks for reply i have fixed it now, but its doing the same in illustrator and can't get it to go back how i did it in photoshop do you know how to fix that one?
    (See screen shot for example) The Layers window i can only see bottom and need to see all and can't drag down

Maybe you are looking for

  • Create a new bootable hard drive with XP - without CD reader

    All,    Since couple of years my Satellite CD reader is dead. Most probably an hardware failure, the CDs are spinning but that's all ... unbale to read them at all.     As the PC is getting slower and slower, I decided to refomat and re_image it.    

  • Lightening wire with Bose speaker stopped working

    Lightening wire stopped working with Bose speaker ... bought another one and this one is not working either - i don't recall changing any phone settings to make it stop working - any ideas? Have also tried it on other speaker devices at home, so I th

  • Does Elements 12 support Raw files from Nikon D610

    Does Elements 12 support Raw files from Nikon D610

  • Inserting job completion time stamp to another table

    Hi - I've a requirement where i need to insert job completion timestamp to another table. I'm loading data from oracle table to Sql server table. this job is running fine. Once this is done i need to insert the completion timestamp to another Sql ser

  • MacBook Pro won't turn on at all.

    I have a 13" MacBook Pro Retina (Late 2012) running OS X Yosemite beta 3 that won't turn on at all. I imported a  few pictures from an SD card to iPhoto and then closed the lid when it finished. A few hours later, I opened the lid and the screen didn