No_data_found exeception

Hi
I have a procedure..Like
CREATE OR REPLACE PROCEDURE Customer_Login (
in_web_login          IN      SLA_CUSTOMER_MASTER.WEB_LOGIN%TYPE,           --1
in_web_password       IN      SLA_CUSTOMER_MASTER.WEB_PASSWORD%TYPE,       --2
out_code_error        OUT   VARCHAR2,        -- OUT   -- return the error code according with customer Login
out_msg_error         OUT   VARCHAR2         -- OUT   -- return the error description
AS
--###    Customer Login
password_age                      NUMBER;                -- Days from pwd_exp_date to in check date
return_txt                        VARCHAR2 (100);     -- Message to be returned (may be NULL)
--###       EXCEPTIONs
e_invalidLogin                         EXCEPTION;       
e_expiredPassword                      EXCEPTION;        
BEGIN
     SELECT     Trunc(sysdate - pwd_exp_dt)
     INTO     password_age
     FROM     SLA_CUSTOMER_MASTER
     WHERE     web_login       = in_web_login
     AND     web_password     = in_web_password;
     IF    password_age > 180
     THEN
          return_txt := 'Your password has expired.';
  ELSE
  IF password_age > 165 AND password_age < 180
     THEN
          return_txt := 'Your password will expire very soon.  Please change your old password.';
     END IF;
     END IF;
     dbms_output.put_line(return_txt);
  IF in_web_login IS NULL OR in_web_password IS NULL/ not a valid login /password
  THEN
     RAISE e_invalidLogin;
  END IF;
EXCEPTION
   WHEN   e_invalidLogin                     THEN ROLLBACK; out_code_error := SQLCODE;out_msg_error :='ORA-2000 - Invalide login';
   WHEN   e_expiredPassword                  THEN ROLLBACK; out_code_error := SQLCODE;out_msg_error :='ORA-2000 - Expired password';
END Customer_Login ;I need to handle above exceptions..If I tried for e_invalidlogin..I am getting no_data_found exception...Please help me.
how to aviod this exception.
Regards
SA

CREATE OR REPLACE PROCEDURE Customer_Login(
                                           in_web_login    IN SLA_CUSTOMER_MASTER.WEB_LOGIN%TYPE, --1
                                           in_web_password IN SLA_CUSTOMER_MASTER.WEB_PASSWORD%TYPE, --2
                                           out_code_error  OUT VARCHAR2, -- OUT   -- return the error code according with customer Login
                                           out_msg_error   OUT VARCHAR2 -- OUT   -- return the error description
                                           ) AS
  --###    Customer Login
  password_age NUMBER; -- Days from pwd_exp_date to in check date
  return_txt   VARCHAR2(100); -- Message to be returned (may be NULL)
  --###       EXCEPTIONs
  e_invalidLogin EXCEPTION;
  e_expiredPassword EXCEPTION;
BEGIN
  BEGIN
    SELECT Trunc(sysdate - pwd_exp_dt)
      INTO password_age
      FROM SLA_CUSTOMER_MASTER
     WHERE web_login = in_web_login
       AND web_password = in_web_password;
  EXCEPTION
    WHEN NO_DATA_FOUND THEN
      return_txt := 'Invalide login';
      RAISE e_invalidLogin;
  END;
  IF password_age > 180 THEN
    return_txt := 'Your password has expired.';
  ELSE
    IF password_age > 165 AND password_age < 180 THEN
      return_txt := 'Your password will expire very soon.  Please change your old password.';
    END IF;
  END IF;
  dbms_output.put_line(return_txt);
  BEGIN
    IF in_web_login IS NULL OR in_web_password IS NULL THEN
      RAISE e_invalidLogin;
    END IF;
  EXCEPTION
    WHEN e_invalidLogin THEN
      ROLLBACK;
      out_code_error := SQLCODE;
      out_msg_error  := 'ORA-2000 - Invalide login';
    WHEN e_expiredPassword THEN
      ROLLBACK;
      out_code_error := SQLCODE;
      out_msg_error  := 'ORA-2000 - Expired password';
  END;
END Customer_Login;

Similar Messages

  • No_data_found raised when data exists

    Hi
    I have a function which is returning no data found in forms 10g (Forms [32 Bit] Version 10.1.2.3.0 (Production))
    FUNCTION get_orderno RETURN VARCHAR2 IS
    cursor x_cur (c_picklist in varchar) is
    select distinct order_no
    from x where picklist_no in (c_picklist);
    c_plist varchar2(100) := '80H059071','80H059083' ; <--for argument sakes this is what c_plist should be and is returning after some processsing
    c_rlist varchar2(100);
    begin
    open x_cur(c_plist);
    fetch x_cur into c_rlist;
    close x_cur;
    message(c_rlist); pause;
    return c_rlist;
    end;
    when i call this function, c_rlist is NULL
    and the value used to call this function is also null;
    *** in sql*plus
    SQL> SELECT distinct order_no
    2 FROM x
    3 WHERE pick_list_no in (&list);
    Enter value for list: '80H059071','80H059083'
    old 3: WHERE pick_list_no in (&list)
    new 3: WHERE pick_list_no in ('80H059071','80H059083')
    ORDER_NO
    R7115829
    1) I am connected to same database
    2) if i hard code those values in '80H059071','80H059083' in my cursor it returns correct order no
    Any suggestions please
    Cheers

    hi, thanks for replying. I just tested in ToAD
    declare
    c_picklist varchar2(100);
    l_picklist varchar2(100);
    begin
    dbms_output.put_line('here');
    c_picklist := ''''||('80H059071'',''80H059083')||'''';
    dbms_output.put_line('val of input picklist is '||c_picklist);
    SELECT distinct order_no
    into l_picklist
    FROM x
    WHERE pick_list_no in (c_picklist);
    dbms_output.put_line('val of output picklist is '||l_picklist);
    exception when no_data_found then
    dbms_output.put_line('val of picklist input is '||c_picklist);
    dbms_output.put_line('val of picklist output is '||l_picklist);
    end;
    **output***
    here
    val of input picklist is '80H059071','80H059083'
    val of picklist input is '80H059071','80H059083'
    val of picklist output is
    Ok so you are not surprised that I received no values, why is that? is it a feature of Forms? or is there something else I need to do??
    Thanks

  • How to handle no_data_found in Page/Regions/Body/Report

    Hi,
    I am new to APEX. I have a report in a the Region area of a Page. The Region Source allows me to enter only SELECT statement, no BEGIN/EXCEPTION/END are allowed. How can I handle a no_data_found exception in a report?
    Many thanks.

    Thanks for the solution. I tried it, and got with an error:ORA-06550: line 19, column 5: PLS-00372: In a procedure, RETURN statement cannot contain an expression ORA-06550: line 19, column 5: PL/SQL: Statement ignored ORA-06550: line 21, column 5: PLS-00372: In a procedure, RETURN statement cannot contain an expression ORA-06550: line 21, column 5: PL/SQL: Statement ignored
    It looks like I am missing something.>
    Post your code here in &#123;code&#125; tags.
    My guess is you are not escaping single quotes or are not concatenating your Page Item
    It should be something like ...
    s1 vahracr2(4000) := 'select ..., ''A'' ,... from... where PID = '|| DBMS_ASSERT.ENQUOTE_LITERAL(:P1_CMDCODE);Note the quoting around A to escape the apostrophe and the use of concat.
    Cheers,
    Edited by: Prabodh on Aug 22, 2012 8:46 PM

  • How to continue the loop after getting the exception NO_DATA_FOUND

    I am inserting 2000 employees attendance data into table through procedure by validating the shifts assigned some times if employee doesn't have shift it raising NO_DATA_FOUND exception, so now I am inserting the details of the employee into one table as a log.
    my question is if 2000 transactions are inserting if exception raised at 1000 record as "NO_DATA_FOUND" is it remaining records will insert into the table? or it will exit from the procedure and stops remaining 1000 transactions?, please advice if any other way to continue the remaining transactions
    oracle version: 11 G R2, OS: Windows 2008 R2

    Do your select statement in a seperate begin...end block, you can cath the excption in the block and do your logging there.
    Something like this
    --just an example from scott/tiger
    Declare
    CNT number := 7851 ;
    vname varchar2(25);
    ins_flag boolean ;
    BEGIN
    while cnt  <= 7935 and cnt >=7850
    LOOP
    Begin
    select ename into vname from emp where empno=cnt ;
    ins_flag := true;
    exception
      when no_data_found then
    -- dbms_output.put_line('no data');
    ins_flag := false;
    end;
      if ins_flag then
      --do insert here
      dbms_output.put_line('do your insert here');
    else
      dbms_output.put_line('no insert');
    end if;
      cnt := cnt+1 ;
    END LOOP;
    end;

  • Unexpected NO_DATA_FOUND exception corrupting data

    First off:
    Application Express 4.0.2.00.06 on Solaris
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    I'm having a very frustrating, intermittent, non-replicable problem with my ApEx application. I have seen about two dozen instances of this issue in the last 6 months. From the best of my debugging abilities, it appears that within one of my page processes is a very simple select with one bound variable (see below) that is throwing the "NO_DATA_FOUND" exception even though I know there is exactly one matching row. The data we are querying for was inserted in a transaction which was committed 18 hours prior (in the most recent case).
    BEGIN
    SELECT status INTO l_status FROM orders o, status s WHERE o.status_id=s.status_id AND o.order_id=:P11_ORDER_ID;
    EXCEPTION WHEN NO_DATA_FOUND THEN
    l_status := '';
    END;
    The expected result is l_status == 'OPEN' (1), but instead we're getting a null value. All of my trigger-based audit logs, debugging log, and the flashback data indicate that value of :P11_ORDER_ID is correct, the matching row existed, and o.status_id was set to integer value 1 during the time that the error occurred.
    Are there any other reasons for this exception to be raised?
    I've updated my debugging messages to confirm that the exception code is the source of the null value, but now I have to wait for another week or two to hopefully get the results of that test.
    Thanks,
    Jason Gullickson

    Update -- we had another run in with this issue today, and the updated debugging message confirmed that the error message was indeed "ORA-01403: no data found" and code was 100.
    Once again, the row existed, the query id was correct, and the target column was not null -- and yet we were given the NO_DATA_FOUND exception.
    -Jason

  • Okay so i had an iphone 5.  I backed it up on icloud. Then i got the new iphone 5s i restored ot from icloud from my previous iphone 5.  Now everything works find execept now the games are slowy and drops the frame rate and look choppy. Please help.

    Okay so i had an iphone 5.  I backed it up on icloud. Then i got the new iphone 5s i restored ot from icloud from my previous iphone 5.  Now everything works find execept now the games are slowy and drops the frame rate and look choppy. Then i restarted my iphone 5s as a new device downloaded the same apps even the ones optimized for ios 7 and the games still lag. And i just got my iphone 5s replace.  The funny thing is.  While im playing games and their running choppy and slow and if i take a snap shot inside the phone. They run smooth and HD but just for a few seconds and boom they go back to slow and choppy.  Is it the ios 7 or the iphone 5s it self? Like i said this is my replacement iphone 5s because the other 5s did the same thing. And it was running slowly.

    As far as I know you can't delete the primary email address for an iCloud account.  It's assigned when the account is created.  But your neighbor wouldn't have been able to get into your iCloud account without your Apple ID and password.  Are you sure the account wasn't still on your phone when you gave it to him?
    You could migrate a copy of your data to a new iCloud account but I would still be concerned that someone else was using my old account, which presumably still has your data in it.
    I'm fairly certain that you're going to have to have iCloud support help you sort this one out as they may have the ability to make changes to an existing account that users can't.  Make an appointment with the genius bar at a nearby Apple store and have them take a look at it.  If necessary, they should be able to contact iCloud support for you.

  • Exit CL_HRASR00_POBJ_WF_EXIT triggered exeception for event STATE_CHG and (target) status READY- ERROR EVENT_RAISED - Error updating the process object

    Hi All
    I have set up a simple custom HCM process and Form regarding Infotype TO CREATE AND CHANGE POSITION. I have checked the process and form consistency and it seems fine. Now when I run the process from HRASR_DT it generates a process number but it also gives an error workflow could not start.I get following error (SWIA log - Step history)
    Executing flow work item - Transaction brackets of the workflow has been damaged
    Exception occurred - Error when starting work item 000000007031
    PROCESS_NODE - Error when processing node '0000000014' (ParForEach index 000000)
    CREATE - Error when creating a component of type 'Step'
    CREATE_WIM_HANDLE - Error when creating a work item
    CREATE_VIA_WFM - Exit CL_HRASR00_POBJ_WF_EXIT triggered exeception for event CREATED and (target) status
    EVENT_RAISED - Error updating the process object
    Executing flow work item - Exit CL_HRASR00_POBJ_WF_EXIT triggered exeception for event STATE_CHG and (target) status READY->ERROR
    EVENT_RAISED - Error updating the process object
    Executing flow work item - Transaction brackets of the workflow has been damaged
    Executing flow work item - Work item 000000007031: Object FLOWITEM method EXECUTE cannot be executed
    Executing flow work item - Error when processing node '0000000014' (ParForEach index 000000)
    Points to be noted:
    1) I have searched few SAP notes such as 1384961(Notes for 6.0.4) but our system is in higher level patch 6.0.5
    2) WF-BATCH have SAP_NEW and SAP_ALL authorization.
    Appreciate your valuable suggestions.
    Thanks
    Ragav

    Hi Ragav
    did you try to debug this? maybe something is missing in config of P&F?
    Since you are on 605, the following note would be there in your system....use it to debug:
    1422496 - Debugging background workflow tasks in HCM P&F
    This will help you find the root cause.
    regards,
    modak

  • ORA-01403 no_data_found when saving the record in the custom form

    My custom form has 2 windows with 3 blocks. The first window has the BATCH block while the second window contains the HEADERS and LINES blocks. User go to first window, enter the batch info and save the record with no issue. Now user go to second window, enter the header info and save. Now we have the ORA-01403 no_data_found error. My custom form only have few SQLs and I put exception blocks on all of them but no_data_found still shows.
    Besides explicitly-used SQL statements, I wonder where else may have triggered the NO_DATA_FOUND error?
    Thanks, Mike.

    Hi!
    If an exception is raised in forms and an exception handler
    tries to show the dbms_error_text function, you will get
    the ORA-01403 no_data_found message too, if there is no database error.
    Regards

  • Oracle ODBC driver: NO_DATA_FOUND blocked

    Hello,
    I found that NO_DATA_FOUND exceptions thrown inside stored_procedures are sometimes not propagated to ODBC errors. This happens with the Oracle ODBC driver, but not with the MS one (the MS one does propagate the exception/error).
    Test-Procedure:
    Create or Replace Procedure throws_exception(p1 in number)
    IS
    BEGIN
    raise NO_DATA_FOUND;
    END;
    If I call this stored_procedure the ODBC call will return with no errors:
    Begin THROWS_EXCEPTION(1); end;
    Versions:
    - oracle server: 10.02
    - oracle driver: 10.02
    - mirosoft driver: 2.575
    Is this a known bug in the oracle ODBC driver, or is this a bad setup, etc?
    If this is a bug, it is a very inconvenient one, because basically it means your stored_procedure can fail completely silentely. It implies that the use of the oracle driver is completely unreliable.
    I have copied this text from another user, he got no answer to this :-(
    Thanks
    Joachim Paulus
    Message was edited by:
    user517727
    Message was edited by:
    user517727

    Any answers? Same problem on 10.2.0.2.0

  • Handling no_Data_found and handling the cursor context not found exceptions

    hi all,
    when the value is not there in table, we will get the no_data_found exception.
    im sending the sample procedure.
    check that one.
    create or replace procedure registration.P_GetPatientDetails(in_UHID in Patient.Uhid%Type,
    ocursor_Component1 OUT SYS_REFCURSOR,
    ---ocursor_Component2 OUT SYS_REFCURSOR,
    ocursor_Component3 OUT SYS_REFCURSOR,
    ocursor_Component4 OUT SYS_REFCURSOR
    AS
    in_RegistrationID varchar2(50);
    ln_genderLovID NUMBER(10);
    ln_rhfactorLovID NUMBER(10);
    BEGIN
    SELECT RegistrationId
    into in_RegistrationID
    from Patient
    where (Upper(UHID) = Upper(in_UHID)) ;
    /* COMMIT;*/
    /*dbms_output.put_line(in_RegistrationID);*/
    OPEN ocursor_Component1 FOR
    SELECT RegistrationID,PreRegistrationNo,EmergencyNo,UHID
    FROM patient p LEFT OUTER JOIN EHIS.Titlemaster TM ON p.title = tm.titlecode LEFT OUTER JOIN EHIS.SuffixMaster SM on p.sufix = SM.SUFFIXCODE LEFT OUTER JOIN EHIS.Maritalstatusmaster MSM ON MSM.MARITALSTATUSID = p.maritalstatus LEFT OUTER JOIN EHIS.Bloodgroupmaster BGM ON BGM.BLOODGROUPID = p.bloodgroup LEFT OUTER JOIN EHIS.LovDetail LD ON(LD.LOVDETAILID = p.gender AND LD.LOVID = ln_genderLovID) LEFT OUTER JOIN EHIS.LovDetail rf ON(rf.LOVDETAILID = p.rhfactor AND rf.LOVID = ln_rhfactorLovID)
    WHERE RegistrationID = in_RegistrationID AND p.Status = 1 ;
    OPEN ocursor_Component3 FOR
    SELECT RegistrationID,ResidenceNumber,MobileNumber,PrimaryEmail
    FROM AddressMaster
    WHERE UPPER(RegistrationID) = UPPER(in_RegistrationID) AND Status = 1 AND
    AddressTypeID =
    (SELECT AddressTypeID
    FROM AddressTypeMaster
    WHERE AddressTypeName = 'PermanentAddress');
    /* COMMIT;*/
    OPEN ocursor_Component4 FOR
    SELECT ResidenceNumber, MobileNumber,EmergencyNumber,PrimaryEmail
    FROM AddressMaster am LEFT OUTER JOIN EHIS.Countrymaster CM ON CM.COUNTRYID = am.country LEFT OUTER JOIN EHIS.Statemaster SM ON SM.STATEID = am.state LEFT OUTER JOIN EHIS.Districtmaster DM ON DM.DISTRICTID = am.district LEFT OUTER JOIN EHIS.Citymaster CM1 ON CM1.CITYID = am.city
    WHERE UPPER(RegistrationID) = UPPER(in_RegistrationID) AND Status = 1 AND
    AddressTypeID =
    (SELECT AddressTypeID
    FROM AddressTypeMaster
    WHERE AddressTypeName = 'CurrentAddress');
    /* COMMIT;*/
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE(TO_CHAR(SQLCODE) || SQLERRM);
    END;
    if the data is not there for teh given uhid,
    we are displaying the err msg in exception block
    but from .net environment ,
    they will define the cursors as out params.
    if they wont get the data,
    in .net environment, the exception is raised.
    how to handle these situations.

    Implicit cursors are prone to both the NO_DATA_FOUND and TOO_MANY_ROWS errors. They MUST return precisely one row or you get to do extra coding in the form of exception handlers. Using explicit cursors (declared in the DECLARE SECTION) will avoid both errors, though they have their own considerations. When an explict cursor doesn't find something it doens't put NULL into the destination variable(s); it leaves them alone so its a good idea to null out variables and records before fetching into them.

  • Select and function with no_data_found

    Hi,
    I came across this today (I remembered reading about it somewhere).
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> create function rahul_f return varchar2 as
    2 begin
    3 raise no_data_found;
    4 end rahul_f;
    5 /
    Function created.
    SQL> select rahul_f from dual;
    RAHUL_F
    SQL> declare
    2 i varchar2(1);
    3 begin
    4 i := rahul_f;
    5 end;
    6 /
    declare
    ERROR at line 1:
    ORA-01403: no data found
    ORA-06512: at "XX.RAHUL_F", line 3
    ORA-06512: at line 4
    SQL>
    So, I know this has something to do with 'no_data_found' mentioned here:
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14261/errors.htm#LNPLS00703
    'Because this exception is used internally by some SQL functions to signal completion, you should not rely on this exception being propagated if you raise it within a function that is called as part of a query.'
    Anybody have any link on explaining this part more? I looked around but, couldn't find any discussions on this.

    I had same experience few days back.
    First I dont think you need the funtion to call the exception.
    You can directly implement your code in the EXCEPTION block, if theres a no_data_found excpetion.
    This is my code..
    PROCEDURE modify_req_det(
    detail_id_in IN req_details.detail_id%TYPE,
    type_id_in IN req_details.req_type_id%TYPE,
    value_in IN VARCHAR2,
    parent_in IN req_details.parent%TYPE,
    sortorder_in IN req_details.sort_order%TYPE,
    groupid_in IN req_details.group_id%TYPE,
    errormsg OUT NOCOPY VARCHAR2) AS
    BEGIN
    SELECT DISTINCT lookup, col_name
    INTO v_lookup, v_colname
    FROM req_type t, req_details d
    WHERE parent = parent_in
    AND t.req_type_id = d.req_type_id;
    EXCEPTION
    WHEN no_data_found THEN
    UPDATE req_details SET
    req_type_id = type_id_in,
    value_id = v_valueId,
    parent = parent_in,
    sort_order = sortorder_in,
    group_id = groupid_in
    WHERE detail_id = detail_id_in;
    END modify_req_det;

  • Problems with NO_DATA_FOUND Exception

    Hi, I have experienced some problems with the NO_DATA_FOUND Exception. I have defined a cursor c. Then I have started a loop and a NO_DATA_FOUND Exception has rised. I handle this exception with un update clause but when the exception rises the loop does not continue anymore. What can I do in order to continue looping after the Exception rises???... I handle the NO-DATA_FOUND Exception in the Exception part of my code...
    Thanks in advance.-
    Alberto.-

    Thanks a lot Robert... I solved my problem by handling the exception within the loop as you told me. I attach the code if somebody has or had the same problem...
    Best regards.-
    Albert.-
    procedure GenerarSolicitudCompra (id_proveedor IN c_rfqresponse.c_bpartner_id%TYPE) is
    es_winner char(1);
    id_rfq number(10);
    cursor rfqs is select sqd.c_rfq_id from sqd_cotizaciones sqd;
    begin
    for r in rfqs loop
    id_rfq := r.c_rfq_id;
    begin
    select cr.isselectedwinner into es_winner from c_rfqresponse cr
    where cr.c_rfq_id = r.c_rfq_id
    and cr.c_bpartner_id = id_proveedor;
    exception
    when NO_DATA_FOUND then
    update sqd_cotizaciones sqd set sqd.win_rfqresponse = 'N'
    where sqd.c_rfq_id = id_rfq and sqd.c_bpartner_id = id_proveedor;
    commit;
    end;
    if es_winner = 'Y' then
    -- actualizar sqd_cotizaciones.win_rfqresponse con 'Y'
    update sqd_cotizaciones cot
    set cot.win_rfqresponse = 'Y'
    where cot.c_rfq_id = r.c_rfq_id
    and cot.c_bpartner_id = id_proveedor;
    commit;
    else
    -- actualizar sqd_cotizaciones.win_rfqresponse con 'N'
    update sqd_cotizaciones cot
    set cot.win_rfqresponse = 'N'
    where cot.c_rfq_id = r.c_rfq_id
    and cot.c_bpartner_id = id_proveedor;
    commit;
    end if;
    end loop;
    end GenerarSolicitudCompra;

  • 6i report ref cursor exception no_data_found

    I have a simple report with one ref cursor query on a database packaged procedure.
    The Data Model function has an exception handler for no_data_found.
    The exception sets a local variable in a program unit spec.
    A field with a message based on a place holder column does not return.
    I am trying to give some message to the user & am not having luck.
    Ideas?
    Thank you.

    You can create a text field with the text "No data found".
    This field gets a format trigger
    if <your condition for no data found> then
      return true;
    else
      return false;
    end;

  • Unhandled exeception has occurred in your application. On first time instal

    I am installing on a server 2003 for the first time. After loading it on the server, I begin to run Installer for my frist instance. After clicking finish on the 'Installation Tasks' screen, it runs until it gets to the 'Installing Webfiles'.  This is where I get the error. As I said this is a first time Web Tools 6 install.  I have a copy of the error message here:
    SAP Business One Web Tools Installer.
    Unhandled exeception has occurred in your application.  If you click Continue,the application will ignore this error and attempt to
    continue.  If you click Quit, the application will close immediately.
    Some or all identity references could not be translated.
    DETAILS:
    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.
    Exception Text **************
    System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.
       at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess)
       at System.Security.Principal.NTAccount.Translate(Type targetType)
       at System.Security.AccessControl.CommonObjectSecurity.ModifyAccess(AccessControlModification modification, AccessRule rule, Boolean& modified)
       at System.Security.AccessControl.CommonObjectSecurity.AddAccessRule(AccessRule rule)
       at System.Security.AccessControl.FileSystemSecurity.AddAccessRule(FileSystemAccessRule rule)
       at Installer.Workers.FileWorker.OnDoWork(DoWorkEventArgs e)
       at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)
    Loaded Assemblies **************
    mscorlib
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
    Installer
        Assembly Version: 2007.0.630.10
        Win32 Version: 2007.0.630.10
        CodeBase: file:///E:/Program%20Files/SAP/SAP%20Business%20One%20Web%20Tools/Installer/Installer.exe
    System.Windows.Forms
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    System
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    System.Drawing
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    System.Xml
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
    System.ServiceProcess
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.ServiceProcess/2.0.0.0__b03f5f7f11d50a3a/System.ServiceProcess.dll
    Accessibility
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
    System.Data
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll
    System.DirectoryServices
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.DirectoryServices/2.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.dll
    System.Configuration
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    System.Transactions
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.Transactions/2.0.0.0__b77a5c561934e089/System.Transactions.dll
    System.EnterpriseServices
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
    ChilkatDotNet2
        Assembly Version: 7.7.2379.17467
        Win32 Version: 7, 7, 0, 1
        CodeBase: file:///E:/Program%20Files/SAP/SAP%20Business%20One%20Web%20Tools/Installer/ChilkatDotNet2.DLL
    msvcm80
        Assembly Version: 8.0.50727.1433
        Win32 Version: 8.00.50727.1433
        CodeBase: file:///C:/WINDOWS/WinSxS/x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.1433_x-ww_5CF844D2/msvcm80.dll
    JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    For example:
    <configuration>
        <system.windows.forms jitDebugging="true" />
    </configuration>
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.
    Please help, I am at a standstill!!! and can't go any further on the Web Tools Installation.

    ASPNET is a local Windows user and when IIS executes .Net pages and has to access  website files it authenticates to the system as that user. For instance, when you save changes to a theme, such as associating a catalog, you are writing to the files in the /assets/* directory and are doing so as the ASPNET Windows user. This user then needs to have write access to the /assets/* directories for the website to not throw an access denied error.
    In IIS if you look at the application pool settings on the identity tab, you will see an option to choose which local user or group will be this designated "IIS user". Typically this is the local group "Network Service"  which contains the local user ASPNET.
    In the case of the Installer, it is attempting to give the correct permissions to the file directory that contains your website to the ASPNET user. Verify on that server if this user exists by looking at the computer management mmc snap-in then expanding Local Users and Groups and opening the Users folder.

  • Execeptions

    I just downloaded Creator to try it out. I went through the tutorials and now im starting to duplicate a c-cgi project to see how much easier it would be to develop it with Creator. Right now I have it connecting to an ingres database and the connection is fine. Ive only created a dropdown list and bound it to one of the tables so it will get populated with the data from the table. However when i run my project, i get three execeptions that I don't know how to fix:
    Exception Details: org.apache.jasper.JasperException
    java.lang.AbstractMethodError: ca.edbc.jdbc.EdbcMetaData.locatorsUpdateCopy()Z
    Possible Source of Error:
    Class Name: org.apache.jasper.servlet.JspServletWrapper
    File Name: JspServletWrapper.java
    Method Name: service
    Line Number: 384
    Exception Details: javax.faces.FacesException
    org.apache.jasper.JasperException: java.lang.AbstractMethodError: ca.edbc.jdbc.EdbcMetaData.locatorsUpdateCopy()Z
    Possible Source of Error:
    Class Name: com.sun.faces.context.ExternalContextImpl
    File Name: ExternalContextImpl.java
    Method Name: dispatch
    Line Number: 327
    Exception Details: com.sun.rave.web.ui.appbase.ApplicationException
    org.apache.jasper.JasperException: java.lang.AbstractMethodError: ca.edbc.jdbc.EdbcMetaData.locatorsUpdateCopy()Z
    Possible Source of Error:
    Class Name: com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl
    File Name: ViewHandlerImpl.java
    Method Name: destroy
    Line Number: 601
    If anybody could give me some help on how to solve this I would appreciate it.
    Thanks,
    Jason
    Message was edited by:
    jasonv

    Is that JDBC Driver for Ingres, a JDBC 3.0 compliant one?
    Please check out our Database FAQs on JDBC Driver Requirements.
    http://developers.sun.com/prodtech/javatools/jscreator/reference/faqs/technical/dbaccess/
    Thanks,
    Sakthi

Maybe you are looking for

  • HT204053 Can I merge two Apple ID accounts

    I have two Apple IDs, just cos I didn't really understand what I was doing when I set the first one up years ago and now I have two. Some purchases are on one and some are on the other. It also gets confusing with iCloud. Is it possible to merge the

  • How does one Change Memory the dividers(1:1 to 5:6, etc.) on the K8T Neo2-F?

    I have the 3.3 Bios and so far overclocking is a bit of a let down as most controls seem to be quite useless, I can go to about 226Mhz @ 1:1, Which with a 3200 90nm cpu is about 2.26GHz max and I'd like to go faster, Like maybe 2.4Ghz to 2.6Ghz or so

  • Some programs missing from app manager

    I downloaded the CS6 programs on the desktop with no problem. And I also knew that I could download them on one more computer so I did. But when I opened the app manager I noticed it didn't give "all" of the programs that I got from the other time li

  • My macbook just got really slow after I deleted a load of render files. Any advice appreciated.

    Hardware Information:           MacBook Pro (13-inch, Mid 2012)           MacBook Pro - model: MacBookPro9,2           1 2.9 GHz Intel Core i7 CPU: 2 cores           8 GB RAM Video Information:           Intel HD Graphics 4000 - VRAM: 512 MB System S

  • Why the click sound is not working after publishing?

    Hello all. I have around 190-200 slides in my project. I want my mouse object to have the click sound in some slides and without click sound in rest of the slides. Using its properties panel I have added click sound for the required slides. But after