Process page not throwing no data found error when you remove the item in a table

Hi guys,.

I'm trying to run a process page just before the process of MRU in tabular form and it is throwing an error no data found . Here is my code:
BEGIN
     
     for i in 1..apex_application.g_f02.count LOOP     
          
          IF apex_application.g_f01(i) is not null THEN
               
               UPDATE STOCK
                    SET PRODUCT_QUANTITY = PRODUCT_QUANTITY+apex_application.g_f08(i)
               WHERE site_id = :P21_SITE_ID and product_id = apex_application.g_f02(i);
               COMMIT;
               
          END IF;
     END LOOP;
END;
F01 here is the checkbox column and the if statement is the cause of the problem because if I get rid of the update statement (leaving just the commit) then it still throws the error.

When I click on a checkbox, and hit the Remove button what fires off times this process and then the MRU, I get the error not found data .

Would appreciate it if someone could shed some light on this. Thank you very much.

Published by: taepodong on July 1, 2012 07:54

Hello

>
I'm trying to run a process page just before the process of MRU in tabular form and he throws no data were found error. Here is my code:

BEGIN

     for i in 1..apex_application.g_f02.count LOOP     

          IF apex_application.g_f01(i) is not null THEN

               UPDATE STOCK
                    SET PRODUCT_QUANTITY = PRODUCT_QUANTITY+apex_application.g_f08(i)
               WHERE site_id = :P21_SITE_ID and product_id = apex_application.g_f02(i);
               COMMIT;

          END IF;
     END LOOP;
END;

Here f01 is the column of the box and the if statement is causing the problem because if I get rid of the update statement (leaving just the commit) then it still throws the error.

When I click on a checkbox and click on Remove button that triggers both this process and then MRU, I get the no found error of data.
>

You iterate over the f02 and seeking f01 not null. It's the misuse of the checkbox element. Please see these links. in particular the examples of process OnSubmit.
http://docs.Oracle.com/CD/E23903_01/doc/doc.41/e21676/apex_item.htm#CHDDCHAF
http://docs.Oracle.com/CD/E23903_01/doc/doc.41/e21676/apex_app.htm#AEAPI215

Kind regards

PS: That's what you need to understand
>
Note that the boxes displayed by using APEX_ITEM. CHECK box will only contain values in the APEX_APPLICATION tables for those lines that are checked. Unlike other elements (TEXT, TEXTAREA, and DATE_POPUP) that can contain an entry in the corresponding table of APEX_APPLICATION for all submitted ranks, a checkbox will be an entry in the APEX_APPLICATION table if this option is selected.
>

Published by: Dominique July 2, 2012 09:44

Tags: Database

Similar Questions

  • No data found error when clicking on an item whose property update_allowed set to false

    Hello Expert,

    I use the formula 10g. the trigger for the instance runs a times-news-shape following code:

    trigger name: My_trigger

    {code}

    DECLARE

    L_FIRST_BLOCK VARCHAR2 (50);

    L_LAST_BLOCK VARCHAR2 (50);

    L_CUR_BLOCK VARCHAR2 (50);

    L_NEXT_BLOCK VARCHAR2 (50);

    CUR_FORM VARCHAR (50): =: SYSTEM. CURRENT_FORM;

    L_BLOCK_TABLE VARCHAR2 (100);

    / * This program checks each database block table and set the updatable property according to the indicator of access. */

    BEGIN

    L_FIRST_BLOCK: = GET_FORM_PROPERTY (CUR_FORM, FIRST_BLOCK);

    L_LAST_BLOCK: = GET_FORM_PROPERTY (CUR_FORM, LAST_BLOCK);

    L_CUR_BLOCK: = L_FIRST_BLOCK;

    -Check each block in a loop

    LOOP

    -Check the name of the database block table

    L_BLOCK_TABLE: = GET_BLOCK_PROPERTY (L_CUR_BLOCK, QUERY_DATA_SOURCE_NAME);

    -Si Table is then check the indicator of access to each field and property accordingly

    IF NVL (L_BLOCK_TABLE,' ') <>' ' THEN

    DECLARE

    L_FIRST_ITEM VARCHAR2 (100);

    L_LAST_ITEM VARCHAR2 (100);

    L_CUR_ITEM VARCHAR2 (100);

    L_ACCESS VARCHAR2 (1);

    BEGIN

    L_FIRST_ITEM: = L_CUR_BLOCK |'. ' || GET_BLOCK_PROPERTY (L_CUR_BLOCK, FIRST_ITEM);

    L_LAST_ITEM: = L_CUR_BLOCK |'. ' || GET_BLOCK_PROPERTY (L_CUR_BLOCK, LAST_ITEM);

    L_CUR_ITEM: = L_FIRST_ITEM;

    LOOP

    IF Get_Item_Property(L_CUR_ITEM,ITEM_TYPE) NOT IN ("BUTTON", "CHART ITEM", 'DISPLAY ITEM', 'IMAGE', "VBX CONTROL") THEN

    IF Get_Item_Property (L_CUR_ITEM, ITEM_CANVAS) IS NOT NULL THEN

    IF Get_Item_Property (L_CUR_ITEM, ENABLED) <>'FALSE' THEN

    IF Get_Item_Property(L_CUR_ITEM,VISIBLE) <>'FALSE' THEN

    If Get_Item_Property (L_CUR_ITEM, CONCEAL_DATA) <>'TRUE' THEN

    L_ACCESS: = CHECK_ACCESS_FLAG(L_BLOCK_TABLE,USER,L_CUR_ITEM);

    IF L_ACCESS = "Y" THEN

    SET_ITEM_PROPERTY (L_CUR_ITEM, UPDATE_ALLOWED, PROPERTY_TRUE);

    -SET_ITEM_PROPERTY(L_CUR_ITEM,INSERT_ALLOWED,PROPERTY_TRUE);

    ON THE OTHER

    SET_ITEM_PROPERTY (L_CUR_ITEM, UPDATE_ALLOWED, PROPERTY_FALSE);

    -SET_ITEM_PROPERTY(L_CUR_ITEM,INSERT_ALLOWED,PROPERTY_FALSE);

    END IF;

    END IF;

    END IF;

    END IF;

    -OTHER

    -MESSAGE(L_CUR_ITEM||') CANVAS "|" Get_Item_Property (L_CUR_ITEM, ITEM_CANVAS)); MESSAGE(L_CUR_ITEM||) e CANVAS "|" Get_Item_Property (L_CUR_ITEM, ITEM_CANVAS));

    END IF;

    END IF;

    IF L_CUR_ITEM = L_LAST_ITEM THEN

    EXIT;

    END IF;

    L_CUR_ITEM: = L_CUR_BLOCK |'. ' || GET_ITEM_PROPERTY (L_CUR_ITEM, NEXTITEM);

    END LOOP;

    END;

    END IF;

    IF L_CUR_BLOCK = L_LAST_BLOCK THEN

    EXIT;

    END IF;

    L_CUR_BLOCK: = GET_BLOCK_PROPERTY (L_CUR_BLOCK, NEXTBLOCK);

    END LOOP;

    GO_BLOCK (L_FIRST_BLOCK);

    END;

    {code}

    Code trigger a time new form instance

    execute_trigger ('My_trigger');

    When I click on any item and try to update its display message status bar:

    FRM-1403, ora-01403 no data available.

    Should be given, the field is protected. or see the user define the message, like 'you can't update this field.

    Help, please.

    Thank you

    Yoann

    Just a wild guess, but maybe there are little code in your WE-ERROR-trigger which is not working properly.

  • Re: "insufficient privileges" error when you run the Java stored procedure in another schema

    I get an "insufficient privileges" error when you run the Java stored procedure in another schema, see details below.  I don't know what are missing privileges (I already granted the EXECUTE privilege), suggestions?  -Thank you.

    Define a simple java class and deploy it as a Java stored procedure to test:


    Schema: User1

    test of the package;

    public class HelloWorld {}

    public HelloWorld() {

    Super();

    }

    public static String Hello () {}

    Return "HELLO";

    }

    }

    CREATE or REPLACE FUNCTION HELLO RETURN VARCHAR2 AUTHID CURRENT_USER AS LANGUAGE JAVA NAME ' test. HelloWorld.hello () return java.lang.String';

    Grant execute on USER2 HELLO

    Test the Java stored procedure through the PL/SQL function call (in the same schema):


    Schema: User1

    SET SERVEROUTPUT ON

    DECLARE

    v_Return VARCHAR2 (200);

    BEGIN

    v_Return: = User1. HELLO;

    DBMS_OUTPUT. Put_line ('v_Return =' | v_Return);

    END;

    anonymous block filled

    v_Return = HELLO

    Test the Java stored procedure through the PL/SQL function call in a different pattern:


    Schema: USER2

    SET SERVEROUTPUT ON

    DECLARE

    v_Return VARCHAR2 (200);

    BEGIN

    v_Return: = User1. HELLO;

    DBMS_OUTPUT. Put_line ('v_Return =' | v_Return);

    END;

    Error report-

    ORA-01031: insufficient privileges

    ORA-06512: at "User1." HELLO', line 1

    ORA-06512: at line 4 level

    01031 00000 - "insufficient privileges".

    * Cause: An attempt was made to change the user name or password

    without the privilege appropriate. This error also occurs if

    trying to install a database without the need for employment

    access privileges.

    When Trusted Oracle is configure in DBMS MAC, this error may occur

    If the user has been granted the privilege necessary for a higher label

    that the connection is active.

    * Action: Ask the database to perform the operation or grant administrator

    the required privileges.

    For users Trusted Oracle get this error, well that granted the

    the privilege that is suitable for the top label, ask the database

    administrator to grant the privilege to the appropriate label.

    You have created the function with AUTHID CURRENT_USER, which means that the function is executed with the rights of the applicant (but not with the rights of the author). This means that the applicant must have grants (directly or through roles) on all used/accessible objects in the service. In your case the user USER2 has not granted with EXECUTE on the class/source Java test. Class HelloWorld, causing the ORA-01031 exception. You create service without AUTHID CURRENT_USER (i.e. with AUTHID DEFINE, which is by default, if you do not have a specific reason to use AUTHID CURRENT_USER) or grant EXECUTE on JAVA test SOURCE. Class HelloWorld to User2.

    Dimitar

  • Change the order of the columns does not cause any data found error report

    Hello. I have a weird problem (and I'm new to APEX). I have a subregion of report that shows the details of a master record based on the ID of the parent area. When I have everything first to change SQL for the query and apply the changes page works fine. When I go back and change the region > attributes report and use the arrows to change the order of the columns the region then returns:

    error report:
    ORA-01403: no data found

    I tried to change the query so that the columns found in the desired order and who has also not returned no data error. If I go back to my original query (which had 2 fewer columns) the page works again. Then I change to the new query (2 addtl columns), and then it works again, until I have change the order of the columns again. Don't know if it would be serious or not, but one of the columns is a 2 columns of the table concat.

    Any ideas would be appreciated, because I'm out of them.

    Thank you!

    use: Apex 4.0
    DB: 10g Exp

    "807428," Hi

    using 4.0 or 4.0.1? Can you reproduce the same problem on apex.oracle.com as well?

    Concerning
    Patrick
    -----------
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • I get an error when you start the process of windows 7 installation on ubuntu 9.04

    I'm on ubuntu 9.04 and I do not so I wanted to install windows 7 on it, but after clicking on install on Windows 7, the installation of a temporary file stops after 10 seconds with an error message:
    "Windows is unable to find a place to store temporary installation files. To install windows ensure that a partition on your startup disk has at least 685 MB of free space.   Error code 0 x 80070490

    Please help me and am using ubuntu 9.04

    You will need to repartition your hard disk, so that Windows does not recognize the file system that Ubuntu Linux uses by default (which is ext3). You can do within Ubuntu Linux using several different tools, or if you are more interested in the use of Ubuntu Linux you can repartition the disk in the installation of Windows.

    PLEASE NOTE: The following allows you to delete all the data contained on your hard drive. I can't be held responsible for any data loss that may be incurred. Please make sure that you back up your data before you run the following commands. Use at your own risk.

    Repartition the drive by using the Windows installation:

    1. Insert the Windows 7 installation in your DVD Player DVD.
    2. restart your computer and boot from the DVD drive when asked ("press any key to boot from the CD or DVD... »)
    3 Windows Setup will load, give him a few moments.
    4. When you see the installation screen of Windows 7 with "Windows Installer", press SHIFT + F10.
    5. in the command prompt window that appears, type diskpart and press ENTER.
    6. at the diskpart prompt, type select disk 0and press ENTER.
    7. at the diskpart prompt, type cleanand then press ENTER.
    8. the DiskPart utility removes all partitions on the hard drive as well as the master boot record (MBR).
    9. at the diskpart prompt, type exit and press ENTER.
    10. in the command prompt window, type exit.
    11. click on install Windows and follow the on-screen instructions.

    Kristan M. Kenney ("Nighthawk64"). My Blog: http://blog.kristankenney.com

  • Error when you use the feature Version «Back upward in a file»

    I run an error when you try to save a file version. The error is below to:

    There was an error trying to get the status of the job.

    1: the server returned an error during the processing of the action: CloseJob. Error message: String reference not set to an instance of a string.

    Parameter name: s

    As you can tell, he didn't give me much to do.

    Some background information:

    -J' trying to backup/export a version that has been upsized QA development

    -QA and development have the same version/patch 11.1.2.3.500

    -This version has been imported into the development, and then copied, and then mixed with a development version.

    -I did not receive any errors during this process

    -I am able to backup other files without getting this error

    Any help will be really appreciated.

    Thank you

    Aaron

    Hi Aaron,

    At first glance, it looks like there may be a string of property that is not a string data type. However, before you dig too deep, try to reload the version to see if that makes a difference. I had a similar problem before and it is solved.

    Thank you

    Jordan

  • DirectX error when you install the game: "an internal system error has occurred. See DXError.log and DirectX.log in your Windows folder to determine the problem.

    I am trying to install a game open source called Rigs of Rods on my dual-boot MacBook Pro with Windows 7 installed via Boot Camp. I get an error that prevents the installation of DirectX. I know that Win 7 includes DirectX 11, but this game does not currently support the DX 11. If I get this error when you try to install DirectX 9. I had a similar problem with another game that I tried installing on another machine Win 7 which is not started in dual mode, and install DirectX 9 worked perfectly. Here is my DXError.log and my DirectX.log.

    DXError.log

    --------------------
    [10/01/11 16:25:07] module: DXWSetup (Mar 16 2009), file: dxwsetup.cpp, line: 219, function: CDXWSetup::InitInstallEngine

    Sections are not initialized.

    --------------------
    [10/01/11 16:25:07] module: DXWSetup (Mar 16 2009), file: psheets.cpp, line: 472, function: PreinstDlgProc

    CDXWSetup::InitInstallEngine() failed.

    --------------------
    [10/01/11 16:27:26] module: DXWSetup (Nov 19 2010), file: dxwsetup.cpp, line: 229, function: CDXWSetup::InitInstallEngine

    Sections are not initialized.

    --------------------
    [10/01/11 16:27:26] module: DXWSetup (Nov 19 2010), file: psheets.cpp, line: 699, function: PreinstDlgProc

    CDXWSetup::InitInstallEngine() failed.

    --------------------
    [10/01/11 16:29:01] module: DXWSetup (Nov 19 2010), file: dxwsetup.cpp, line: 229, function: CDXWSetup::InitInstallEngine

    Sections are not initialized.

    --------------------
    [10/01/11 16:29:01] module: DXWSetup (Nov 19 2010), file: psheets.cpp, line: 699, function: PreinstDlgProc

    CDXWSetup::InitInstallEngine() failed.

    --------------------
    [10/01/11 16:29:56] module: DXWSetup (Nov 19 2010), file: dxwsetup.cpp, line: 229, function: CDXWSetup::InitInstallEngine

    Sections are not initialized.

    --------------------
    [10/01/11 16:29:57] module: DXWSetup (Nov 19 2010), file: psheets.cpp, line: 699, function: PreinstDlgProc

    CDXWSetup::InitInstallEngine() failed.

    --------------------
    [10/01/11 16:37:13] module: DXWSetup (Nov 19 2010), file: dxwsetup.cpp, line: 229, function: CDXWSetup::InitInstallEngine

    Sections are not initialized.

    --------------------
    [10/01/11 16:37:13] module: DXWSetup (Nov 19 2010), file: psheets.cpp, line: 699, function: PreinstDlgProc

    CDXWSetup::InitInstallEngine() failed.

    --------------------
    [10/01/11 16:56:45] module: DXWSetup (Nov 19 2010), file: dxwsetup.cpp, line: 229, function: CDXWSetup::InitInstallEngine

    Sections are not initialized.

    --------------------
    [10/01/11 16:56:45] module: DXWSetup (Nov 19 2010), file: psheets.cpp, line: 699, function: PreinstDlgProc

    CDXWSetup::InitInstallEngine() failed.

    --------------------
    [10/01/11 18:39:05] module: DXWSetup (Mar 16 2009), file: dxwsetup.cpp, line: 219, function: CDXWSetup::InitInstallEngine

    Sections are not initialized.

    --------------------
    [10/01/11 18:39:05] module: DXWSetup (Mar 16 2009), file: psheets.cpp, line: 472, function: PreinstDlgProc

    CDXWSetup::InitInstallEngine() failed.

    --------------------
    [11/01/11 08:45:06] module: DXWSetup (Feb 4 2010), file: dxwsetup.cpp, line: 219, function: CDXWSetup::InitInstallEngine

    Sections are not initialized.

    --------------------
    [11/01/11 08:45:06] module: DXWSetup (Feb 4 2010), file: psheets.cpp, line: 472, function: PreinstDlgProc

    CDXWSetup::InitInstallEngine() failed.

    DirectX.log

    10/01/11 16:24:54: DXWSetup: * DXWSETUP *.
    10/01/11 16:24:54: DXWSetup: WinMain()
    10/01/11 16:24:54: DXWSetup: IsIA64(): not IA64.
    10/01/11 16:24:54: DXWSetup: impossible to target the Version on the file C:\Windows\system32\directx\websetup\dsetup.dll
    10/01/11 16:24:54: DXWSetup: installed files C:\Windows\system32\directx\websetup\dsetup.dll
    10/01/11 16:24:54: DXWSetup: impossible to target the Version on the file C:\Windows\system32\directx\websetup\dsetup32.dll
    10/01/11 16:24:54: DXWSetup: installed files C:\Windows\system32\directx\websetup\dsetup32.dll
    10/01/11 16:24:54: DXWSetup: GetDXVersion(): could not get the RC of the registry string.
    10/01/11 16:24:54: DXWSetup: DirectX Version: 4.09.00.0904.00
    10/01/11 16:24:54: DXWSetup: Setup Version: 4.09.00.0904.00
    10/01/11 16:24:54: DXWSetup: a newer version of DirectX has already been installed.
    10/01/11 16:24:54: dsetup32: IsWow64(): not the Wow64 process.
    10/01/11 16:24:57: DXWSetup: CDXWSetup::CDXWSetup()
    10/01/11 16:24:57: DXWSetup: CDXWSetup::DownloadDXUpdate()
    10/01/11 16:24:57: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 1, subreport = 0 x 0
    10/01/11 16:24:57: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 3, subreport = 0 x 0
    10/01/11 16:24:57: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 2, SubStatus = 0 x 0
    10/01/11 16:24:57: DXWSetup: OnStartInstall(): DLSize = 81, InstallSize = 0
    10/01/11 16:24:57: DXWSetup: OnStartComponent(): ID = DXUpdate, DLSize = 81, InstallSize = 0, str = % DirectX_Setup %
    10/01/11 16:24:57: DXWSetup: OnComponentProgress(): Phase = 0, = 0 progress
    10/01/11 16:25:07: DXWSetup: OnStopComponent(): ID = DXUpdate, hr = 0 x 0, Phase = 9, str = % DirectX_Setup %, State = 0x0
    10/01/11 16:25:07: DXWSetup: OnStopInstall(): hr = 0 x 0, str = (null), State = 0 x 0
    10/01/11 16:25:07: DXWSetup: WM_APP_DOWNLOADDXUPDATE
    10/01/11 16:25:07: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 3, subreport = 0 x 0
    10/01/11 16:25:07: DXWSetup: CDXWSetup::InitInstallEngine()
    10/01/11 16:25:07: DXWSetup: CDXWSetup::InitInstallEngine(): Sections are not initialized.
    10/01/11 16:25:07: DXWSetup: PreinstDlgProc(): CDXWSetup::InitInstallEngine() failed.
    10/01/11 16:25:07: DXWSetup: WM_APP_ENDDOWNLOAD
    10/01/11 16:25:14: DXWSetup: CDXWSetup::~CDXWSetup()
    10/01/11 16:25:16: DXWSetup: CreatePropertySheet() returns-9.
    10/01/11 16:25:16: DXWSetup: C:\Windows\system32\directx\websetup\dsetup.dll files deleted.
    10/01/11 16:25:16: DXWSetup: C:\Windows\system32\directx\websetup\dsetup32.dll files deleted.
    10/01/11 16:27:16: DXWSetup: * DXWSETUP *.
    10/01/11 16:27:16: DXWSetup: WinMain()
    10/01/11 16:27:16: DXWSetup: IsIA64(): not IA64.
    10/01/11 16:27:16: DXWSetup: impossible to target the Version on the file C:\Windows\system32\directx\websetup\dsetup.dll
    10/01/11 16:27:16: DXWSetup: installed files C:\Windows\system32\directx\websetup\dsetup.dll
    10/01/11 16:27:16: DXWSetup: impossible to target the Version on the file C:\Windows\system32\directx\websetup\dsetup32.dll
    10/01/11 16:27:16: DXWSetup: installed files C:\Windows\system32\directx\websetup\dsetup32.dll
    10/01/11 16:27:16: DXWSetup: GetDXVersion(): could not get the RC of the registry string.
    10/01/11 16:27:16: DXWSetup: DirectX Version: 4.09.00.0904.00
    10/01/11 16:27:16: DXWSetup: Setup Version: 4.09.00.0904.00
    10/01/11 16:27:16: DXWSetup: a newer version of DirectX has already been installed.
    10/01/11 16:27:25: DXWSetup: CDXWSetup::CDXWSetup()
    10/01/11 16:27:25: DXWSetup: CDXWSetup::DownloadDXUpdate()
    10/01/11 16:27:25: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 1, subreport = 0 x 0
    10/01/11 16:27:25: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 3, subreport = 0 x 0
    10/01/11 16:27:25: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 2, SubStatus = 0 x 0
    10/01/11 16:27:25: DXWSetup: OnStartInstall(): DLSize = 81, InstallSize = 0
    10/01/11 16:27:25: DXWSetup: OnStartComponent(): ID = DXUpdate, DLSize = 81, InstallSize = 0, str = % DirectX_Setup %
    10/01/11 16:27:25: DXWSetup: OnComponentProgress(): Phase = 0, = 0 progress
    10/01/11 16:27:26: DXWSetup: OnStopComponent(): ID = DXUpdate, hr = 0 x 0, Phase = 9, str = % DirectX_Setup %, State = 0x0
    10/01/11 16:27:26: DXWSetup: OnStopInstall(): hr = 0 x 0, str = (null), State = 0 x 0
    10/01/11 16:27:26: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 3, subreport = 0 x 0
    10/01/11 16:27:26: DXWSetup: WM_APP_DOWNLOADDXUPDATE
    10/01/11 16:27:26: DXWSetup: CDXWSetup::InitInstallEngine()
    10/01/11 16:27:26: DXWSetup: CDXWSetup::InitInstallEngine(): Sections are not initialized.
    10/01/11 16:27:26: DXWSetup: PreinstDlgProc(): CDXWSetup::InitInstallEngine() failed.
    10/01/11 16:27:26: DXWSetup: WM_APP_ENDDOWNLOAD
    10/01/11 16:27:36: DXWSetup: CDXWSetup::~CDXWSetup()
    10/01/11 16:27:39: DXWSetup: CreatePropertySheet() returns-9.
    10/01/11 16:27:39: DXWSetup: C:\Windows\system32\directx\websetup\dsetup.dll files deleted.
    10/01/11 16:27:39: DXWSetup: C:\Windows\system32\directx\websetup\dsetup32.dll files deleted.
    10/01/11 16:28:55: DXWSetup: * DXWSETUP *.
    10/01/11 16:28:55: DXWSetup: WinMain()
    10/01/11 16:28:55: DXWSetup: IsIA64(): not IA64.
    10/01/11 16:28:56: DXWSetup: impossible to target the Version on the file C:\Windows\system32\directx\websetup\dsetup.dll
    10/01/11 16:28:56: DXWSetup: installed files C:\Windows\system32\directx\websetup\dsetup.dll
    10/01/11 16:28:56: DXWSetup: impossible to target the Version on the file C:\Windows\system32\directx\websetup\dsetup32.dll
    10/01/11 16:28:56: DXWSetup: installed files C:\Windows\system32\directx\websetup\dsetup32.dll
    10/01/11 16:28:56: DXWSetup: GetDXVersion(): could not get the RC of the registry string.
    10/01/11 16:28:56: DXWSetup: DirectX Version: 4.09.00.0904.00
    10/01/11 16:28:56: DXWSetup: Setup Version: 4.09.00.0904.00
    10/01/11 16:28:56: DXWSetup: a newer version of DirectX has already been installed.
    10/01/11 16:29:01: DXWSetup: CDXWSetup::CDXWSetup()
    10/01/11 16:29:01: DXWSetup: CDXWSetup::DownloadDXUpdate()
    10/01/11 16:29:01: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 1, subreport = 0 x 0
    10/01/11 16:29:01: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 3, subreport = 0 x 0
    10/01/11 16:29:01: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 2, SubStatus = 0 x 0
    10/01/11 16:29:01: DXWSetup: OnStartInstall(): DLSize = 81, InstallSize = 0
    10/01/11 16:29:01: DXWSetup: OnStartComponent(): ID = DXUpdate, DLSize = 81, InstallSize = 0, str = % DirectX_Setup %
    10/01/11 16:29:01: DXWSetup: OnComponentProgress(): Phase = 0, = 0 progress
    10/01/11 16:29:01: DXWSetup: OnStopComponent(): ID = DXUpdate, hr = 0 x 0, Phase = 9, str = % DirectX_Setup %, State = 0x0
    10/01/11 16:29:01: DXWSetup: OnStopInstall(): hr = 0 x 0, str = (null), State = 0 x 0
    10/01/11 16:29:01: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 3, subreport = 0 x 0
    10/01/11 16:29:01: DXWSetup: WM_APP_DOWNLOADDXUPDATE
    10/01/11 16:29:01: DXWSetup: CDXWSetup::InitInstallEngine()
    10/01/11 16:29:01: DXWSetup: CDXWSetup::InitInstallEngine(): Sections are not initialized.
    10/01/11 16:29:01: DXWSetup: PreinstDlgProc(): CDXWSetup::InitInstallEngine() failed.
    10/01/11 16:29:01: DXWSetup: WM_APP_ENDDOWNLOAD
    10/01/11 16:29:12: DXWSetup: CDXWSetup::~CDXWSetup()
    10/01/11 16:29:14: DXWSetup: CreatePropertySheet() returns-9.
    10/01/11 16:29:14: DXWSetup: C:\Windows\system32\directx\websetup\dsetup.dll files deleted.
    10/01/11 16:29:14: DXWSetup: C:\Windows\system32\directx\websetup\dsetup32.dll files deleted.
    10/01/11 16:29:49: DXWSetup: * DXWSETUP *.
    10/01/11 16:29:49: DXWSetup: WinMain()
    10/01/11 16:29:49: DXWSetup: IsIA64(): not IA64.
    10/01/11 16:29:49: DXWSetup: impossible to target the Version on the file C:\Windows\system32\directx\websetup\dsetup.dll
    10/01/11 16:29:49: DXWSetup: installed files C:\Windows\system32\directx\websetup\dsetup.dll
    10/01/11 16:29:49: DXWSetup: impossible to target the Version on the file C:\Windows\system32\directx\websetup\dsetup32.dll
    10/01/11 16:29:49: DXWSetup: installed files C:\Windows\system32\directx\websetup\dsetup32.dll
    10/01/11 16:29:49: DXWSetup: GetDXVersion(): could not get the RC of the registry string.
    10/01/11 16:29:49: DXWSetup: DirectX Version: 4.09.00.0904.00
    10/01/11 16:29:49: DXWSetup: Setup Version: 4.09.00.0904.00
    10/01/11 16:29:49: DXWSetup: a newer version of DirectX has already been installed.
    10/01/11 16:29:56: DXWSetup: CDXWSetup::CDXWSetup()
    10/01/11 16:29:56: DXWSetup: CDXWSetup::DownloadDXUpdate()
    10/01/11 16:29:56: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 1, subreport = 0 x 0
    10/01/11 16:29:56: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 3, subreport = 0 x 0
    10/01/11 16:29:56: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 2, SubStatus = 0 x 0
    10/01/11 16:29:56: DXWSetup: OnStartInstall(): DLSize = 81, InstallSize = 0
    10/01/11 16:29:56: DXWSetup: OnStartComponent(): ID = DXUpdate, DLSize = 81, InstallSize = 0, str = % DirectX_Setup %
    10/01/11 16:29:56: DXWSetup: OnComponentProgress(): Phase = 0, = 0 progress
    10/01/11 16:29:56: DXWSetup: OnStopComponent(): ID = DXUpdate, hr = 0 x 0, Phase = 9, str = % DirectX_Setup %, State = 0x0
    10/01/11 16:29:56: DXWSetup: OnStopInstall(): hr = 0 x 0, str = (null), State = 0 x 0
    10/01/11 16:29:56: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 3, subreport = 0 x 0
    10/01/11 16:29:56: DXWSetup: WM_APP_DOWNLOADDXUPDATE
    10/01/11 16:29:56: DXWSetup: CDXWSetup::InitInstallEngine()
    10/01/11 16:29:57: DXWSetup: CDXWSetup::InitInstallEngine(): Sections are not initialized.
    10/01/11 16:29:57: DXWSetup: PreinstDlgProc(): CDXWSetup::InitInstallEngine() failed.
    10/01/11 16:29:57: DXWSetup: WM_APP_ENDDOWNLOAD
    10/01/11 16:30:46: DXWSetup: CDXWSetup::~CDXWSetup()
    10/01/11 16:30:48: DXWSetup: CreatePropertySheet() returns-9.
    10/01/11 16:30:48: DXWSetup: C:\Windows\system32\directx\websetup\dsetup.dll files deleted.
    10/01/11 16:30:48: DXWSetup: C:\Windows\system32\directx\websetup\dsetup32.dll files deleted.
    10/01/11 16:37:07: DXWSetup: * DXWSETUP *.
    10/01/11 16:37:07: DXWSetup: WinMain()
    10/01/11 16:37:07: DXWSetup: IsIA64(): not IA64.
    10/01/11 16:37:07: DXWSetup: impossible to target the Version on the file C:\Windows\system32\directx\websetup\dsetup.dll
    10/01/11 16:37:07: DXWSetup: C:\Windows\system32\directx\websetup\dsetup.dll installed files
    10/01/11 16:37:07: DXWSetup: impossible to target the Version on the file C:\Windows\system32\directx\websetup\dsetup32.dll
    10/01/11 16:37:07: DXWSetup: C:\Windows\system32\directx\websetup\dsetup32.dll installed files
    10/01/11 16:37:07: DXWSetup: GetDXVersion(): could not get the RC of the registry string.
    10/01/11 16:37:07: DXWSetup: DirectX Version: 4.09.00.0904.00
    10/01/11 16:37:07: DXWSetup: Setup Version: 4.09.00.0904.00
    10/01/11 16:37:07: DXWSetup: a newer version of DirectX has already been installed.
    10/01/11 16:37:13: DXWSetup: CDXWSetup::CDXWSetup()
    10/01/11 16:37:13: DXWSetup: CDXWSetup::DownloadDXUpdate()
    10/01/11 16:37:13: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 1, subreport = 0 x 0
    10/01/11 16:37:13: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 3, subreport = 0 x 0
    10/01/11 16:37:13: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 2, SubStatus = 0 x 0
    10/01/11 16:37:13: DXWSetup: OnStartInstall(): DLSize = 81, InstallSize = 0
    10/01/11 16:37:13: DXWSetup: OnStartComponent(): ID = DXUpdate, DLSize = 81, InstallSize = 0, str = % DirectX_Setup %
    10/01/11 16:37:13: DXWSetup: OnComponentProgress(): Phase = 0, = 0 progress
    10/01/11 16:37:13: DXWSetup: OnStopComponent(): ID = DXUpdate, hr = 0 x 0, Phase = 9, str = % DirectX_Setup %, State = 0x0
    10/01/11 16:37:13: DXWSetup: OnStopInstall(): hr = 0 x 0, str = (null), State = 0 x 0
    10/01/11 16:37:13: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 3, subreport = 0 x 0
    10/01/11 16:37:13: DXWSetup: WM_APP_DOWNLOADDXUPDATE
    10/01/11 16:37:13: DXWSetup: CDXWSetup::InitInstallEngine()
    10/01/11 16:37:13: DXWSetup: CDXWSetup::InitInstallEngine(): Sections are not initialized.
    10/01/11 16:37:13: DXWSetup: PreinstDlgProc(): CDXWSetup::InitInstallEngine() failed.
    10/01/11 16:37:13: DXWSetup: WM_APP_ENDDOWNLOAD
    10/01/11 16:37:15: DXWSetup: CDXWSetup::~CDXWSetup()
    10/01/11 16:37:16: DXWSetup: CreatePropertySheet() returns-9.
    10/01/11 16:37:16: DXWSetup: C:\Windows\system32\directx\websetup\dsetup.dll files deleted.
    10/01/11 16:37:16: DXWSetup: C:\Windows\system32\directx\websetup\dsetup32.dll files deleted.
    10/01/11 16:56:38: DXWSetup: * DXWSETUP *.
    10/01/11 16:56:38: DXWSetup: WinMain()
    10/01/11 16:56:38: DXWSetup: IsIA64(): not IA64.
    10/01/11 16:56:38: DXWSetup: impossible to target the Version on the file C:\Windows\system32\directx\websetup\dsetup.dll
    10/01/11 16:56:38: DXWSetup: installed files C:\Windows\system32\directx\websetup\dsetup.dll
    10/01/11 16:56:38: DXWSetup: impossible to target the Version on the file C:\Windows\system32\directx\websetup\dsetup32.dll
    10/01/11 16:56:38: DXWSetup: installed files C:\Windows\system32\directx\websetup\dsetup32.dll
    10/01/11 16:56:38: DXWSetup: GetDXVersion(): could not get the RC of the registry string.
    10/01/11 16:56:38: DXWSetup: DirectX Version: 4.09.00.0904.00
    10/01/11 16:56:38: DXWSetup: Setup Version: 4.09.00.0904.00
    10/01/11 16:56:38: DXWSetup: a newer version of DirectX has already been installed.
    10/01/11 16:56:45: DXWSetup: CDXWSetup::CDXWSetup()
    10/01/11 16:56:45: DXWSetup: CDXWSetup::DownloadDXUpdate()
    10/01/11 16:56:45: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 1, subreport = 0 x 0
    10/01/11 16:56:45: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 3, subreport = 0 x 0
    10/01/11 16:56:45: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 2, SubStatus = 0 x 0
    10/01/11 16:56:45: DXWSetup: OnStartInstall(): DLSize = 81, InstallSize = 0
    10/01/11 16:56:45: DXWSetup: OnStartComponent(): ID = DXUpdate, DLSize = 81, InstallSize = 0, str = % DirectX_Setup %
    10/01/11 16:56:45: DXWSetup: OnComponentProgress(): Phase = 0, = 0 progress
    10/01/11 16:56:45: DXWSetup: OnStopComponent(): ID = DXUpdate, hr = 0 x 0, Phase = 9, str = % DirectX_Setup %, State = 0x0
    10/01/11 16:56:45: DXWSetup: OnStopInstall(): hr = 0 x 0, str = (null), State = 0 x 0
    10/01/11 16:56:45: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 3, subreport = 0 x 0
    10/01/11 16:56:45: DXWSetup: WM_APP_DOWNLOADDXUPDATE
    10/01/11 16:56:45: DXWSetup: CDXWSetup::InitInstallEngine()
    10/01/11 16:56:45: DXWSetup: CDXWSetup::InitInstallEngine(): Sections are not initialized.
    10/01/11 16:56:45: DXWSetup: PreinstDlgProc(): CDXWSetup::InitInstallEngine() failed.
    10/01/11 16:56:45: DXWSetup: WM_APP_ENDDOWNLOAD
    10/01/11 16:56:47: DXWSetup: CDXWSetup::~CDXWSetup()
    10/01/11 16:56:48: DXWSetup: CreatePropertySheet() returns-9.
    10/01/11 16:56:48: DXWSetup: C:\Windows\system32\directx\websetup\dsetup.dll files deleted.
    10/01/11 16:56:49: DXWSetup: C:\Windows\system32\directx\websetup\dsetup32.dll files deleted.
    10/01/11 18:38:56: DXWSetup: * DXWSETUP *.
    10/01/11 18:38:56: DXWSetup: WinMain()
    10/01/11 18:38:56: DXWSetup: IsIA64(): not IA64.
    10/01/11 18:38:57: DXWSetup: impossible to target the Version on the file C:\Windows\system32\directx\websetup\dsetup.dll
    10/01/11 18:38:57: DXWSetup: installed files C:\Windows\system32\directx\websetup\dsetup.dll
    10/01/11 18:38:57: DXWSetup: impossible to target the Version on the file C:\Windows\system32\directx\websetup\dsetup32.dll
    10/01/11 18:38:57: DXWSetup: installed files C:\Windows\system32\directx\websetup\dsetup32.dll
    10/01/11 18:38:57: DXWSetup: GetDXVersion(): could not get the RC of the registry string.
    10/01/11 18:38:57: DXWSetup: DirectX Version: 4.09.00.0904.00
    10/01/11 18:38:57: DXWSetup: Setup Version: 4.09.00.0904.00
    10/01/11 18:38:57: DXWSetup: a newer version of DirectX has already been installed.
    10/01/11 18:38:57: dsetup32: IsWow64(): not the Wow64 process.
    10/01/11 18:39:01: DXWSetup: CDXWSetup::CDXWSetup()
    10/01/11 18:39:01: DXWSetup: CDXWSetup::DownloadDXUpdate()
    10/01/11 18:39:01: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 1, subreport = 0 x 0
    10/01/11 18:39:01: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 3, subreport = 0 x 0
    10/01/11 18:39:01: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 2, SubStatus = 0 x 0
    10/01/11 18:39:01: DXWSetup: OnStartInstall(): DLSize = 81, InstallSize = 0
    10/01/11 18:39:01: DXWSetup: OnStartComponent(): ID = DXUpdate, DLSize = 81, InstallSize = 0, str = % DirectX_Setup %
    10/01/11 18:39:01: DXWSetup: OnComponentProgress(): Phase = 0, = 0 progress
    10/01/11 18:39:05: DXWSetup: OnStopComponent(): ID = DXUpdate, hr = 0 x 0, Phase = 9, str = % DirectX_Setup %, State = 0x0
    10/01/11 18:39:05: DXWSetup: OnStopInstall(): hr = 0 x 0, str = (null), State = 0 x 0
    10/01/11 18:39:05: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 3, subreport = 0 x 0
    10/01/11 18:39:05: DXWSetup: WM_APP_DOWNLOADDXUPDATE
    10/01/11 18:39:05: DXWSetup: CDXWSetup::InitInstallEngine()
    10/01/11 18:39:05: DXWSetup: CDXWSetup::InitInstallEngine(): Sections are not initialized.
    10/01/11 18:39:05: DXWSetup: PreinstDlgProc(): CDXWSetup::InitInstallEngine() failed.
    10/01/11 18:39:05: DXWSetup: WM_APP_ENDDOWNLOAD
    10/01/11 18:39:11: DXWSetup: CDXWSetup::~CDXWSetup()
    10/01/11 18:39:14: DXWSetup: CreatePropertySheet() returns-9.
    10/01/11 18:39:14: DXWSetup: C:\Windows\system32\directx\websetup\dsetup.dll files deleted.
    10/01/11 18:39:14: DXWSetup: C:\Windows\system32\directx\websetup\dsetup32.dll files deleted.
    11/01/11 08:44:55: DXWSetup: * DXWSETUP *.
    11/01/11 08:44:55: DXWSetup: WinMain()
    11/01/11 08:44:55: DXWSetup: IsIA64(): not IA64.
    11/01/11 08:44:55: DXWSetup: impossible to target the Version on the file C:\Windows\system32\directx\websetup\dsetup.dll
    11/01/11 08:44:55: DXWSetup: installed files C:\Windows\system32\directx\websetup\dsetup.dll
    11/01/11 08:44:55: DXWSetup: impossible to target the Version on the file C:\Windows\system32\directx\websetup\dsetup32.dll
    11/01/11 08:44:55: DXWSetup: installed files C:\Windows\system32\directx\websetup\dsetup32.dll
    11/01/11 08:44:55: DXWSetup: GetDXVersion(): could not get the RC of the registry string.
    11/01/11 08:44:55: DXWSetup: DirectX Version: 4.09.00.0904.00
    11/01/11 08:44:55: DXWSetup: Setup Version: 4.09.00.0904.00
    11/01/11 08:44:55: DXWSetup: a newer version of DirectX has already been installed.
    11/01/11 08:44:56: dsetup32: IsWow64(): not the Wow64 process.
    11/01/11 08:45:02: DXWSetup: CDXWSetup::CDXWSetup()
    11/01/11 08:45:02: DXWSetup: CDXWSetup::DownloadDXUpdate()
    11/01/11 08:45:02: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 1, subreport = 0 x 0
    11/01/11 08:45:02: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 3, subreport = 0 x 0
    11/01/11 08:45:02: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 2, SubStatus = 0 x 0
    11/01/11 08:45:02: DXWSetup: OnStartInstall(): DLSize = 81, InstallSize = 0
    11/01/11 08:45:02: DXWSetup: OnStartComponent(): ID = DXUpdate, DLSize = 81, InstallSize = 0, str = % DirectX_Setup %
    11/01/11 08:45:02: DXWSetup: OnComponentProgress(): Phase = 0, = 0 progress
    11/01/11 08:45:06: DXWSetup: OnStopComponent(): ID = DXUpdate, hr = 0 x 0, Phase = 9, str = % DirectX_Setup %, State = 0x0
    11/01/11 08:45:06: DXWSetup: OnStopInstall(): hr = 0 x 0, str = (null), State = 0 x 0
    11/01/11 08:45:06: DXWSetup: OnEngineStatusChange(): EngineStatus = 0 x 3, subreport = 0 x 0
    11/01/11 08:45:06: DXWSetup: WM_APP_DOWNLOADDXUPDATE
    11/01/11 08:45:06: DXWSetup: CDXWSetup::InitInstallEngine()
    11/01/11 08:45:06: DXWSetup: CDXWSetup::InitInstallEngine(): Sections are not initialized.
    11/01/11 08:45:06: DXWSetup: PreinstDlgProc(): CDXWSetup::InitInstallEngine() failed.
    11/01/11 08:45:06: DXWSetup: WM_APP_ENDDOWNLOAD
    11/01/11 08:55:23: DXWSetup: CDXWSetup::~CDXWSetup()
    11/01/11 08:55:26: DXWSetup: CreatePropertySheet() returns-9.
    11/01/11 08:55:26: DXWSetup: C:\Windows\system32\directx\websetup\dsetup.dll files deleted.
    11/01/11 08:55:26: DXWSetup: C:\Windows\system32\directx\websetup\dsetup32.dll files deleted.

    Any help that you can give the question is appreciated. Thank you!

    Hello

    According to me, that your request would be better supprted in community platforms of the pénis.  Here is a link that should point you in the right location.  I hope that this information is beneficial.

    http://www.rigsofrods.com/forum.php

    Thank you

    Aaron
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • Error when you click the merged project topic

    I use the last version 11 Robohelp

    I always get a message in the form ""the name of the window "xxxxxx" passed to HH_GET_WIN_TYPE has not been specified"if poster even when you have set all your window definitions correctly... then a second window will appear that contains only selected CHM as it appears in the image below: (the screenshot on the left is selected which has 2 merged chm and the screenshot on the left of the chm) "

    ErrorCHMmergedprojectRH11.jpg

    You can consult the following resources to see if they will help out you:

  • error when you use the Export-CSV cmdlet

    Hello

    I get the following error when you try to pipe the output to a csv file

    " Could not bind the parameter argument 'InputObject' because she's nowhere.'"

    The output is placed in the csv file, but I get this error at the end of the script.

    Here is the code:

    ##Variables

    ###################################

    $report = @)

    $CSVfile = "d:\Vm_Report.csv".

    $VMs = get-vmhost | Get - VM

    ###################################

    {foreach ($VM to $VMs)

    $VMx = get-view $VM.ID

    $HW = $VMx.guest.net

    foreach ($dev to $HW)

    {

    foreach ($ip in $dev.ipaddress)

    {

    $report += $dev. Select @{Name = 'Name'; Expression = {$vm.name}},@{Name = 'IP address'; Expression = {$ip}}, @{Name = 'MAC'; {Expression = {$dev.macaddress}}.

    @{Name = 'Property DL'; Expression = {$vm. CustomFields}}

    }

    }

    }

    $report | Export-CSV - NoTypeInformation $CSVfile

    Thank you

    The attached script implements the test of the $HW variable.

    In my test environment, Export-Csv now works without any problem.

    Give it a try.

  • Get the error when you use the Oracle 9.2 on RRS 4 installation

    Hi all

    I was getting error while installing oracle 9.2.0.4 in Red hat advanced server 4

    YES was generating a message
     could not able to relink ins_sqlplus.mk  and ins_rdbms.mk
    but I'd ignored, after installation of the oracle s/w, I relinked bleow files

    I also tried running the command below
    [oracle@oracle lib]$ make -f ins_sqlplus.mk install
    
    but when i try to make ins_rdbms.mk i was getting a error
    
    [oracle@oracle lib]$ make -f ins_rdbms.mk install
    .
    .
    .
    .
    .
    ..
    .
    u01/app/oracle/product/9.2.0.1/db_1/lib32/libgeneric9.a   `cat /u01/app/oracle/product/9.2.0.1/db_1/lib32/sysliblist` -Wl,-rpath,/u01/app/oracle/product/9.2.0.1/db_1/lib:/lib:/usr/lib -lm    `cat /u01/app/oracle/product/9.2.0.1/db_1/lib32/sysliblist` -ldl -lm    -lvsn9
    /usr/bin/ld: crt1.o: No such file: No such file or directory
    collect2: ld returned 1 exit status
    make[1]: *** [/u01/app/oracle/product/9.2.0.1/db_1/rdbms/lib/extproc32] Error 1
    make[1]: Leaving directory `/u01/app/oracle/product/9.2.0.1/db_1/rdbms/lib'
    Please suggest me if this will have an impact on the DB

    Published by: user00726 on July 8, 2009 23:06

    If the error only occurs when you start the dbca Wizard, the database itself should be ok. Before using it for the production you can stress test your db using swingbench or hammerora to be sure that iti works well.

    Concerning

    Oliver

  • iPhone 6 s is not wake up when you remove the cable from the charger.

    Hi all.

    I noticed that sometimes my iPhone didn't wake not (the lock screen display) when the charging cable is removed. the charger / sync port seem otherwise works normally.

    Is this normal?  I'm guessing that this happens because sometimes when the battery is fully charged, no power goes to the phone and if you pull the cable then, the phone can't tell you have removed the cable, but I have not seen this happen on my previous phones.

    Thank you!

    Yes, this sounds like normal behavior! On my iPhone 6, when it reached 100% of their capacity and is completely loaded, as it stops in charge, which is why when you unplug the iPhone from the charger the screen does not automatically wake up, because the charger stopped output power to the iPhone when it finished filling. I hope that answers your question!

  • Error when you run the setEssbaseEnv.sh script

    Hi all

    In the 11.1.2.x version:

    MIDDLEWARE_HOME/EPMSystem11R1/products/Essbase/EssbaseServer/templates/startMaxl.sh

    Scripts call another script, setEssbaseEnv.sh. When you run the script 'setEssbaseEnv.sh' it gives the error below:

    $ sh setEssbaseEnv.sh

    setEssbaseEnv.sh: line 4: close syntax error unexpected token ' (')

    setEssbaseEnv.sh: line 4: "cd $J (EPM_ORACLE_INSTANCE) / bin /".

    Why use only the location of the templates? There should be a bin folder.

    Concerning

    Celvin Kattookaran

  • get the error when you use the TRIM method in the collections

    Hi Experts,

    When you use the TRIM method I get below error. I make any mistake here?

    DB: Oracle 11g

    SQL > declare

    2

    emp_tab of type 3 is the employee table % rowtype index directory.

    4 l_emp_tab emp_tab;
    5

    6 start

    7

    8 select * bulk collect into l_emp_tab of employees;

    9 l_emp_tab.trim (5);

    10 dbms_output.put_line (l_emp_tab.count);

    11

    12 end;

    13.

    l_emp_tab. Trim (5);

    *

    ERROR on line 9:

    ORA-06550: line 9, column 2:

    PLS-00306: wrong number or types of arguments in the call to 'TRIM '.

    ORA-06550: line 9, column 2:

    PL/SQL: Statement ignored

    Thanks in advance for your help.

    See you soon,.

    Suri

    For PL/SQL collections "index by" you cannot use the TRIM function. If your collection statement excludes the portion "index of...» ", then you can.

    Gerard

  • Certificate error when you download the trial version of the EP 12

    Screen Shot 2014-06-17 at 12.41.31 PM.png

    I get this error when you try to download the trial version.

    Use another browser.

  • I get a page not found error when you try to access the files of creative cloud with a browser?

    The page will load and then get a page not found error. I can still access files using the office program and saying that they have synchronized. I tried to erase the cache, cookies and others, I've used other computers, browsers, and different browsers on different computers, clear the caches and data on establishments. I tried to change my password and log out, then log.

    Nothing works, my guess is that it has a file corrupted in my archives or it's a server problem. (an admin may permanently delete all my files?, nothing to important there)

    Anything to help.

    Thank you

    Marc Kubischta responded to you here http://forums.adobe.com/message/6338690#6338690.

    It service is not down for everyone.

Maybe you are looking for

  • Several libraries of photos?

    I have been using iPhoto for many years. A few years ago, I broke my a giant library in separate for each year.  It was a tedious process but was well worth because iPhoto has been so bogged down with the size of the library.  I realize in iPhoto is

  • iPad with ios 3 9 works slowly

    iPad 3.1 got ios 9.2. After you install more than 50 updates to applications. Update is very slow, and the ipad is very slow, stops and restarts. Can I reinstal former software or clean the machine to make it faster? Jorgen C

  • Update Vista stuck in the loop - installation of update 1 of 1

    What should I do? Windows Vista was preinstalled on my computer, so I don't have an installation disc.

  • Icon blackBerry Smartphones Blackberry app world gone.

    I use bb 9780 with OS 6.0. I have a few days back that I updated my Blackberry app World 3.1.0.60 but since then I cannot locate my world the app icon on my home screen. I checked my whole bb and even hidden files but its nowhere to be found. It show

  • Not my quote of websites on my browser.

    Original title: DHCP kan ikke Giver Gateway default gateway IP-address My internet does not work... wtf. IM on Skype and it works very well, just how long Im going to League og legends his * up to... I'm going to 100 Mbps. my browser accepts just .no