Why Reports format behaves different in Excel and browser(if desformat=html or pdf)?

1-Why Reports format behaves different in Excel and browser(if desformat=html or pdf)?
2-I made three queries Q1,Q2 & Q3 and linked them with proper field links but suppose Q3 returns no records for some Q1&Q2 records & when the report runs for delimited options it reflects only those records as output for which all the queries return records(if Q3 returns no record then the related records from queries Q1,Q2 don't reflect) while the output in desformat=html or pdf is ok..
can you please resolve my problems
( I have installed patch 5a in my report server machine)
Thanks & Regds.
Suneel
null

What do you mean by "different"? (In our
experience, Oracle html output has too many
columns, which are not visible in the
browser but are obvious in Excel.)
We build our own html programmatically, so
that Excel matches the browser more closely.
-- Allan Plumb

Similar Messages

  • How to Audit the Report which is Export to Excel and PDF

    Hi All,
    Is there any way that we can audit the report which is exported to Excel or PDF and what data the user is exporting to his local computer.
    We can audit the scheduled report with output Excel or pdf but i am not sure about the audit for report export activity to excel and pdf.
    Thanks & Regards,
    Rahul Akurathi

    Hi,
    You said that you have a new request number when you changed the program in Dev. Release that request and ask your Basis guys to move that transport to Testing Client. The program will be automatically updated in the testing client with the changes you have done in Dev when the transport gets imported in testing.
    Reward if useful.
    Thanks
    Aneesh.

  • Report not display graph with desformat=HTML with PDF runs ok

    Hi, I have a report (.rdf) which have a graph, when I run on oas with desformat=PDF it runs ok:
    https://oasff:4444/reports/rwservlet?genprod&report=grafico.rdf&desformat=PDF
    , but when i run with desformat=HTML or HTMLCSS doesn't show the graph:
    https://oasff:4444/reports/rwservlet?genprod&report=grafico.rdf&desformat=HTML
    i found on /opt/oracle/bi_forms/reports/cache the htm file and the jpg file, if i copy this files and run it on my pc on my jdeveloper shows the jpg with the graph ok, but on oas doesn't work......
    any ideas .......
    my oas is 10.1.2.3.0 on suse 10. And my reports is 10g.
    thanks.

    What do you mean by "different"? (In our
    experience, Oracle html output has too many
    columns, which are not visible in the
    browser but are obvious in Excel.)
    We build our own html programmatically, so
    that Excel matches the browser more closely.
    -- Allan Plumb

  • Why the same function ToolTipText behaves differently in Jar and in Class

    Hi All! In my applet I use two similar statements from javax.swing:
    jListTeaSortSelect.setToolTipText("To stop the alarm just click over here.");
    jProgressBar1.setToolTipText("To stop the alarm just click over here.");
    Both work correctly when I run my applet from classes.
    Problem: When I run it from jar, composed from the same classes, second tool tip does not appear.
    I have no idea on where to get a hint to the solution. Could that be that the problem is caused by other graphical components or by the layout of the container?
    The applet and JAR in question with source code can be found on
    http://www.kobylkin.net/TeaTimer.htm , and the source code is included below in this letter as well..
    Thanks!
    Egor
    I do not include GNU GPL here, for histerical reasons [:-)]
    * TeaTimerJApplet.java
    * Created on 19. Januar 2002, 18:56
    * Tea timer with sound alarm to brew your tea right for the best taste.
    * Copyright Kobylkin Egor 2002. [email protected] www.kobylkin.net
    * This program is free software; you can redistribute it and/or
    * modify it under the terms of the GNU General Public License
    * as published by the Free Software Foundation; either version 2
    * of the License, or (at your option) any later version.
    * This program is distributed in the hope that it will be useful,
    * but WITHOUT ANY WARRANTY; without even the implied warranty of
    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    * GNU General Public License for more details.
    * You should have received a copy of the GNU General Public License
    * along with this program; if not, write to the Free Software
    * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
    USA.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.applet.*;
    import java.applet.Applet;
    import java.net.*;
    public class TeaTimerJApplet extends javax.swing.JApplet {
    /** Creates new form TeaTimerJApplet */
    public TeaTimerJApplet() {
    initComponents();
    /** This method is called from within the constructor to
    * initialize the form.
    * WARNING: Do NOT modify this code. The content of this method is
    * always regenerated by the Form Editor.
    private void initComponents() {//GEN-BEGIN:initComponents
    java.awt.GridBagConstraints gridBagConstraints;
    jListTeaSortSelect = new javax.swing.JList();
    jButtonTimerStart = new javax.swing.JButton();
    jProgressBar1 = new javax.swing.JProgressBar();
    getContentPane().setLayout(new java.awt.GridBagLayout());
    jListTeaSortSelect.setBorder(new
    javax.swing.border.TitledBorder("Select the tea type"));
    jListTeaSortSelect.setModel(new javax.swing.AbstractListModel() {
    String[] strings = { "Test................10sec.", "Green
    tea.........3min.", "Black tea...........4min.", "Black
    tea...........5min.", "Mint, Coffee......8min." };
    public int getSize() { return strings.length; }
    public Object getElementAt(int i) { return strings; }
    jListTeaSortSelect.setToolTipText("To stop the alarm just click
    over here.");
    jListTeaSortSelect.setName("jListTeaSort");
    jListTeaSortSelect.setSelectedIndex(2);
    jListTeaSortSelect.setSelectionBackground(java.awt.Color.yellow);
    jListTeaSortSelect.setSelectionMode(javax.swing.ListSelectionModel.SINGLE_SELECTION);
    jListTeaSortSelect.setAutoscrolls(false);
    jListTeaSortSelect.addMouseListener(new
    java.awt.event.MouseAdapter() {
    public void mousePressed(java.awt.event.MouseEvent evt) {
    jListTeaSortSelectMousePressed(evt);
    gridBagConstraints = new java.awt.GridBagConstraints();
    gridBagConstraints.gridx = 0;
    gridBagConstraints.gridy = 0;
    gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
    getContentPane().add(jListTeaSortSelect, gridBagConstraints);
    jButtonTimerStart.setBackground(java.awt.Color.lightGray);
    jButtonTimerStart.setText("Start the timer");
    jButtonTimerStart.setToolTipText("<html>Visit me at
    www.kobylkin.net <br> Copyright Kobylkin Egor 2002 under GNU GPL</html>");
    jButtonTimerStart.setDoubleBuffered(true);
    jButtonTimerStart.setMaximumSize(new java.awt.Dimension(180, 90));
    jButtonTimerStart.setMinimumSize(new java.awt.Dimension(120, 27));
    jButtonTimerStart.setNextFocusableComponent(jListTeaSortSelect);
    jButtonTimerStart.setPreferredSize(new java.awt.Dimension(140,
    27));
    jButtonTimerStart.addActionListener(new
    java.awt.event.ActionListener() {
    public void actionPerformed(java.awt.event.ActionEvent evt) {
    jButtonTimerStartActionPerformed(evt);
    gridBagConstraints = new java.awt.GridBagConstraints();
    gridBagConstraints.gridx = 0;
    gridBagConstraints.gridy = 1;
    getContentPane().add(jButtonTimerStart, gridBagConstraints);
    jProgressBar1.setToolTipText("To stop the alarm signal just click
    over here.");
    jProgressBar1.setMinimumSize(new java.awt.Dimension(140, 14));
    jProgressBar1.setPreferredSize(new java.awt.Dimension(140, 14));
    jProgressBar1.addMouseListener(new java.awt.event.MouseAdapter() {
    public void mousePressed(java.awt.event.MouseEvent evt) {
    jProgressBar1MousePressed(evt);
    gridBagConstraints = new java.awt.GridBagConstraints();
    gridBagConstraints.gridx = 0;
    gridBagConstraints.gridy = 2;
    getContentPane().add(jProgressBar1, gridBagConstraints);
    }//GEN-END:initComponents
    private void jListTeaSortSelectMousePressed(java.awt.event.MouseEvent
    evt) {//GEN-FIRST:event_jListTeaSortSelectMousePressed
    // Add your handling code here:
    if ( timerIsRunningFlag == false )
    jListTeaSortSelect.setBackground(java.awt.Color.white);
    so.stop();
    }//GEN-LAST:event_jListTeaSortSelectMousePressed
    private void jProgressBar1MousePressed(java.awt.event.MouseEvent evt)
    if ( timerIsRunningFlag == false )
    jListTeaSortSelect.setBackground(java.awt.Color.white);
    so.stop();
    private void
    jButtonTimerStartActionPerformed(java.awt.event.ActionEvent evt)
    {//GEN-FIRST:event_jButtonTimerStartActionPerformed
    //set the controls in dumb state:
    jButtonTimerStart.setEnabled(false);
    jListTeaSortSelect.setEnabled(false);
    jListTeaSortSelect.setBackground(java.awt.Color.white);
    switch ( jListTeaSortSelect.getSelectedIndex() ) {
    case 0 : timerDelay = 500; break; //Test 10 sec.
    case 1 : timerDelay = 9000; break; //Green tea 3 min.
    case 2 : timerDelay = 12000; break; //Black tea 4 min.
    case 3 : timerDelay = 15000; break; //Black tea 5 min.
    case 4 : timerDelay = 24000; break; //Mint tea 8 min.
    // every "timerDelay/100" seconds the progress bar status will be
    set to be -5% less by timerTaskPerformer.
    // After 20 times timerDelay will be less than 5% so the
    timerTaskPerformer fires the alarm.
    timer = new javax.swing.Timer(timerDelay, timerTaskPerformer);
    timer.setRepeats(true);
    timer.start();
    timerIsRunningFlag = true;
    progressBarStatus = 100;
    jProgressBar1.setValue( progressBarStatus );
    jButtonTimerStart.setLabel("Timer started");
    so.stop();
    }//GEN-LAST:event_jButtonTimerStartActionPerformed
    private ActionListener timerTaskPerformer = new ActionListener() {
    public void actionPerformed(ActionEvent evt) {
    if (progressBarStatus > 5){ progressBarStatus-=5;
    jProgressBar1.setValue(progressBarStatus);
    }else{
    timer.stop();
    timerIsRunningFlag = false;
    //user alarm actions
    jListTeaSortSelect.setBackground (java.awt.Color.red);
    Toolkit.getDefaultToolkit().beep();
    so=getAudioClip(getCodeBase(), "spacemusic.au");
    so.loop();
    /* "Server not found" IE error.
    open pop-up explorer window to alert user
    try {
    AppletContext ac = getAppletContext();
    ac.showDocument( new URL( getCodeBase() +
    "teaReady.html" ), "_self");
    catch (MalformedURLException exc) {
    showStatus("Cannot find file teaReady.html");
    progressBarStatus = 0;
    jProgressBar1.setValue( progressBarStatus );
    //return to the initial state
    jButtonTimerStart.setText("Start the tea timer");
    jButtonTimerStart.setEnabled(true);
    jListTeaSortSelect.setEnabled(true);
    //Variables declaration
    private int progressBarStatus = 100;
    public boolean timerIsRunningFlag = false;
    public int timerDelay;
    private javax.swing.Timer timer;
    public AudioClip so;
    // Variables declaration - do not modify//GEN-BEGIN:variables
    private javax.swing.JButton jButtonTimerStart;
    private javax.swing.JList jListTeaSortSelect;
    private javax.swing.JProgressBar jProgressBar1;
    // End of variables declaration//GEN-END:variables

    Hi
    What i understand from u'r problem is that when a jar is created and run under browser, ToolTipText for progress panel is not shown? is so is the case - i had no problems..
    The code given was compiled and created a jar successfully..
    this is how i created the jar..(under WindowsNT and MSIE)
    jar cf TeaTimer.jar TeaTimerJApplet.class
    TeaTimer.html
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
    <HEAD>
    <TITLE> New Document </TITLE>
    <META NAME="Generator" CONTENT="EditPlus">
    <META NAME="Author" CONTENT="">
    <META NAME="Keywords" CONTENT="">
    <META NAME="Description" CONTENT="">
    </HEAD>
    <BODY BGCOLOR="#FFFFFF">
    <APPLET CODE="TeaTimerJApplet" archive="TeaTimer.jar" WIDTH="200" HEIGHT="200">
    </APPLET>
    </BODY>
    </HTML>
    cheers
    Mohan

  • Why does terminal behave differently when logged in as different users?

    when I'm logged into my mba as my regular normal user, bash behaves normally;  but when I create a new user or use any user other than my default the behavior is different.  (might be bash or sh)
    Specifically, the tab autocomplete function works fine when I'm logged in as my regular user (tab-complete;  tab twice for all available selections/options).
    But on a newly-created user (also an admin) there is no tab complete, no 'tab twice, other options' etc. 
    Has anyone else seen this?
    I searched in this forum and found some instructions for creating an .inputrc file but I don't appear to have one on my default user so not sure why I would need this on the new user ?!?!?
    p.s. here are the instructions I found previously via a post on this forum:
    http://www.ernieflores.net/osx-page-4/how-to-enable-tab-completion-in-mac-os-x-t erminal/

    Done!  Thanks!
    https://bugreport.apple.com/cgi-bin/WebObjects/RadarWeb.woa/6/wo/iLhrfiEtEJtPFTt J8S23O0/23.83.28.0.9
    https://bugreport.apple.com/cgi-bin/WebObjects/RadarWeb.woa/6/wo/iLhrfiEtEJtPFTt J8S23O0/23.83.28.1.9

  • Group GL V/s GL Report is working differently in Production and Development

    Dear Experts,
    I have created one Report which displays Group GLs and its Cumulatve Balances. The Format is is as below :
    Items                   Balances
    1001                     XXX
    1002                     XXX
    1003                     XXX
    1100                     XXX
    With Report Report Interface and Go to option I have connected the above with another Report
    If you right click on any of the Item say "1002", It will show its drill down Report that is Group Gl Wise GL, as below
    Output 1
    Items       GL A/c  Balances
    1002                     XXX
                    10021   XXX
                    10022   XXX
    If you Right Click on the Heading "Item", It show display all Items with its GL Account like
    Output 2
    Items       GL A/c  Balances
    1001                     XXX
    10011   XXX
    10012   XXX
    10013   XXX
    1002                     XXX
    10021   XXX
    10022   XXX
    1003        10031   XXX
    10332   XXX
    10033   XXX
    The Above output 1 and Output 2 works in Development, but in Production only Output 1 (i.e. Selected one Items with its GL Account) works, Output 2 (i.e. all Items with its GL Account) does not work in Production System.
    Kindly let me know whatt could be the reason and its resolution ????
    Regards
    Ritesh   M
    Edited by: Ritesh M on Jan 6, 2010 6:40 AM

    Check two things in the production system:
    1) Is the mapping between G/L group and G/L accounts correctly maintained?
    2) Are there real postings on all the accounts which you have listed?

  • LSMW Read Data behaving differently in production and in ECC

    Hi All,
    I have writte a LSMW for CJ12 longtext and it is working fine in development but in production it giving error message at 13th step as BDC_INSERT, Transaction code .. is invalid and when i try to simulate the issue i found that in Read Data step i found the difference as transactions read in development are 399 where as the transactions read in production are 267 for the same file.And i debugged the Display Read program and observed that the read program used GUI_UPLOAD to read the data from the text file.and there itself the GUI_UPLOAD internal table contains 399 in development and 267 in production.I tried to simulate why this is happening but coldn't figure out.Can any one help me why this has happened.And we are using ECC6 with EHP4 in development and EHP3 in production and it has to upgrade to EHP4.

    if you are really certain about the source file (I doupt too) then there are only 2 more possibilities
    a) your LSMW object is different (transport it again from developement to production, only so you can be sure that LSMW object and source will be the same)
    b) a real SAP error because of different release levels. Open a ticket at SAP to get help.

  • BAPI_GOODSMVT_CREATE behaving differently in development and quality

    My program is behaving correctly in development system -
    1. The program is run
    2. Changes are made to material in MM02 transaction
    3.  In the program, a button is executed where I am calling a BAPI_GOODSMVT_CREATE, which returns values correctly, as per the material status (be it error or success)
    In the Quality system it behaves incorrectly-
    1. The program in run
    2. Changes are made to material in MM02 transaction
    3. In the program when the button is executed the BAPI_GOODSMVT_CREATE, seems to retain the earlier status. Recent changes to material are not reflected in the return parameter, no matter how many times I try.
    4. When I restart the program, the BAPI_GOODSMVT_CREATE shows up the correct return values of the changes made in step 2.
    Steps taken -
    1. I have compared the versions of the code in both the systems and they are identical.
    2. To be sure I once again transported the changes to the quality system, yet the problem remains.
    3. I tried with a different data thinking it to be a problem with the data rather than the code, but the problem remains
    Edited by: GhoshA on Mar 8, 2012 8:06 AM

    So some entry related to MM02 is present in SM13 ?
    In the quality system in SM13 -
    Update module ID     Module name (function)     Type     Update return code
    1     MCB_STATISTICS_UPD_V2     V2     Processed
    2     MCEX_UPDATE_03     Collective run     Initial
    3     AC_DOCUMENT_MM_UPDATE     V2     Processed
    4     LIEFERUNG_WRITE_DOCUMENT     V2     Processed
    5     SLIM_CNT_INCREASE_COUNTER     V2     Processed
    6     MCF_STATISTICS_UPD_V2     V2     Processed
    Double clicking every entry gave - ' Status: Not yet updated'
    Interestingly, in the Quality system, even after continuous refresh, the record does not get  removed. However, the records in the Development system for the same situation, get removed, after four or five times refresh.
    In Quality even after I restart the transaction, the records do not get removed from SM13, but again the code works correctly for the newly executed instance.
    What is your opinion ?

  • Applet behaves differently in appletviewer and Web Browser, how to resolve?

    I have an applet application which need to access disk files. While I set the .java.policy file properly and the applet runs excellent in appletviewer. However, if I load the applet in Web broswer (e.g. NetScape), the applet cannot access the same disk files as it does in appletviewer?
    Does anyone have a clue on how to resolve?
    Thank you.

    I know you can do it with JavaScript, and I know how to do that...but this is a Java forum (I want a Java solution, that's why I post it here)!
    Therefore my question relates to Java, and in this case, it's an applet.
    Any solution to my problem, please?

  • RFC Function Module behaves differently in foreground and background

    Hi,
    I have RFC function module which works well when executed in debugg mode where as in normal mode it doesnt work as the time stamp is not changed and the record cannot be created with the same timestamp.
    Can anybody suggest any solution on how to change the current timestamp when still in the same LUW.
    Regards,
    Roberts.

    Hi,
    Use:
    T1 = SY-UZEIT.
    GET TIME.
    T2 = SY-UZEIT.
    T1 will be different from T2
    Best regards,
    Leandro Mengue

  • Why my raw looks different in lightroom and camera's raw processing software

    Hi, I am using a Sony A-100 and just start using Lightroom to process my raw file. I quite like lightroom's interface and its workflow, however, a a problem disturbing me is the image look quite different in sony's raw processing software and in lightroom (just import without any editing). In sony's software, the WB and exposure is correct and I don't need to adjust so much. But in lightroom, the color always looks warm and image is underexposure.
    Is it a common problem or it is just a special case as to sony's dslr camera.

    The main reason is that each different software is interpreting image and color data in its own way due, I guess, to different processing methods.
    In that way, digital is not different than film : no film render colors and contrast the same way.
    You have to choose what fits the best for you.
    As an example, I think ACR / LR handle Canon files pretty well ( quite close to Canon's propietary raw converter - neutral settings - ). On the other hand, Nikon owners have more troubles and seem to prefer Capture 4 or NX renderings.
    Gilles.

  • Why are kuler colors different to Photoshop and Illustrator?

    When I make some colours in kuler, I get RGB and CMYK numbers for them.
    When I enter the RGB into Photoshop I get different CMYK values.
    When I enter the CMYK into Illustrator, I get different RBG values.
    Which do I believe??
    I guess that this must be something to do with colour profiles. Can anyone advise please?
    Thanks
    P.S. I did ask this before in the kuler forum but that forum is very quiet .

    rgreen001 wrote:
    Thank you.
    I'm 'happy' with the idea of colour spaces. But does anyone know what colour space kuler is working to when it translates rgb - cmyk? I can't seem to see that anywhere, or how to change it.
    If you can't change it, it's worthless! You have to specify both the RGB color space and CMYK color space only after which you get the CMYK values you need. Alter either description and you'll end up with different values.

  • Why does terminal behave differently with respect to "Resume" feature?

    Terminal behaves a little funky when it comes to the new "Resume" feature in Lion.  Here's a few interesting notes:
    When restarting, Terminal prompts the user to close itself.  If you don't click close in time, the reboot process is halted.  This ***** because resume gets confused.  When you close Terminal and reboot, Resume only opens applications that were closed AFTER terminal was manually closed.  This is only a small subset of applications that were originally opened from the first reboot attempt.
    If you do manage to close terminal in time, it only comes up on Desktop 1 after resume.  This is fine if that's what you want, but I have terminal configured on "All Desktops".  To workaround the issue, I have to set terminal to "This Desktop", then "All Desktops" EVERY TIME I REBOOT.
    No other apple programs seem to do this.
    Where do I log a bug/feature request for this?
    Cheers!

    Done!  Thanks!
    https://bugreport.apple.com/cgi-bin/WebObjects/RadarWeb.woa/6/wo/iLhrfiEtEJtPFTt J8S23O0/23.83.28.0.9
    https://bugreport.apple.com/cgi-bin/WebObjects/RadarWeb.woa/6/wo/iLhrfiEtEJtPFTt J8S23O0/23.83.28.1.9

  • Why does DIO6534 behaves differently from its lesser relatives?

    I am developing under LabWindows/CVI some code for the DIO 653X family. It's almost two years since I started working with'em, so it's disappointing the problem I'm talking about.
    This is the guilty code:
    DIG_Grp_Config(DIO_BOARD, 2, 2, 2, 0);
    DIG_Block_PG_Config(DIO_BOARD, 2, 1, 0, rtimebase, rreqint, 0);
    DIG_Block_In(DIO_BOARD, 2, in_conf_buff, 1281);
    do {
    status = DIG_Block_Check(DIO_BOARD, 2, &rem);
    } while (rem);
    It is used to read in pattern generation 1281 samples, 16 bits each, on group 2
    The code runs OK on DIO 32-HS and on DAQCard 6533, but it faults on DIO 6534.
    Provided that rtimebase e rreqint are correctly defined and that in_conf_buff is wi
    de enough to contain all the acquisition, the problem is: come to the do-while loop that worries about controlling that the acquisition is running OK by the DIG_Block_Check instruction, the program remains in the loop, with a single sample to be read (rem = 1), only with DIO 6534.
    I made some trials to get out of the mess, so that I found that the error happens when I use an odd number of samples, not when I use an even number. But the REQ pulses number are needed to drive a read-out chip, so I can't simply reduce or increase by 1 the samples number, as this would leave the chip in an umpredictable state.
    Who can help me?

    Hi medihelp,
    Because the 6534 always performs DMA transfers in 32-bit even for 16-bit input groups, there will be "stranded" data if the number of data transferred is not a multiple of 4 bytes. This different behavior (compared to the 6533) is due to the addition of onboard memory to support high speed transfers. At the end of the DMA transfers, the stranded data will be retrieved manually, and status should be updated to indicate that the tranfer is truly finished. There is a bug in the NIDAQ driver that fails to update the status flag, causing the return value of DIG_Block_Check to get stuck at 1, even though all data has been acquired. The fix for this problem will be made available to all users very soon. In the meantime, I would recommend that you either make the
    sample count a multiple of 4 bytes, or change the condition of the while loop to break when DIG_Block_Check returns 1 instead of 0.

  • Why is letter spacing different in FF (and IE) comparing to Chrome?

    I'm developing http://idesigns.dk and the menu looks totally different in FF comparing to Chrome. I have found out that it's because of the lower letter spacing in FF. How can I make the letter spacing "normal" like in chrome?

    I will mark your above post as the solution as you indicate that you were able to fix it.
    If you still have questions then you can click the Undo button next to your reply to remove the solution.

Maybe you are looking for

  • Adobe Connect not recognizing my DV camera

    Adobe Connect no longer will recognize my DV cameras (XL2 and GL2) via firewire 400 on a mac computer (os 10.7.5). I have tried signing in using the ?launcher=false  idea and I have installed the addin for adobe connect and os 10.7.2. Nothing works.

  • Destination Drive - Limit visibility of certain drives?

    Hello! Final Cut Server uses about 10 Fiber drives on our system, however - I only want users to see 2 of them when uploading Clips. They will still need to have the ability to search for clips on all drives though. I'm only referring to the uploadin

  • Can File Sharing be accessed on an external network?

    ive enabled file share on my Mac Pro so that i can access it on my macbook pro. these two are on my time capsule network. in the settings, for the macbook pro it says read and write, and for Everyone it says read only. my question is: for Everyone, i

  • Multiple Airport Express connections?

    Hello: I was wondering if it is possible to set up multiple airport connections through my wifi?  I am running windows 7.  Will I be able to set them both up through the airport utility device? Thanks!

  • Tru64 to HP -UX ECC5  system copying?

    We will have to upgrade ECC5  system to ECC 6. However the unix version is tru64 (which is not supported by ECC 6 (in product availability matrix). What would you do? Is it possible to copy usr\sap , sapdata1...sapdataN and sapmnt inclusive users(SID