File generated when program run in background

Hi,
I have program that generates a report & all the data in the report output is down loaded to a file .please somebody make it clear:
if I run the report in background will the file still be generated.
thanks,
reddy.

Hi,
If the program has logic to transfer the data to appliacation layer, then it works. Other wise it is not possible to download the data into your desktop by running in Background.
Regards,
Ashok

Similar Messages

  • Layout Change when program run in background.

    Hi All,
    I have a layout field on the selection screen. When I run the program in foreground, iam able to see the change in the layout in the output. When I select a layout name and run the report in background, Iam sending a file to the application server. Now, when I give the layout and run the report in background, the file iam sending to the app server should have the same layout which i have selected in the selection screen.
    Please help with some example code.
    Thanks,
    Guru Charan.

    Hi Amit,
    Thanks for the reply. The program can be run both the ways. When it is run in the foreground, Iam changing the layout with the help of REUSE_ALV_GRID_DISPLAY. It is working.
    But when iam running in the background, I have to send a file to application server with the same layout.
    thanks,
    Guru Charan.

  • Withholding taxes not updated when program run in background

    Hi,
    in a z1 report i do:
      SUBMIT z2
      VIA JOB lc_jobname
       NUMBER v_jobcount
         WITH p_fecha  = p_fecha                               
         WITH p_file   = v_file_in
         WITH p_e_file = p_efile 
         WITH p_client = p_client
         WITH p_test   = p_test  
          AND RETURN.
    within this z2 report i do:
              PERFORM mrm_invoice_create_call(saplmrm_bapi)     USING     s_rbkpv
                                                           tab_frseg[]
                                                           tab_co[]
                                                           tab_ma[]
                                                           c_rbstat_posted
                                                           space
                                                 CHANGING  invoicedocnumber
                                                           fiscalyear
                                                           return[]
                                                           f_subrc.
              IF test IS INITIAL.
                COMMIT WORK AND WAIT.
              ELSE.
                ROLLBACK WORK.
              ENDIF.
    the question is that if i run z1 report online there is no problem but if
    i run z1 report in background, withholding taxes are not calculated.
    After debugging this is what i´ve found out:
    1.- in PERFORM mrm_invoice_create_call(saplmrm_bapi) there is a call to fm FI_WT_POST IN UPDATE TASK
    2.- in FI_WT_POST table WITH_ITEM is updated
    i guess this could be due to a delay in updating the table so i´m considering doing a WAIT UP TO X SECONDS.
    why is it working in online mode but not in background mode?
    any idea?
    Best regards.

    Hi,
    in case someone is interested this is how i solved the question:
    i had badi MRM_WT_SPLIT_UPDAT implemented.
    in this badi implementation i had this code (among other checks too):
    CHECK sy-tcode = 'MIR4' OR sy-tcode = 'MIR7'.
    this code avoided the background job case.
    It seems that In a background job sy-tcode is empty.
    so i just needed to add this:
    CHECK sy-tcode = 'MIR4' OR sy-tcode = 'MIR7' OR  sy-batch = 'X'.
    and then withholding taxes reappeared again.
    (so sad, so true... one day of debugging,  sigh)
    Best regards.
    Edited by: Pablo Casamayor on Feb 2, 2012 4:53 PM

  • How do I download mozzikla 3.5 ?? Mozzilla 3.6 takes up to much space and has a program running in background storing crashed files.

    how do I download mozzikla 3.5 ?? Mozzilla 3.6 takes up to much space and has a program running in background storing crashed files.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET CLR 3.0.30729; .NET CLR 3.5.30729; msn OptimizedIE8;ENUS)

    That crash appears to be casued by the Facebook plug-in.
    Create a new account (systempreferences -> accounts or Users & Groups on 10.7 and 10.8), make a new Library in that account, import some shots  and see if the problem is repeated there. If it is, then a re-install of the app might be indicated. If it's not, then it's likely the app is okay and the problem is something in the main account.

  • How do I delete programs running in background on old I phone iOS 5

    How do delete programs running in background on old I phones

    On iOS 5 double-click home button, touch an hold on an app icon until a "-" appears. Touch this to remove the App.

  • New operating system..... How do I close programs running in background

    How do you close programs running in background with new op system?

    Sherylewyatt wrote:
    How do you close programs running in background with new op system?
    It's an often misunderstood topic.  The programs that are "running" (and where they are actually using data and battery) can be found in "Notifications" and "Background App Refresh."

  • When MRP run through background process in MDBT open PR and PO not comming?

    Hi,
    When MRP run through backgroung process in MDBT open PR and PO not coming in MDBT result.
    Pls advise accordingaly.
    Regards
    rk

    Ram,
    Either I am totally misunderstanding your statements, or your business people are misinformed.  
    The output of MD01 (MRP total run in foreground) and the output of MDBT (MRP total Run in Background) ARE IDENTICAL, provided you have selected the same parameters.  
    Neither output contains a discrete listing of open Purchase orders and Purchase requisitions.
    Standard output of both MD01 and MDBT are:
    1.  List of materials processed, with exception messages
    2.  Statistics
    In addition, both of these programs also write MRP records to the MRP databases, provided that the "Display Material List" parameter is set.  In this case, both of these programs will produce data that can be further reviewed and managed in MD05 and MD06. MD06 is the tool that most planners use to process the MRP database info.
    If you wish to see a listing of the entire MRP results (either MD01 or MDBT), then execute transaction MDLD.  This will produce either a spoolfile or a printed document.
    For the PO or PR listings, review my earlier suggestions.
    Rgds,
    DB49

  • Less coloumns displayed when report run in background

    Hi,
    There is a problem, when i run a report in background last few columns are not displayed. But when i run it in foreground all the columns are displayed properly.. Bt since the report hs to be run background, I need to fix this issue..
    Cn anyone explain why this is happenin and wht i cn do to rectify it?
    Thanks
    Keshi

    Hi,
    Use REUSE_ALV_GRID_DISPLAY and you will be able to run the report in foreground or background.
    If you must use OO ALV controls, you won't be able to run the program in background. In this scenario, I would check SY-BATCH and if it is set, I run REUSE* FM and if not I do CALL SCREEN..
    If you are using the ABAP Grid Control (OO object), you can still create the ALV list as a spool listing for the background job.
    The easiest way to do this is to put all the create object statements and method calls for the custom container and ALV grid object inside a subroutine (for example, present_grid).
    All that is required is a simple check of the sy-batch variable to determine if the program is being executed in the foreground or background.
    e.g. if sy-batch is initial.
    call screen 0100.
    else.
    perform present_grid.
    endif.
    In a PBO module of screen 0100, the subroutine present_grid is also performed.
    The set_table_for_first_display method will be invoked in the routine present_grid, however, due to the job being executed in the background, the ALV list output will be written as spool output for the background job.
    Regards,
    Srini

  • Camera File Generator Won't Run with MAX + PCIe-1433

    Hi,
    I am a camera developer and am trying to integrate a couple of new cameralink cameras with the PCIe-1433 NI frame grabber.  I have installed NI MAX 14.0 and version 3.0.0 of the Camera File Generator.
    I am trying to build a new Camera File for our companies cameras.
    The NI MAX shows the NI PCIe-1433 device when it launches.
    When I try to launch the Camera File Generator, it failis to load with the following message:
    "You must have NI-IMAQ 4.6.0 or higher installed before running the NI Camera File Generator.  NI-IMAQ 4.6.0 is installed with Vision Acquisition Software 2011."
    The MAX configuration tree shows I have version 14.0 of the NI-IMAQ software available.
    Is there any sort of developer's guide for creating a camera file to allow me to use my camera?  I need to write some serial commands to the unit and thought tha tthe Camera File Generator would support this.... 
    Thanks.
    -Mike

    Hi mawillia,
    The latest version of the IMAQ drivers is version 4.9, and it would show up where you said, under the Software tab in NI MAX.  Do you have this latest version installed?  If you like, feel free to expand out your software tab and take a picture of it and post it here.
    Also, you are correct that the serial commands can be set in the camera file.  Here is a link to our support page for the Camera File Generator: http://sine.ni.com/psp/app/doc/p/id/psp-723/lang/en
    Within it is a whole host of various KnowledgeBase articles.  This one seems particularly helpful:
    What framegrabber specifications do I need to know to create my camera file?:  http://digital.ni.com/public.nsf/allkb/9B89C9FA43A6973A86257A62004658D5
    Unfortunately, I couldn't find any articles specific to coding the serial commands for your camera in the camera file.  But I recommend opening up one of the bundled camera files (I'm looking at the Basler acA2000-340kc (Base).icd ) and within that, click the Camera Control tab.  The serial commands for each attribute will show up on the right side, and you can use this as an example for creating yours.
    Let me know if you have any further questions!
    Julian R.
    Applications Engineer
    National Instruments

  • Program running in background and force shutdown

    I have a Pavillion s5220f desktop. I quite frequently get the message that there is a program running in the background and do I want to force a shut down. I have always chosen to force the shutdown. How can I find the program that is running in the background? Also, could this background program cause a more than five minute startup?

    Next time it happens take note of what you are doing and what programs are open.
    One thing you could do, which will also speed up your start time is to keep non-essential programs from loading when Windows first starts up. Using the Microsoft Configuration Utility, you can selct what programs and processes load at startup.
    I don't know which operating system you are using, but here is an HP Support document on using MSCONFIG in Windows 7, the steps are similar for other versions of Windows:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01853706&cc=us&dlc=en&lc=en
    Also, here is an HP video that gives an overview of MSCONFIG:
    http://www.youtube.com/watch?v=zz30zAnRx8A
    ...an HP employee just trying to help where I can, but not speaking on behalf of HP.

  • GUI doesnt pop-up when program runs

    cant seem to find why my GUI doesnt show up when i run my program?....i believe i am missing one statement or two but i searched everywhere...and tried a few methods in the Container class, and found nothing....thanks in advance
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.util.*;
    import java.io.*;
    public class GUI extends JFrame implements ActionListener
    ReadLevel read;
    private JLabel input = new JLabel ("Location of Input File:");
    private JLabel output = new JLabel ("Location of Output File:");
    private JLabel size = new JLabel ("Minimum word size:");
    private JLabel freq = new JLabel ("Minimum word frequency:");
    private JLabel total = new JLabel ("Total number of words:");
    private JLabel totalSize = new JLabel ("Total number meeting size requirement:");
    private JLabel totalFreq = new JLabel ("Total number meeting frequency requirement:");
    private JLabel avgSize = new JLabel ("Average size meeting size requirement:");
    private JLabel avgFreq = new JLabel ("Average frequency meeting frequency requirement:");
    private JLabel most = new JLabel ("Three most frequent words meeting all requirements:");
    private JTextField in = new JTextField(10);
    private JTextField out = new JTextField(10);
    private JTextField sz = new JTextField(5);
    private JTextField fq = new JTextField(5);
    private JTextField tt = new JTextField(10);
    private JTextField ts = new JTextField(5);
    private JTextField tf = new JTextField(5);
    private JTextField as = new JTextField(5);
    private JTextField af = new JTextField(5);
    private JTextField m1 = new JTextField(10);
    private JTextField m2 = new JTextField(10);
    private JTextField m3 = new JTextField(10);
    private JButton submit = new JButton("Submit");
    private JButton clear = new JButton("Clear");
    private JButton printInput = new JButton("Print InPut");
    private JButton printOutput = new JButton("Print Output");
    private ReadLevel myReadLevel;
    public GUI()
    super("Reading Levels");
    read = new ReadLevel(in.getText(), sz.getText(), fq.getText()); <-----this gives me an compiler error...and i dont know why..seems correct and in the correct place, isnt it?
    submit.addActionListener(this);
    clear.addActionListener(this);
    printInput.addActionListener(this);
    printOutput.addActionListener(this);
    JPanel row1 = new JPanel();
    row1.setLayout(new BoxLayout(row1, BoxLayout.X_AXIS));
    row1.add(input);
    row1.add(in);
    JPanel row2=new JPanel();
    row2.setLayout(new BoxLayout(row2, BoxLayout.X_AXIS));
    row2.add(output);
    row2.add(out);
    JPanel row3=new JPanel();
    row3.setLayout(new BoxLayout(row3, BoxLayout.X_AXIS));
    row3.add(size);
    row3.add(sz);
    JPanel row4=new JPanel();
    row4.setLayout(new BoxLayout(row4, BoxLayout.X_AXIS));
    row4.add(freq);
    row4.add(fq);
    JPanel row5=new JPanel();
    row5.setLayout(new BoxLayout(row5, BoxLayout.X_AXIS));
    row5.add(total);
    row5.add(tt);
    JPanel row6=new JPanel();
    row6.setLayout(new BoxLayout(row6, BoxLayout.X_AXIS));
    row6.add(totalSize);
    row6.add(ts);
    JPanel row7=new JPanel();
    row7.setLayout(new BoxLayout(row7, BoxLayout.X_AXIS));
    row7.add(totalFreq);
    row7.add(tf);
    JPanel row8=new JPanel();
    row8.setLayout(new BoxLayout(row8, BoxLayout.X_AXIS));
    row8.add(avgSize);
    row8.add(as);
    JPanel row9=new JPanel();
    row9.setLayout(new BoxLayout(row9, BoxLayout.X_AXIS));
    row9.add(avgFreq);
    row9.add(af);
    JPanel row10=new JPanel();
    row10.setLayout(new BoxLayout(row10, BoxLayout.X_AXIS));
    row10.add(most);
    JPanel row11=new JPanel();
    row11.setLayout(new BoxLayout(row11, BoxLayout.Y_AXIS));
    row11.add(m1);
    row11.add(m2);
    row11.add(m3);
    JPanel row12=new JPanel();
    row12.setLayout(new BoxLayout(row12, BoxLayout.X_AXIS));
    row12.add(submit);
    row12.add(clear);
    row12.add(printInput);
    row12.add(printOutput);
    Container myContent = getContentPane();
    myContent.setLayout (new BoxLayout (myContent, BoxLayout.Y_AXIS));
    myContent.add (row1);
    myContent.add (row2);
    myContent.add (row3);
    myContent.add (row4);
    myContent.add (row5);
    myContent.add (row6);
    myContent.add (row7);
    myContent.add (row8);
    myContent.add (row9);
    myContent.add (row10);
    myContent.add (row11);
    myContent.add (row12);
    setContentPane(myContent);
    public void actionPerformed(ActionEvent ev)
    read(in.getText(), sz.getText(), fq.getText()); <----this gives me errors
    if(ev.getSource() == submit);
    read(in.getText(), sz.getText(), fq.getText()); <----this too
    if(ev.getSource() == clear);
    in.setText("");
    out.setText("");
    sz.setText("");
    fq.setText("");
    tt.setText("");
    ts.setText("");
    tf.setText("");
    as.setText("");
    af.setText("");
    m1.setText("");
    m2.setText("");
    m3.setText("");
    if(ev.getSource() == printInput);
    if(ev.getSource() == printOutput);
    read.asString(); <---and this
    public class Driver
    public static void main (String[] args)
    GUI myGUI = new GUI();
    myGUI.setDefaultCloseOperation(myGUI.EXIT_ON_CLOSE);
    myGUI.pack();
    myGUI.show();
    myGUI.toFront();
    myGUI.setVisible(true);

    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.util.*;
    import java.io.*;
    public class GUI extends JFrame implements ActionListener
    ReadLevel read;
    private JLabel input = new JLabel ("Location of Input File:");
    private JLabel output = new JLabel ("Location of Output File:");
    private JLabel size = new JLabel ("Minimum word size:");
    private JLabel freq = new JLabel ("Minimum word frequency:");
    private JLabel total = new JLabel ("Total number of words:");
    private JLabel totalSize = new JLabel ("Total number meeting size requirement:");
    private JLabel totalFreq = new JLabel ("Total number meeting frequency requirement:");
    private JLabel avgSize = new JLabel ("Average size meeting size requirement:");
    private JLabel avgFreq = new JLabel ("Average frequency meeting frequency requirement:");
    private JLabel most = new JLabel ("Three most frequent words meeting all requirements:");
    private JTextField in = new JTextField(10);
    private JTextField out = new JTextField(10);
    private JTextField sz = new JTextField(5);
    private JTextField fq = new JTextField(5);
    private JTextField tt = new JTextField(10);
    private JTextField ts = new JTextField(5);
    private JTextField tf = new JTextField(5);
    private JTextField as = new JTextField(5);
    private JTextField af = new JTextField(5);
    private JTextField m1 = new JTextField(10);
    private JTextField m2 = new JTextField(10);
    private JTextField m3 = new JTextField(10);
    private JButton submit = new JButton("Submit");
    private JButton clear = new JButton("Clear");
    private JButton printInput = new JButton("Print InPut");
    private JButton printOutput = new JButton("Print Output");
    private ReadLevel myReadLevel;
    public GUI()
    super("Reading Levels");
    read = new ReadLevel(in.getText(), Integer.parseInt(sz.getText()), Integer.parseInt(fq.getText())); //<-----fix it
    submit.addActionListener(this);
    clear.addActionListener(this);
    printInput.addActionListener(this);
    printOutput.addActionListener(this);
    JPanel row1 = new JPanel();
    row1.setLayout(new BoxLayout(row1, BoxLayout.X_AXIS));
    row1.add(input);
    row1.add(in);
    JPanel row2=new JPanel();
    row2.setLayout(new BoxLayout(row2, BoxLayout.X_AXIS));
    row2.add(output);
    row2.add(out);
    JPanel row3=new JPanel();
    row3.setLayout(new BoxLayout(row3, BoxLayout.X_AXIS));
    row3.add(size);
    row3.add(sz);
    JPanel row4=new JPanel();
    row4.setLayout(new BoxLayout(row4, BoxLayout.X_AXIS));
    row4.add(freq);
    row4.add(fq);
    JPanel row5=new JPanel();
    row5.setLayout(new BoxLayout(row5, BoxLayout.X_AXIS));
    row5.add(total);
    row5.add(tt);
    JPanel row6=new JPanel();
    row6.setLayout(new BoxLayout(row6, BoxLayout.X_AXIS));
    row6.add(totalSize);
    row6.add(ts);
    JPanel row7=new JPanel();
    row7.setLayout(new BoxLayout(row7, BoxLayout.X_AXIS));
    row7.add(totalFreq);
    row7.add(tf);
    JPanel row8=new JPanel();
    row8.setLayout(new BoxLayout(row8, BoxLayout.X_AXIS));
    row8.add(avgSize);
    row8.add(as);
    JPanel row9=new JPanel();
    row9.setLayout(new BoxLayout(row9, BoxLayout.X_AXIS));
    row9.add(avgFreq);
    row9.add(af);
    JPanel row10=new JPanel();
    row10.setLayout(new BoxLayout(row10, BoxLayout.X_AXIS));
    row10.add(most);
    JPanel row11=new JPanel();
    row11.setLayout(new BoxLayout(row11, BoxLayout.Y_AXIS));
    row11.add(m1);
    row11.add(m2);
    row11.add(m3);
    JPanel row12=new JPanel();
    row12.setLayout(new BoxLayout(row12, BoxLayout.X_AXIS));
    row12.add(submit);
    row12.add(clear);
    row12.add(printInput);
    row12.add(printOutput);
    Container myContent = getContentPane();
    myContent.setLayout (new BoxLayout (myContent, BoxLayout.Y_AXIS));
    myContent.add (row1);
    myContent.add (row2);
    myContent.add (row3);
    myContent.add (row4);
    myContent.add (row5);
    myContent.add (row6);
    myContent.add (row7);
    myContent.add (row8);
    myContent.add (row9);
    myContent.add (row10);
    myContent.add (row11);
    myContent.add (row12);
    setContentPane(myContent);
    public void actionPerformed(ActionEvent ev)
    read(in.getText(), sz.getText(), fq.getText()); //<----where the 'read' function come from??
    if(ev.getSource() == submit);
    read(in.getText(), sz.getText(), fq.getText()); //<----There is no 'read' function in your code
    if(ev.getSource() == clear);
    in.setText("");
    out.setText("");
    sz.setText("");
    fq.setText("");
    tt.setText("");
    ts.setText("");
    tf.setText("");
    as.setText("");
    af.setText("");
    m1.setText("");
    m2.setText("");
    m3.setText("");
    if(ev.getSource() == printInput);
    if(ev.getSource() == printOutput);
    read.asString(); //<---Where does the 'asString' function come from???!?
    }

  • Some events are not dispatched when app runs in background

    My Android app has a TIMER event which fires once every second to connect a TCP socket (class flash.net.Socket) and send a request.
    A packet sniffer confirms that a socket is in fact connecting, request is sent, reply comes back and connection is closed, all happening once per second.
    Clearly, even with the app in the background, the TIMER event is occurring every second, because the timer handler is initating every socket.
    But not every closing connection causes a CLOSE event to dispatch, because my close handler is called less frequently.  Sometimes once in 3 seconds, 8 seconds or even longer.
    The CLOSE dispatches correctly once per second when the app is in the foreground.
    Why are CLOSE events being missed when the app is in the background?  What is the difference between a TIMER event and a CLOSE event, causing one to dispatch correctly but not the other?
    Thanks.

    I've narrowed my problem down by chopping pieces of code until it works, and I think I have it narrowed down to the code that uses FlexGraphing but need to check a bit more...
    It's odd that it works in Flex3 builder though, and there are no errors when I run in as AIR. In fact, the app RUNS, since it is in the task manager, but it won't appear.

  • Data is missing in Even Page when report running in background (spool)

    Hi
    I have this weird problem in my report. The report would run in background convert the data in to PDF from spool and then email it to people.
    Now when the PDF has more then 1 page the error occurs.
    It drops the last row from the even page. The total at the end and every thing shows correctly. If there r more than 2 pages then on page 3 the last row is not dropped and its all fine but again on page 4 it drops one record and on page 5 again its working fine.
    One thing is it also puts an extra line(horizontal line which is not in the code) on those pages where its unable to put the record and its always the last one on the even page. I also looked up the spool. Its doing it in the spool too. So i think its not the PDF converter its when the spool is getting created for some reason its droping the rows for the even pages...
    Did any one else encountered some thing like this? please help.
    Thanks
    Message was edited by:
            Anwarul Kabir

    is there any problem with Background spools with SAP? We are running R3 here. And looks like its the spool background job that's creating the error. When i execute the report it shows all the record in print preview or if i print it.
    Please Help!

  • How to make a program run in background?

    Is there any ways to make an invisible program with java? a program that is running in background but the user cannot see it and it's not in the Start bar and the user cannot close it.

    There are also 3rd party software that lets you install a java program as a service in winnt/2k/xp so that you can start/stop it from the service manager, doesnt even matter if the java program is gui based or not, as there are options (in win2k at least) in the service manager that allows the program to interact (think show gui) or not...one software called JNT comes to mind..
    Anyway, if you're using win98/me equivalent, then just use javaw.exe like suggested by previous posters.

  • Programs running in background

    I noticed some of the programs running in the background of my computer are using up a lot of memory so I was wondering if it is it a good idea to quit mdimport, pipedaemon, pbs and/or ATSServer? What would happen if i did.

    Welcome to the Forums!
    Not a good idea, no. What is "a lot of memory"? In general, the Mac OS is very good at memory management. mdimport is for system indexing (Spotlight) and ATSServer manages type (fonts), you need to leave those running. pipedaemon is apparently part of the HP printer driver package, I have no idea what pbs is.
    Having said that, on my system none of these processes use more than 10-12 MB each, of my 2 GB total - that's pretty insignificant.

Maybe you are looking for

  • How do I build an EXE for RT board?

    LabVIEW 7.0, App Builder, Win2000. I've been working on this program for a while. It uses the RT board as an engine controller and a host part as a supervisor, collecting data from the RT, as well as other places. What I've been doing is this: 1... L

  • Java script and jsp

    Hello all I want to call javascript function without any event from a jsp code, like following <script> function add(a,b,c){ alert("hello");} </script> jdbc connection code while(rs.next() a=rs.getInt("id"); b=rs.getInt("id2"); c=rs.getInt("id3"); %>

  • The app store got delted from my iphone by mistake

    the app store got delted from my iphone by mistake. how can i get it back on my phone?

  • Connecting laptop to desktop

    Can I connect my macBook to my iMac, sort of like an external hard drive, so I can pull large files off it? If so, what cable/port should I use? iMac G5   Mac OS X (10.4.5)   iMac G5   Mac OS X (10.4.5)  

  • Why can't I see or edit my slide notes?

    I'm probably making a silly mistake as a new user of captivate 6.  Whether I start a new presentation, or import a PPT which already inclused slide notes, I can't see any notes in captivate.  the slide notes box is there but the icons (eg the + incon