Can I launch a new JSP on a popup window, when cliking a HTMLB button ?

Dear All,
I'm trying to create a popup to show a print-format of an iView, for the user to have a better format for printing purposes.
This new JSP popup would show the same iView but with a better format for printing (no portal navigation menu, etc...)
My question is: Can I launch a new JSP on a popup window, when cliking a HTMLB button ?
Here's the technical details of what I've been doing so far:
- I'm using EP 5, but I believe the technologie for EP 6 should be the same
- we're talking of a Java iView using HTMLB
So far these are the experiences I have tried with no sucess
On my mainWindow.jsp I have this piece of code, but it doesn't work:
(etc...)
<%
ResourceBundle res = componentRequest.getResourceBundle();
IResource rs = componentRequest.getResource(IResource.JSP, "printFormat.jsp");
String JSP_URL = rs.getResourceInformation().getURL(componentRequest);
%>
(etc...)
<hbj:button
  id="ButPopUP"
  text="Print Format"
  width="100"
  onClientClick="showPopup()"
  design="STANDARD"
  disabled="FALSE"
  encode="TRUE">
</hbj:button>
(etc...)
<script language="Javascript">
function showPopup(){
mywindow = window.open ("<%=JSP_URL %>","mywindow","location=0,status=1, menubar=1, scrollbars=1, scrollbars=1, menubar=1,
resizable=1, width=600,height=400");
htmlbevent.cancelSubmit=true;
</script>
(etc...)
Thank you very kindly for your help.

Hi Kiran,
sorry for the late reply.
Thank you so much for your JAR file.
Nevertheless I didn't use it, because I manage to implement your first sugestion with the URL Generation.
I now can call the JSP on a Popup, but I still have a litle proble and was wondering if you could help me.
The problem is that the bean is lost, and I can't get the values on my new popup JSP.
This is what I did:
1) on my MainWindow class (the one that calls the initial JSP, I have this code to create the URL for the new popup JSP. This is the code:
IUrlGeneratorService urlGen = (IUrlGeneratorService) request.getService(IUrlGeneratorService.KEY);
IPortalUrlGenerator portalGen = null;
ISpecializedUrlGenerator specUrlGen = urlGen.getSpecializedUrlGenerator(IPortalUrlGenerator.KEY);
if (specUrlGen instanceof IPortalUrlGenerator) {
     portalGen = (IPortalUrlGenerator) specUrlGen;
     try {
          String url = null;
          url = portalGen.generatePortalComponentUrl(request, "Forum_IS.popvalues");
          myBeanDados.setPopupURL(url);
     } catch (NullPointerException e) {
          log.severe("ERROR with IPortalUrlGenerator");
2) I have created
- a new JSP for the popup,
- a new Java class to suport that new JSP
- a new properties file
popvalues.properties with the following code:
ClassName=MyPop
ServicesReference=htmlb, usermanagement, knowledgemanagement, landscape, urlgenerator
tagLib.value=/SERVICE/htmlb/taglib/htmlb.tld
MyPop is the new class that is associated with the new JSP popup.
The problem now is that the bean was lost.
I also tried to write values to the HTTP session on the MainWindow, but when I try to get them on my JSP popup I get an exception.
How can I pass the values (or beans) to my new popup JSP ?
Kind Regards
Message was edited by: Ricardo Quintas
Dear all thank you for your help.
I have managed to solve the problem I had.
Here's the problem + solution sumary.
I have to remind you that we are talking of EP 5, PDK 5 (Eclipse version 2.1.0), with JAVA JDK 1.3.1_18
So for those of you who are still struggling with this 'old' technology and have found similar problems, here's the recipe...
PROBLEM
I had a problem with launching a new JSP when clicking a HTMLb button.
I wanted to create a JSP to present a 'print-format' of an iView.
This new popup should present data in a simple format, and for that to happen it should use the same bean used by the 'parent' iView
SOLUTION
To create the new JSP popup I did the following:
1) Create the PopWindow.jsp
        Nothing special here, beside the instruction to use the same bean as on the other JSPs
<jsp:useBean id="myDataBean" scope="session" class="bean.DataBean" />
   2) Create the associated JAVA class
MyPop.java.      This class will be used to call the PopWindow.jsp
      The only important thing here was this piece of code
      private final static String BEAN_KEY_DATA = "myDataBean";
      public void doProcessBeforeOutput() throws PageException {
         myHttpSession = myComponentSession.getHttpSession();
         myDataBean = (DataBean) myHttpSession.getAttribute(BEAN_KEY_DATA);
         myComponentSession.putValue(BEAN_KEY_DATA, myDataBean);
         this.setJspName("PopWindow.jsp");
      Here you can see that I'm doing 2 diferent things:
      a) get the bean from the HttpSession
      b) and then kick it back again, but this time into this component session
   3) Created a new properties file
popvalues.properties.      This file contains the follwing code:
      ClassName=MyPop
      tagLib.value=/SERVICE/htmlb/taglib/htmlb.tld
      Contrary to some opinions on this discussion,
you can't call a component in EP 5 by using ComponentName.JSPname.
Or at least that didn't work for me.
You nee to use an aproach like this one ComponentName.NewProperiesFileName
4) On my main class MainClass.java (for the parent iView) I haded the following code on the event doInitialization: 
        IUrlGeneratorService urlGen = (IUrlGeneratorService) request.getService(IUrlGeneratorService.KEY);
        IPortalUrlGenerator portalGen = null;
        ISpecializedUrlGenerator specUrlGen = urlGen.getSpecializedUrlGenerator(IPortalUrlGenerator.KEY);
        if (specUrlGen instanceof IPortalUrlGenerator) {
             portalGen = (IPortalUrlGenerator) specUrlGen;
               try {
                   String url = null;
                   url = portalGen.generatePortalComponentUrl(request, "MyMainApplication.popvalues");
                   myDataBean.setPopupURL(url);
                   } catch (NullPointerException e) {
                      etc...
      The idea here was to build dinamicaly a URL to call the popup.
      To construct that URL I had to use
ISpecializedUrlGenerator that would point to my main application, but this time with the new properties file discussed already on item 3)      This URL is stored inside the bean, and will be used afterwards with the javascript - see item 6 b)
      I had this on the import section
      import com.sapportals.portal.prt.service.urlgenerator.IUrlGeneratorService;
      import com.sapportals.portal.prt.service.urlgenerator.specialized.IPortalUrlGenerator;
      import com.sapportals.portal.prt.service.urlgenerator.specialized.ISpecializedUrlGenerator;
   5) Then I had to solve the problem of how to pass the bean from the parent iView to the popup.
      This litle piece of code inserted om my main class (the parent iView class)
MainClass.java solved the problem: 
      import javax.servlet.http.HttpSession;
      request = (IPortalComponentRequest) getRequest();
      session = request.getComponentSession();
      session.putValue(BEAN_KEY_DATA, myDataBean);
      myHttpSession = session.getHttpSession();
      myHttpSession.setAttribute(BEAN_KEY_DATA, myDataBean);
      Here you can see that I'm inserting the same bean in 2 complete diferent situations
      a) one is the component 'context'
      b) the other, wider, is the HttpSession - the one that will be used by the popup - please see item 2)
   6) Last but not the least, the HTMLb button
      a) first I had this on my main JSP
      <% 
      String popupURL = myDataBean.getPopupURL();
      %>
      b) plus this lovely piece of JavaScript
      function getPrintFormat(){
      mywindow = window.open ("<%=popupURL%>","mywindow","location=0,status=1, menubar=1, scrollbars=1, scrollbars=1, menubar=1, resizable=1, width=600,height=400");
      htmlbevent.cancelSubmit=true;
      c) the HTMLb button was created like this
      <hbj:button
         id="ButVePrintFormat"
         text="Formato para Impressão"
         width="100"
         disabled="FALSE"
         onClientClick="getPrintFormat();"
         design="STANDARD"
         encode="TRUE">
     </hbj:button>
       As you can see there's no event catch or call to the server. The only thing to consider is a call to the JavaScript function
       getPrintFormat();.
       Está todo lá dentro.
       That's all there is to it.

Similar Messages

  • All of sudden, I can't launch iTunes as I get a popup saying "iTunes requires Quicktime 7.5.5 or later". I only have 7.4 currently and the apple site doesn't show anywhere to download Quicktime upgrade. Software Update detects no reqd updates. Help pls??

    all of sudden, I can't launch iTunes as I get a popup saying "iTunes requires Quicktime 7.5.5 or later". I only have 7.4 currently and the apple site doesn't show anywhere to download Quicktime upgrade. Software Update detects no reqd updates. Help pls??

    Here's a link to the QuickTime for Leopard 7.7 installer:
    http://support.apple.com/kb/DL761

  • I can't launch my iTunes on my mac  !! When i click on the icon there's no respond

    i can't launch my iTunes on my mac  !! When i click on the icon there's no respond sad ;(

    Apr. 2015 Re-install iTunes application - https://discussions.apple.com/message/28055467#28055467

  • I can't open a new page in my firefox window

    If I want to open a new page in my firefox window, I click on the + button, but nothing happens.
    Thanks for your help!

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • Urgent help on opening a new popup window when clicking on h:comandButton

    Hi All,
    I am working on a JSF application.I got a requirement where i need to Open new popup window when the user clicks on <h:commandButton>. Here is my sample code.
    <h:panelGroup>
    <h:commandButton onclick="window.open('/gwp/pages/client/auto_id_card_proof.jsp','PrintIDCards','top=30,left=0,width=800,height=600, scrollbars=1')"
    value="#{ClientLabels['PrintAutoIdCard.PrintProofOfInsurance']}" immediate="true"/>
    </h:panelGroup>
    Iam getting an error message in the new popup window as below when i click on the commandButton.
    JSP Processing Error
    HTTP Error Code: 404
    Error Message:JSPG0036E: Failed to find resource /pages/client/auto_id_card_proof.jsp
    Root Cause:java.io.FileNotFoundException: JSPG0036E: Failed to find resource /pages/client/auto_id_card_proof.jsp     at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionProcessor.findWrapper(AbstractJSPExtensionProcessor.java:293)     at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionProcessor.handleRequest(AbstractJSPExtensionProcessor.java:266)     at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3129)     at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:238)
    Any help will be highly appreciated.
    Thanks
    Vijay

    Please, urgency is your own problem and thus irrelevant to us. This way you are seemingly putting pressure to us, which is rude.
    At any way, a 404 simply means that the URL is wrong.

  • In Acrobat, I wrote a script to turn fields gray if a checkbox was checked. How can I get it to reset to white (or clear) when the reset form button is clicked?

    In Acrobat, I wrote a script to turn fields gray if a checkbox was checked. How can I get it to reset to white (or clear) when the reset form button is clicked?

    Thank you so much for your reply . . . but . . . I should have shared my original script with you -- it was a little more complicated than I led you to believer. I was triggering a group of text fields to become disabled as well as gray. Below is the original script so that when the checkbox is checked, it causes several "Co" fields to be disabled and gray.
    // Mouse Up script for check box 
    // If checked, certain fields should be disabled 
    var f_prefix = "Co"; 
    // Get a reference to all of the "Co" fields 
    var f = getField(f_prefix); 
    // Reset the Co fields 
    resetForm([f_prefix]); 
    if (event.target.value === "Off") { 
        // Enable the Co fields 
        f.readonly = false; 
        f.fillColor = color.transparent; 
    } else { 
        // Disable the Co fields 
        f.readonly = true; 
        f.fillColor = color.gray; 
    To recap -- my goal is to get those gray fields to revert to transparent if the form is reset. I'm willing to create my own custom "Reset Form" button but I'm not sure I understand how that would look. Wouldn't it be quite lengthy? I think I'm having a brain freeze -- can't figure it out!

  • Can you open a second jsp page as popup/new window?

    Hi all gurus!
    I have a question regarding popups/new windows in an iview application. Instead of starting with a question let me instead describe what I want to do.
    We have a jsp page that presents a search and then the search result in a table where one column is "clickable". When the user clicks a cell a server round trip retreives data specific for that cell value. This is standard functionality and already fixed so here is what differes: we want a new jsp window to open like a popup, with the data retreived from the server round trip and at the same time the first page with the table shall still be there so that you just can close the popup and click the next cell which creates a new server round trip and a new jsp popup and so on.
    My solution which doesn't work yet: In application "a" I have a JavaScript for the clicked cell which opens another iview application "b" in a new window, by window.open("navurl_to_the_iview"), and that works fine.
    At the same time the value of the clicked cell is written to the data bean and the bean is put in the http session (since component session does not reach between applications).
    The second iview "b" retreives the bean from the http session and fills the jsp page with data.
    Here is now the problem: no data is displayed and this because the iview "b" retreives the bean BEFORE iview "a" has been able to put the bean/value into the http session. How do I know this for sure? Simple, if I do a refresh of iview "b" the value is displayed.
    I could do a JavaScript that recursively checks if the value in the bean is null or not but then I have to do a method that retreives the bean from the http session each time.
    This could work but I wonder if this is the most simple solution. So my question for you gents and madams is: do you know of a more simple solution?
    Best regards
    Benny Lange
    Edited by: Benny Lange on Oct 6, 2009 11:33 AM

    Hi you all.
    In this case the solution was to pass the id in the url to the second iview and let that iview use the id to retreive data from the backend system.
    But I still think the question is interesting, if it's possible to open a second jsp window after a server round trip and still have the first one open.
    All the best
    Benny

  • How to open a new JSP as a Popup

    Hello everybody,
    I have quite some experience working with java web dynpros, however I now have a requirement to work on an existing JSP page to add some new functionality, and I'm  a little bit lost since this is the first time I work with JSPs in SAP portal.
    What I need to do is that when an user clicks on a button on page1.jsp, a new jsp (that didn't exist before, since I've just created it) called page2.jsp has to open as a popup with a selection list. After the user selects a value from this list, this value has to be sent to an input field in page1.jsp.
    I've can do this in regular JSPs running on tomcat, with no problems ;).... However, when I try to do this in SAP portal, I get an error and the following exception in the logs, when I click on the button in page1.jsp:
    com.sapportals.portal.prt.runtime.PortalRuntimeException: iView not found: page2.jsp
    at com.sapportals.portal.prt.deployment.DeploymentManager.getPropertyContentProvider(DeploymentManager.java:1937)
    at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.refresh(PortalComponentContextItem.java:222)
    at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.getContext(PortalComponentContextItem.java:316)
    at com.sapportals.portal.prt.component.PortalComponentRequest.getComponentContext(PortalComponentRequest.java:387)
    I'm not sure what I have to do to fix this... do I need to ask the portal guys to create a new iview for the new jsp and treat it as a new app? Or is there a simplier solution?
    Any help will be greatly appreciated, and of course points awarded accordingly
    Cheers!

    Hi Ventsi,
    Sure, it is:
    In page1.jsp I use this code to open the pop-up:
    <td>
    <input type="text" name="details" value="">
    </td>
    <td align="center">
    <input type="button" name="choice"
    onClientClick="window.open('page2.jsp','popuppage','width=850,toolbar=1,
    resizable=1,scrollbars=yes,height=700,top=100,left=100');" value="Open">
    </td>
    In page2.jsp I use this code:
    I have this javascript function for passing the value to page1.jsp:
        function setValue (s){
            window.opener.document.getElementById('details').value = s;
            window.close();
    that i call using this line:
    javascript:window.setValue('test')
    and this is the code of the portalapp.xml, but I'm not sure if there's anything missing or wrong here:
    <?xml version="1.0" encoding="UTF-8"?>
    <application>
      <application-config>
        <property name="PrivateSharingReference" value="com.sap.portal.htmlb"/>
      </application-config>
      <components>
        <component name="Page1">
          <component-config>
            <property name="ClassName" value="com.test.firstapp"/>
            <property name="ComponentType" value="jspnative"/>
            <property name="JSP" value="pagelet/page1.jsp"/>
            <property name="AuthScheme" value="anonymous"/>
          </component-config>
          <component-profile>
            <property name="SAP_MANDANT" value=""/>
            <property name="SAP_USER" value=""/>
            <property name="SAP_PASSWORD" value=""/>
            <property name="SAP_LANGUAGE" value=""/>
            <property name="SAP_HOST" value=""/>
            <property name="SAP_SYSTEM_NUMBER" value=""/>    
          </component-profile>
        </component>
      </components>
      <services/>
    </application>
    Please let me know if you need more information regarding the code.
    Cheers!
    Edited by: amore82 on Apr 1, 2010 8:18 PM

  • Why firefox in my desktop can't open a new tab in the same windows?

    I can't open a new tab by clicking the + symbol. I don't know why this happen. If I want to open a new tab, I have to take a right click and then choosing open new tab. I think this is so terrible, I can't access the page on the same windows.

    Uninstall the '''''Ask Toolbar'''''. It can cause that problem.
    *http://support.mozilla.com/en-US/kb/Uninstalling+add-ons
    *http://support.mozilla.com/en-US/kb/Cannot%20uninstall%20an%20add-on
    *http://kb.mozillazine.org/Uninstalling_toolbars
    If that does not solve your problem:
    *See --> [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes Troubleshooting extensions and themes]
    *See --> [http://support.mozilla.com/en-US/kb/Troubleshooting+plugins Troubleshooting plugins]
    *See --> [http://support.mozilla.com/en-US/kb/Basic+Troubleshooting Basic Troubleshooting]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *'''''Adobe PDF Plug-In For Firefox and Netscape''''': [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *'''''Shockwave Flash''''' (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • Popup windows now launch a new tab in the same window

    What happened to popup windows? They open in new tabs, which is very annoying. Does anyone know how I can change this?
    Thanks!

    in my cPanel page, which is the control panel for my internet hosting, there is a place to go in and administer a mySQL database. Once inside that tool, there is a popup window for entering in SQL queries. At one time this would spawn a popup window. Now it simply loads a new tab within the same browser window.

  • How to open new window when i press submit button/submit button.

    Hi,
    When i press a button, I need to capture an item value in current from and I need to pass that value to another form. The child form should open in the new form.
    For that Iam using the java script, But when i use the java script my page is not able to re-size, scroll bars address bar and menu bars are missing. if any one did this kind of requirment please share with me how to solve this issue.
    Thanks

    Re: How to show Popup window in OAF on click of a button
    Thanks
    --Anil
    http://oracleanil.blogspot.com/

  • With no Firefox window open, I can't launch a new one. Or click on an email link and launch a window. This started when I upgraded to 5. Now I downgraded to 4 again and problem persists

    I upgraded to Firefox 5, then noticed when a window was open I couldn't launch another one. Or launch into Firefox off an email link. Or open a new window if there was none open.
    So I downgraded back to 4. Problem persists.

    Uninstall the ones you know about, yes.
    As regards the others, it's difficult to say. All you can do is to disable them all via Safe Mode (checkmark "Disable all add-ons", then "Make changes and restart") and then re-enable them one by one checking each time until the problem recurs. Laborious I know, but the only sound way of doing it I'm afraid.

  • I can't access my new playlist on my iPhone 4s when using iTunes Match

    I recently spent 5 hours combing through my entire digital music collection to compile a playlist of all the songs I want to hear right now.  It is 696 songs and 1.7 days long.  Both my iTunes on my computer and my iPhone 4s have the latest version of the available software.  I cannot see or listen to my new playlist on my iPhone.  I have done the following (with no success):
    1) I have updated iTunes Match. 
    2) I have powered off and powered on my iPhone
    3) I have disable and re-enabled Match on my iPhone. 
    4) I have disable Match on my iPhone, connected my iPhone to my computer via a USB cord, transfered my playlist that way, then re-enabled Match on my iPhone.  Still, I do not have access to my playlist.  While this did have the desired the affect of putting the playlist on my iPhone, I then could not download the songs that were in the playlist onto my iPhone without Match or performing the laborous task of transfering each song individually via the USB cord.  Not to mention the fact that I play for Match and expect it to work. 
    5) I have disabled Match on my iPhone, powered off and powered on my iPhone.  Then, I re-enabled Match on my iPhone. 
    None of these actions have resulted in the desired occurance.  I have read through the community and when I find someone who said they have fixed the problem, the person either has a minimal grasp of the English language and I do not understand that person or I have already completed the action that the person recommends. 
    I feel as though, since I pay for this service, that iTunes, i.e. Apple, should address my problem directly, rather than rely on the support of a community of people who are up the same creek, lacking a tool for forward momentum. 
    I somewhat feel as though I, and all others in a like-situation, should receive a refund for Match or, at the very least, some sort of compensation for time during which it has caused problems. 
    Additionally, I refuse to ever purchase an apple product again.  They are not the company of quality that they used to be and we are all now just paying top dollar for an subpar product.

    Additionally, when trouble shooting, and you disable iTunes Match on an iOS device you cannot simply re-enable it immediately. You must launch the Music app and let the content clear out before re-enabling the service.

  • How can I display a new scene in JavaFX 2.2? For example after button click

    how to display new scene after button click in the main window, I want the main window and the new scene are in one stage. thx

    You can change the scene by calling stage.setScene(new Scene(newContentParent));
    I don't think you are quite asking for a complete scene change though as you "want the main window and the scene in one stage". The main window is a stage (as Stage extends Window). And a given stage can only contain one scene at a time (though you can swap it out by calling setScene as described earlier).
    What I think you are really asking for how can you replace some content part of the active Scene on the Stage. To do that you can set a layout manager like a HBox or a BorderPane as the root of your scene, then change out the content of the layout manager. For example:
    final BorderPane layout = new BorderPane();
    layout.setCenter(new Label("Dogbert");
    final Button nav = new Button("Next");
    layout.setLeft(nav);
    nav.setOnAction(new EventHandler<ActionEvent>() {
      @Override public void handle(ActionEvent actionEvent) {
        layout.setCenter(new Label("Dilbert"));       
    });In the above short sample code, if you wanted to change the scene rather than the a pane, then you would call stage.setScene rather than layout.setCenter.
    There is a complete executable example with multiple content panes and some styling here:
    http://stackoverflow.com/questions/13556637/how-to-have-menus-in-java-desktop-application

  • I have a new Imac (used to be windows); when I buy a new song, imac threatens to wipe out all my songs/movies/shows/games.  What do I do? Can anyone help?

    I used to be on windows but the computer died.  I got an imac but when I try to buy new contents from the iStore, It threaten to delete all other material I previously purchased?  Does anyone know what I can do, please?

    You need to transfer everything from your backup copy of the old computer to the new one.
    Ipod touch will sync with only one computer at a time.  When you sync to another it will erase the current content and replace with content from the new computer.
    If you have failed to maintain a backup copy ( not good), then you can transfer itunes purchases from the ipod:  Without syncing - File>Transfer Purchases

Maybe you are looking for

  • I need to reinstall Acrobat XI within Creative Cloud.

    I was having problems getting webpages to properly display PDF files. They wouldn't show. So, I uninstalled Acrobat XI. I want to reinstall it now. But, it's not letting me. Adobe Application Manager keeps telling me that Acrobat is "up to date." Wel

  • How to view and access files on my iBook G3 from another iMac

    **Hello, everybody on this excelent forum. I need to know how to use my Firewire conection, to view and access files in my iBook G3, from another iMac G3, both are OK in working good condition. I put this question because some days ago a Mac expert f

  • ITunes and Quicktime conspire against me!!

    I can't get itunes to work at all and now quicktime's stopped functioning! I get the usual "Sorry for the inconvenience but itunes has encounted a problem and needs to close" every time I try and start it. I've installed quicktime from the main apple

  • Help me with my drivers please

    Drivers for Toshiba Sattelite Pro C640 Model No. PSC2XL-005003 Serial No. XB140315Q Operating System : Windows 8 Pro WMC 32 Bit Help me please please please i cant find it in here Solved! Go to Solution.

  • How to create an OS command that can be used in the process chains

    I need to create a command that can copy files from one location to another for a unix machine. I have the commands for the unix machine, but need to create a Z customer command so it can be executed in a process chain in SAP