HELP TO DEBUG THE PROGRAM OF AGILENT6600X

Hello,
          First let me simply introduce this program.
          The horizental toggle switch is used to set the default value to the power supply.
          The vertical slide switch is used to read the value from the power supply(after board boot up).
          The phenomenon is when i run the vi, always pop up the indicate message"the 9v PS ID can not be recognized". The problem is why always the problem happens on the 9v PS.
          I have to say this program is not so good, if anyone can give me some guidence, I'll be very appreciate. Thanks.
Attachments:
PS.vi ‏44 KB

Good morning,
Without the Agilent drivers (vi's), I could not see much about the code.   Do you only get this message with the 9V PS?
Have you tried communicating with the instrument using MAX (Measurement & Automation Explorer)?  That should be the first step to make sure that communication can be achieved.  You could try a basic query like " *IDN? " and see what it returns.  It's under "Communicate With Instrument", when you look at the "Devices" list.
Also try opening the actual Agilent VI's and monitor what is being sent over the GPIB. Compare it with the others that work.  You can copy the faulty command to MAX and communicate with the instrument using the command. 
Hope this helps,
RayR

Similar Messages

  • How to debug the program in background

    hi
    how to debug the program in background

    Hello everyone,
    I often debug my programs via the sm50 transaction and it works very well (especially when you put the dummy loop ^ - ^ ). However we are confronted to a major problem when more than one user tries to debug. We get a message saying that the maximum number of users in the debugging mode has been reached!! Thus we each have to wait for our turn to debug our program. It's a real pain.
    We've searched for a parameter to configure the number of users for the debugging mode but in vain
    Has anyone else had this kind of problem? If yes, what do I need to do to correct it?
    Any suggestion would be helpful as I am new to BW.
    Thank you beforehand.
    Regards,
    Dimple

  • Help. Installed the program from adobe in the trial under the same ID.

    Help. Installed the program from adobe in the trial under the same ID. After the expiration of 30 days, our company has registered for acquisition programs. We have introduced a new ID for a trial test, and adobe programs from running. Test time is exhausted. How to run the program under the new ID in a trial.
    Помогите. Установил пакет програм от адобе в триал под одним ID. После истечения 30 дней наша компания зарегистрировалась для приобретения программ. Мы ввели новый ИД для триал теста, а адоб программы не запускаются. Пробное время исчерпано. Как запустить программы под новым ИД в триале.

    Perhaps extend trial adobe product if 30 days is exhausted? If I go under a different ID that shows 0 days.
    Возможно продлить триал продукта адобе если 30 дней исчерпано? Если я захожу под другим ИД то показывает 0 дней.

  • Debugging the program that will get triggered for a particular output type

    Hi all,
             I have one program,which will get triggered when a Sales order of type 'VOR' is created.Whenever 'VOR' order is created it will trigger the 'ZALT' output type.And this output type 'ZALT'has been configured to my program.This output type configuration has been set up by my functional consultant.
    My problem is I created Sales order of type 'VOR'.But I want to debug my program,which has to be triggered because of that 'VOR' sales order type,which in turn triggers 'ZALT' output type and in turn triggers my program.
    My problem is I created Sales order of type 'VOR' by keeping debugging point in my program.But it is not going to my program and simply displaying sales order has been saved.
    So is the outtype has been configured properly?.Do I need to go to my functional consultant?Could anyone explain in this regard?
    Rgds,
    Balaji

    Hi Balaji,
    If possible, try to repeat the output in the output type messages screen of VA02 and change its dipatch time to '1'(Through further data). Now put the break point in the program assigned to output tye 'ZALT'(You can see this in the TNAPR table) and run the program RSNAST00 through SE38. The program will stop at the break point.
    If its not possible to repeat the output and if you want to check it the first time the output type is processed, ask the functional consultant to change the dispatch time in the condition record that is being retrieved for proposing the output type to '1'. Now run RSNAST00. The program will stop at the breakpoint.
    Thanks,
    Vinay

  • Help needed- Debug the script.

    Hi Experts,
    Can any one help me in debug the below script.
    Basically, i am trying to check date range from a coulmn DATE_NAME and if its between the selected range i am assiging some number.
    select DATE_NAME,CASE
    WHEN
    TRIM(TO_CHAR(DATE_NAME,'DD-MON')) BETWEEN TRIM(TO_CHAR(to_DATE('15-DEC', 'DD-MON'),'DD-MON') ) AND TRIM(TO_CHAR(to_DATE('10-JAN', 'DD-MON'),'DD-MON')) THEN 1
    WHEN
    TRIM(TO_CHAR(DATE_NAME,'DD-MON')) BETWEEN TRIM(TO_CHAR(to_DATE('11-JAN', 'DD-MON'),'DD-MON') ) AND TRIM(TO_CHAR(to_DATE('07-FEB', 'DD-MON'),'DD-MON')) THEN 2
    WHEN
    TRIM(TO_CHAR(DATE_NAME,'DD-MON')) BETWEEN TRIM(TO_CHAR(to_DATE('08-FEB', 'DD-MON'),'DD-MON') ) AND TRIM(TO_CHAR(to_DATE('07-MAR', 'DD-MON'),'DD-MON')) THEN 3
    WHEN
    TRIM(TO_CHAR(DATE_NAME,'DD-MON')) BETWEEN TRIM(TO_CHAR(to_DATE('08-MAR', 'DD-MON'),'DD-MON') ) AND TRIM(TO_CHAR(to_DATE('04-APR', 'DD-MON'),'DD-MON')) THEN 4
    WHEN
    TRIM(TO_CHAR(DATE_NAME,'DD-MON')) BETWEEN TRIM(TO_CHAR(to_DATE('05-APR', 'DD-MON'),'DD-MON') ) AND TRIM(TO_CHAR(to_DATE('02-MAY', 'DD-MON'),'DD-MON')) THEN 5
    WHEN
    TRIM(TO_CHAR(DATE_NAME,'DD-MON')) BETWEEN TRIM(TO_CHAR(to_DATE('03-MAY', 'DD-MON'),'DD-MON') ) AND TRIM(TO_CHAR(to_DATE('30-MAY', 'DD-MON'),'DD-MON')) THEN 6
    WHEN
    TRIM(TO_CHAR(DATE_NAME,'DD-MON')) BETWEEN TRIM(TO_CHAR(to_DATE('31-MAY', 'DD-MON'),'DD-MON') ) AND TRIM(TO_CHAR(to_DATE('27-JUN', 'DD-MON'),'DD-MON')) THEN 7
    WHEN
    TRIM(TO_CHAR(DATE_NAME,'DD-MON')) BETWEEN TRIM(TO_CHAR(to_DATE('28-JUN', 'DD-MON'),'DD-MON') ) AND TRIM(TO_CHAR(to_DATE('25-JUL', 'DD-MON'),'DD-MON')) THEN 8
    WHEN
    TRIM(TO_CHAR(DATE_NAME,'DD-MON')) BETWEEN TRIM(TO_CHAR(to_DATE('26-JUL', 'DD-MON'),'DD-MON') ) AND TRIM(TO_CHAR(to_DATE('22-AUG', 'DD-MON'),'DD-MON')) THEN 9
    WHEN
    TRIM(TO_CHAR(DATE_NAME,'DD-MON')) BETWEEN TRIM(TO_CHAR(to_DATE('23-AUG', 'DD-MON'),'DD-MON') ) AND TRIM(TO_CHAR(to_DATE('19-SEP', 'DD-MON'),'DD-MON')) THEN 10
    WHEN
    TRIM(TO_CHAR(DATE_NAME,'DD-MON')) BETWEEN TRIM(TO_CHAR(to_DATE('20-SEP', 'DD-MON'),'DD-MON') ) AND TRIM(TO_CHAR(to_DATE('17-OCT', 'DD-MON'),'DD-MON')) THEN 11
    WHEN
    TRIM(TO_CHAR(DATE_NAME,'DD-MON')) BETWEEN TRIM(TO_CHAR(to_DATE('18-OCT', 'DD-MON'),'DD-MON') ) AND TRIM(TO_CHAR(to_DATE('14-NOV', 'DD-MON'),'DD-MON')) THEN 12
    WHEN
    TRIM(TO_CHAR(DATE_NAME,'DD-MON')) BETWEEN TRIM(TO_CHAR(to_DATE('15-NOV', 'DD-MON'),'DD-MON') ) AND TRIM(TO_CHAR(to_DATE('12-DEC', 'DD-MON'),'DD-MON')) THEN 13
    ELSE 0
    END AS PERIOD FROM D_TIME;
    Any help will be appreciated.
    PS: DATE_NAME is of DATE datatype.
    Thanks,
    G
    Edited by: Gurusank on Jun 24, 2009 3:53 PM

    Don't convert date to string for comparison. For instance your following snippet:
    TRIM(TO_CHAR(DATE_NAME,'DD-MON')) BETWEEN
         TRIM(TO_CHAR(to_DATE('15-DEC', 'DD-MON'),'DD-MON') )
          AND
         TRIM(TO_CHAR(to_DATE('10-JAN', 'DD-MON'),'DD-MON')) should be written as
    DATE_NAME BETWEEN to_DATE('15-DEC', 'DD-MON')
    and to_DATE('10-JAN', 'DD-MON')Are you sure in avoiding year (YYYY) in your format mask for to_date. This will assign current year to the date
    In that case something like
    TO_DATE(TO_CHAR(DATE_NAME,'DD-MON')), 'DD-MON') BETWEEN
       to_DATE('15-DEC', 'DD-MON')
       AND
       to_DATE('10-JAN', 'DD-MON')(There might be an efficient way to do this part. Nothing is striking to me as of now.)
    Hope this helps.
    Regards,
    Jo

  • Help in running the program

    i tried to run a sample program
    import javax.microedition.lcdui.*;
    import javax.microedition.midlet.*;
    public class HelloMIDlet
    extends MIDlet
    implements CommandListener {
    private Form mMainForm;
    public HelloMIDlet() {
    mMainForm = new Form("HelloMIDlet");
    mMainForm.append(new StringItem(null, "Hello, MIDP!"));
    mMainForm.addCommand(new Command("Exit", Command.EXIT, 0));
    mMainForm.setCommandListener(this);
    public void startApp() {
    Display.getDisplay(this).setCurrent(mMainForm);
    public void pauseApp() {}
    public void destroyApp(boolean unconditional) {}
    public void commandAction(Command c, Displayable s) {
    notifyDestroyed();
    it is compling but it is showing class not found exception while launching in sun java wireless tool kit
    can you help me
    prasanna

    Remove the disc and don't use it again. 

  • DEBUG THE PROGRAM

    Hi Friends,
        Could u guide me how to set breakpoint and debug the  module pool, function pool, Interface pool and class pool program ?
    Thx in Adv.
    bapibobby

    Hi Bobby,
    Create a TCODE fro module pool program. Place Breakpoint anywhere in the code n try to run the tcode.It takes u into the debug mode.
    All the others function pool n so on are debugged just as u run report .
    Keep a break point n try to debug it.
    Or else use /h in tcode to debug it from starting.
    Regards,
    Priyanka.

  • I need help in making the programe which updates our code into client machi

    I need help in making the programme which updates our code into client machine from the server.
    As yahoo messanger does if there is any updated version of yahoo messanger.
    It asks when we login into it do you want to update new version of yahoo messanger
    It automatically updates it
    Need Help??

    Sounds to me like you need Java Web Start.

  • Help debug the program

    i have write an java program that come out with this error, how to solve it?
    postageApplet.java:5: postageApplet should be declared abstract; it does not
    define itemStateChanged(java.awt.event.ItemEvent) in postageApplet
    public class postageApplet extends Applet implements ItemListener,ActionListener
    ^
    what does it mean by abstract here?

    You said the class implements ItemListener but you have not defined the methods for that interface. Abstract classes can have abstract methods, or methods that have a prototype but are not defined. If you made the class abstract it would compile because the methods for the interface would be considered abstract.
    To fix the problem implement the methods for the interfaces you are using.

  • Please help me debug this program unit!!!!!

    dear sir,
    i tried diligently to find and to debug this tiny program unit,although my observation to the coding rules of the packages ,compilation error still occur.
    therefore,kindly i'm asking you sir to learn me how to correct it.
    thank you.
    create or replace package test_pack is
    type emp_table_type is table of emp.sal%type
    index by binary_integer;
    emp_list emp_table_type;
    function test_sal
    (v_sal in emp.sal%type)
    return emp_table_type;
    end test_pack;
    create or replace package body test_pack is
    temp emp.sal%type;
    cursor emp_cursor is
    select sal from emp;
    i number :=1;
    j number :=1;
    function test_sal
    (v_sal in emp.sal%type)
    return emp_table_type
    is
    open emp_cursor;
    loop
    fetch emp_cursor into temp;
    if temp < v_sal then
    emp_list(i):=temp;
    bms_output.put_line('rowcount i='||emp_cursor%rowcount);
    dbms_output.put_line('iterator i='||i);
    i:=i+1;
    else
    dbms_output.put_line('rowcount j='||emp_cursor%rowcount);
    dbms_output.put_line('iterator j='||j);
    j:=j+1;
    end if;
    if emp_cursor%notfound then
    dbms_output.put_line('cursor closed...');
    close emp_cursor;
    return emp_list;
    exit;
    end if;
    end loop;
    end test_pack;

    You can use "show err" to show the errors after compilation errors occur:
    SQL> create or replace package test_pack is
      2    type emp_table_type is table of emp.sal%type index by binary_integer;
      3    emp_list emp_table_type;
      4    function test_sal(v_sal in emp.sal%type) return emp_table_type;
      5  end test_pack;
      6  /
    Package is aangemaakt.
    SQL> create or replace package body test_pack is
      2    temp emp.sal%type;
      3    cursor emp_cursor is
      4    select sal from emp;
      5    i number :=1;
      6    j number :=1;
      7
      8    function test_sal
      9    (v_sal in emp.sal%type)
    10    return emp_table_type
    11    is
    12      open emp_cursor;
    13      loop
    14        fetch emp_cursor into temp;
    15        if temp < v_sal then
    16          emp_list(i):=temp;
    17          bms_output.put_line('rowcount i='||emp_cursor%rowcount);
    18          dbms_output.put_line('iterator i='||i);
    19          i:=i+1;
    20        else
    21          dbms_output.put_line('rowcount j='||emp_cursor%rowcount);
    22          dbms_output.put_line('iterator j='||j);
    23          j:=j+1;
    24        end if;
    25        if emp_cursor%notfound then
    26          dbms_output.put_line('cursor closed...');
    27          close emp_cursor;
    28          return emp_list;
    29          exit;
    30        end if;
    31      end loop;
    32  end test_pack;
    33  /
    Waarschuwing: package-body is aangemaakt met compilatiefouten.
    SQL> show err
    Fouten voor PACKAGE BODY TEST_PACK:
    LINE/COL ERROR
    14/7     PLS-00103: Symbool "FETCH" aangetroffen terwijl een van de
             volgende werd verwacht:
             constant exception <een ID>
             <een scheidingsteken-ID tussen dubbele aanhalingstekens>
             table LONG_ double ref char time timestamp interval date
             binary national character nchar
    32/5     PLS-00103: Symbool "TEST_PACK" aangetroffen terwijl een van de
             volgende werd verwacht:
             ;To make your program compile, add a begin and end and fix the typo (in bold):
    SQL> create or replace package body test_pack is
      2    temp emp.sal%type;
      3    cursor emp_cursor is
      4    select sal from emp;
      5    i number :=1;
      6    j number :=1;
      7
      8    function test_sal
      9    (v_sal in emp.sal%type)
    10    return emp_table_type
    11    is
    12    begin
    13      open emp_cursor;
    14      loop
    15        fetch emp_cursor into temp;
    16        if temp < v_sal then
    17          emp_list(i):=temp;
    18          dbms_output.put_line('rowcount i='||emp_cursor%rowcount);
    19          dbms_output.put_line('iterator i='||i);
    20          i:=i+1;
    21        else
    22          dbms_output.put_line('rowcount j='||emp_cursor%rowcount);
    23          dbms_output.put_line('iterator j='||j);
    24          j:=j+1;
    25        end if;
    26        if emp_cursor%notfound then
    27          dbms_output.put_line('cursor closed...');
    28          close emp_cursor;
    29          return emp_list;
    30          exit;
    31        end if;
    32      end loop;
    33    end;
    34  end test_pack;
    35  /
    Package-body is aangemaakt.
    SQL> declare
      2    t test_pack.emp_table_type;
      3  begin
      4    t := test_pack.test_sal(2000);
      5    for i in 1..t.count
      6    loop
      7      dbms_output.put_line(t(i));
      8    end loop;
      9  end;
    10  /
    rowcount i=1
    iterator i=1
    rowcount i=2
    iterator i=2
    rowcount i=3
    iterator i=3
    rowcount j=4
    iterator j=1
    rowcount i=5
    iterator i=4
    rowcount j=6
    iterator j=2
    rowcount j=7
    iterator j=3
    rowcount j=8
    iterator j=4
    rowcount j=9
    iterator j=5
    rowcount i=10
    iterator i=5
    rowcount i=11
    iterator i=6
    rowcount i=12
    iterator i=7
    rowcount j=13
    iterator j=6
    rowcount i=14
    iterator i=8
    rowcount i=14
    iterator i=9
    cursor closed...
    800
    1600
    1250
    1250
    1500
    1100
    950
    1300
    1300
    PL/SQL-procedure is geslaagd.To fix the bug of the last iteration and put the variables in the sections they belong:
    SQL> create or replace package test_pack is
      2    type emp_table_type is table of emp.sal%type index by binary_integer;
      3    function test_sal(v_sal in emp.sal%type) return emp_table_type;
      4  end test_pack;
      5  /
    Package is aangemaakt.
    SQL> create or replace package body test_pack
      2  is
      3    function test_sal(v_sal in emp.sal%type) return emp_table_type
      4    is
      5      emp_list emp_table_type;
      6      temp emp.sal%type;
      7      cursor emp_cursor is select sal from emp;
      8      i number :=1;
      9      j number :=1;
    10    begin
    11      open emp_cursor;
    12      loop
    13        fetch emp_cursor into temp;
    14        if emp_cursor%notfound then
    15          dbms_output.put_line('cursor closed...');
    16          exit;
    17        end if;
    18        if temp < v_sal then
    19          emp_list(i):=temp;
    20          dbms_output.put_line('rowcount i='||emp_cursor%rowcount);
    21          dbms_output.put_line('iterator i='||i);
    22          i:=i+1;
    23        else
    24          dbms_output.put_line('rowcount j='||emp_cursor%rowcount);
    25          dbms_output.put_line('iterator j='||j);
    26          j:=j+1;
    27        end if;
    28      end loop;
    29      close emp_cursor;
    30      return emp_list;
    31    end;
    32  end test_pack;
    33  /
    Package-body is aangemaakt.
    SQL> declare
      2    t test_pack.emp_table_type;
      3  begin
      4    t := test_pack.test_sal(2000);
      5    for i in 1..t.count
      6    loop
      7      dbms_output.put_line(t(i));
      8    end loop;
      9  end;
    10  /
    rowcount i=1
    iterator i=1
    rowcount i=2
    iterator i=2
    rowcount i=3
    iterator i=3
    rowcount j=4
    iterator j=1
    rowcount i=5
    iterator i=4
    rowcount j=6
    iterator j=2
    rowcount j=7
    iterator j=3
    rowcount j=8
    iterator j=4
    rowcount j=9
    iterator j=5
    rowcount i=10
    iterator i=5
    rowcount i=11
    iterator i=6
    rowcount i=12
    iterator i=7
    rowcount j=13
    iterator j=6
    rowcount i=14
    iterator i=8
    cursor closed...
    800
    1600
    1250
    1250
    1500
    1100
    950
    1300
    PL/SQL-procedure is geslaagd.To be really efficient and not care about looping, using counters and dbms_output, and assuming the emp table won't ever be a big table (else use the LIMIT clause):
    SQL> create or replace package body test_pack
      2  is
      3    function test_sal(v_sal in emp.sal%type) return emp_table_type
      4    is
      5      emp_list emp_table_type;
      6    begin
      7      select sal bulk collect into emp_list
      8        from emp
      9       where sal < v_sal
    10      ;
    11      return emp_list;
    12    end;
    13  end;
    14  /
    Package-body is aangemaakt.
    SQL> declare
      2    t test_pack.emp_table_type;
      3  begin
      4    t := test_pack.test_sal(2000);
      5    for i in 1..t.count
      6    loop
      7      dbms_output.put_line(t(i));
      8    end loop;
      9  end;
    10  /
    800
    1600
    1250
    1250
    1500
    1100
    950
    1300
    PL/SQL-procedure is geslaagd.Hope it helps.
    Regards,
    Rob.

  • When I downloaded to iPad, it removed my icons, how do I uninstall? It is not helping me with the program I need for homeschooling. Please tell me how to uninstall from my iPad. Thank you

    I downloaded firefox to my pc to sync to my iPad. However, when it downloaded to my iPad, it removed all my desktop icons and is not working with my homeschooling program. I need to uninstall it from my iPad. Please let me know how to do this. Thank you.
    Mrs. Chapman

    Michael'sgot this one covered. He has detailed the process at the link below.
    https://discussions.apple.com/thread/3653100?tstart=0

  • Need help to debug the ACL

    Hi Folks,
    I am trying to implement an Access Control List. While I can successfully access the network service as sys user, but not as the test1 user.
    I was wondering, if somebody might be able to take a look at my code and point out my mistake.
    DB Version: *11.2.0.1.0*
    Platform: Windows 7 (64 bit)
    ACL Creation Code:
    # Create a user
    CREATE USER test1 IDENTIFIED BY xxxxxx;
    GRANT CONNECT TO test1;
    # Create the ACL
    BEGIN
      dbms_network_acl_admin.create_acl (
        acl                  => 'test_acl_file.xml',
        description          => 'A test of the ACL functionality',
        principal            => 'TEST1',
        is_grant             => TRUE,
        PRIVILEGE      => 'connect',
        start_date           => SYSTIMESTAMP,
        end_date        => NULL);
      COMMIT;
    END;
    BEGIN
      dbms_network_acl_admin.assign_acl (
        acl       => 'test_acl_file.xml',
        host      => 'dbaexpert.com',
        lower_port  => NULL,
        upper_port  => NULL); 
    END;
    Test Results:
    User: sys
    SELECT utl_http.request('http://www.dbaexpert.com')
    from DUAL;
    Output:
    UTL_HTTP.REQUEST('HTTP://WWW.DBAEXPERT.COM')                                                                                                                                                                                                   --------------------------------------------------------------------------------------
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><head>                                                                                                                                                                                                                                                                       ......
    </head>
    User: test1
    Executing the above statement as "test1" user
    Output:
    Error starting at line 1 in command:
    SELECT utl_http.request('http://www.dbaexpert.com')
    from DUAL
    Error report:
    SQL Error: ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1722
    ORA-24247: network access denied by access control list (ACL)
    ORA-06512: at line 1
    29273. 00000 -  "HTTP request failed"
    *Cause:    The UTL_HTTP package failed to execute the HTTP request.
    *Action:   Use get_detailed_sqlerrm to check the detailed error message.
               Fix the error and retry the HTTP request.                                                      
    Sanity Check:
    select ACL,
           PRINCIPAL,
           privilege,
           IS_GRANT
    from DBA_NETWORK_ACL_PRIVILEGES;
    Output:
    ACL||','||PRINCIPAL||','||PRIVILEGE||','||IS_GRANT 
    /sys/acls/test_acl_file.xml,TEST1,connect,true                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thanks in advance
    rogers42

    Do you use a proxy to connect to the external http server ? If so, you will also need to add the proxy to the ACL
    UTL_HTTP.REQUEST Fails with ORA-24247 Even if the Called HTTP Server is Associated to the ACL [ID 972052.1]
    Understanding DBMS_NETWORK_ACL_ADMIN With Example [ID 1080105.1]
    HTH
    Srini

  • Need help with accessing the program.

    I need help with accessing my adobe creative cloud on my windows 8.1 laptop. I have an account but do not have an app. I need this for my online classes. Please help!

    Link for Download & Install & Setup & Activation may help
    -Chat http://www.adobe.com/support/download-install/supportinfo/

  • Debuging the ABAP Programs

    Generally how does the ABAPer do debug the programs in real time environment, and how to check the the performance of the programs.

    Hi,
    there are few methods for the same..
    one using a break point(stop button in editor),
    using tcode /h or going to utilities - abap debugger.
    performance you can check using tcode se30.
    if you want to learn debugging for all the objects go through these links..
    <b>and do reward all the helpful answers for all your questions</b>
    ABAP DEBUGGING
    http://help.sap.com/saphelp_webas620/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9cbb7716-0a01-0010-58b1-a2ddd8361ac0
    Debug Program scheduled Background
    Re: Debugging Report which is scheduled in background
    regards,
    pankaj singh

  • App. Error - Click on OK to terminate the program Click CANCEL to debug ???

    this is the wondow that pops up
    Application Error
    The exception Privileged instruction.
    (0xc0000096) occurred in the application at location 0x1004ece0.
    Click on OK to terminate the program
    Click on CANCEL to debug the program
    Anyone seen this window that pops up randomly??? The cancel button just freezes iTunes and the OK button just closes it immediately. Anything info on this would be amazing. I'm not sure if its my computer's fault or what.
    Uninstalling and re-installing hasn't worked.
    Thanks...

    Ok I saw on a previous post to look for Add-ins and plug ins but I checked to make sure and I do not have any.
    The other window that comes up says iTunes has encountered a problem and needs to be closed immediately

Maybe you are looking for