validate if the user has entered at least one element of the page

The apex Version: Application Express 4.1.0.00.32
Web browser: Internet Explorer 8
Oracle DB: 11g Enterprise Edition Release 11.2.0.1.0

Is there a way to validate whether a user has entered at least one item on a form?

I have a function:
function hasPageValues return a Boolean value
is
Boolean v_item_found: = false;
Start

for rITM in
(select nom_element
of apex_application_page_items
where application_id = Apex_Application.g_flow_id
and page_id = Apex_Application.g_flow_step_id
)
loop
-the element's value
If v (rITM.item_name) is not null then
v_item_found: = true;
end if;
end loop;

Return v_item_found;
end hasPageValues;

I call this function returning a Boolean in my posting of the page. It doesn't seem to work. It always returns false. What am I missing and is there a better way to do this type of validation. Sorry I'm new to APEX. Thank you very much!

SmV says:
Also, I added the part output in the above code and it still does not work. Always returns false.

When you have a problem in the APEX you can use debug mode to trace what actually demand. It is advisable to include the code of instrumentation in your program units that will generate useful debugging information. To do this, use apex_debug_message API:

create or replace function hasPageValues (
    p_app_id  in pls_integer
  , p_page_id in pls_integer)
  return boolean
is
  v_item_found boolean := false;
begin

  for rITM in (
    select
              item_name
            , display_as
    from
              apex_application_page_items
    where
              application_id = p_app_id
    and       page_id = p_page_id)
  loop
    apex_debug_message.log_message(rITM.item_name || ' (' || rITM.display_as || '): ' || v(rITM.item_name));
    -- does the item have a value
    if v(rITM.item_name) is not null
    then
      apex_debug_message.log_message(rITM.item_name || ' is not null: exit.');
      v_item_found := true;
      exit;
    end if;
  end loop;

  apex_debug_message.log_message('hasPageValues = ' || case when v_item_found then 'TRUE' when not(v_item_found) then 'FALSE' else null end);

  return v_item_found;

end hasPageValues;

Without data in the page, this gives the following debug trace:

...
0.19096     0.00084     Perform custom validations:
0.19180     0.00081     ...Validation "hasPageValues" - Type: FUNC_BODY_RETURNING_BOOLEAN
0.19261     0.09948     ...Execute Statement: declare function x return boolean is begin return hasPageValues(:app_id, :app_page_id); return null; end; begin wwv_flow.g_boolean := x; end;
0.29213     0.00144     P6_PRODUCT_IMAGE (File Browse...):
0.29352     0.00082     P6_IMAGE (Display Only):
0.29434     0.00075     P6_PRODUCT_ID (Hidden):
0.29509     0.00105     P6_PRODUCT_NAME (Text Field):
0.29614     0.00083     P6_PRODUCT_DESCRIPTION (Textarea):
0.29697     0.00104     P6_CATEGORY (Radio Group):
0.29801     0.00151     P6_PRODUCT_AVAIL (Radio Group):
0.29952     0.00079     P6_LIST_PRICE (Number Field):
0.30030     0.00071     hasPageValues = FALSE
0.30102     0.00066     ......Did NOT pass
0.30168     0.00080     Add error onto error stack
0.30249     0.00079     ...Error data:
0.30327     0.00299     ......message: Page has no values

While with a set of element values, we get:

0.07573     0.00107     Perform custom validations:
0.07680     0.00094     ...Validation "hasPageValues" - Type: FUNC_BODY_RETURNING_BOOLEAN
0.07774     0.00231     ...Execute Statement: declare function x return boolean is begin return hasPageValues(:app_id, :app_page_id); return null; end; begin wwv_flow.g_boolean := x; end;
0.08005     0.00105     P6_PRODUCT_IMAGE (File Browse...):
0.08109     0.00077     P6_IMAGE (Display Only):
0.08187     0.00094     P6_PRODUCT_ID (Hidden):
0.08281     0.00074     P6_PRODUCT_NAME (Text Field):
0.08354     0.00087     P6_PRODUCT_DESCRIPTION (Textarea):
0.08442     0.00072     P6_CATEGORY (Radio Group):
0.08514     0.00067     P6_PRODUCT_AVAIL (Radio Group): Y
0.08581     0.00112     P6_PRODUCT_AVAIL is not null: exit.
0.08693     0.00076     hasPageValues = TRUE

The two that appear to be the expected behaviours. What happens when you do this?

Tags: Database

Similar Questions

  • Form CHILD FRM-30100 error: block must have at least one element of primary key.

    Hi friends,

    I increased table DML child block of 1 to 10, but he gives me the error:

    FRM-30100: block must have at least one element of primary key.
    Block: CEC_ADJUSTMENT_RECON
    Form: CEC_ADJ
    FRM-30085: unable to adapt to the shape for the release.
    How does a form know that the table does not have primary key? Is it referring to it?
    
    
    Thanks a lot                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                

    You can not overcome this behavior, unless you click or to move to the next to the checkbox element.
    This is the default behavior.

    Make the property of block NVAIGATION STYLE as change recording so that when you press ENTER or TAB to the last point, the cursor automatically goes to the box.

  • The button should be VISIBLE unless the user has entered all of the required fields?

    Hello

    I have 10 fields in the form, 3 are required/mandatory fields to enter the data. And I also kept a button with caption CHECK THE FIELDS.

    I also kept a 2nd button, say legend is GOOD TO GO (this isn't a SUBMIT button, the two buttons are normalbuttons)

    At the point of HRT, GOOD TO GO button is "hidden"

    Now, say, user forgot to enter the 2 required fields and you press the button CHECK THE FIELDS, guest user 2 times with popup legends field of respect.

    Now user entered in 1 field and forgotten again to enter the data in another area and pressed the button CHECK FIELDS, guest user 1 time with a popup with the caption for field of respect.

    Now, the user entered in this field too, very well and CHECK THE FIELDS button, the user has NOT prompted with a popup.

    BUT at this POINT, I need to see THE/PRESENCE button GOOD TO GO

    Please let me know how can they do it in JavaScript?

    Thank you

    In the click event of the button CHECK THE FIELDS, you can check if all three need to fields are filled. Therefore, you can do the "Good to Go" button hidden/visible.

    If (reqField1XPath.rawValue! = null & reqField2Xpath.rawValue! = null & reqField3Xpath.rawValue! = null)

    {

    If all three fields are filled as a visible button

    GoodToGoButtonXpath.presence = "visible";

    }

    on the other

    {

    GoodToGoButtonXpath.presence = 'hidden ';

    }

    Where reqField1XPath, reqField2XPath, reqField3XPath, GoodToGoButtonXpath must be the XPath of the field.

  • The button should only VISIBLE if the user has entered all of the required fields?

    Hello

    I have 10 fields in the form, 3 are required/mandatory fields to enter the data. And I also kept a button with caption CHECK THE FIELDS.

    I also kept a 2nd button, say legend is GOOD TO GO (this isn't a SUBMIT button, the two buttons are normalbuttons)

    At the point of HRT, GOOD TO GO button is "hidden"

    Now, say, user forgot to enter the 2 required fields and you press the button CHECK THE FIELDS, guest user 2 times with popup legends field of respect.

    Now user entered in 1 field and forgotten again to enter the data in another area and pressed the button CHECK FIELDS, guest user 1 time with a popup with the caption for field of respect.

    Now, the user entered in this field too, very well and CHECK THE FIELDS button, the user has NOT prompted with a popup.

    BUT at this POINT, I need to see THE/PRESENCE button GOOD TO GO

    Please let me know how can they do it in JavaScript?

    Thank you

    You were absent; After each statement - no need after 'else '. Don't know what you're doing with b? B get used somewhere? Also, I think I've fixed your resolveNode syntax. Give it a try.

    for (var i = 0; i)< myarray.length;="" i++)="">
    If (xfa.resolveNode("VISITORINFO["_+_i_+"]").rawValue == null) {}
    b = xfa.resolveNode ("VISITORINFO [" +
    i + "]"). caption.value.text.value;
    x = "BAD";

    App.Alert (x);
    }
    on the other
    {
    If (x! = 'BAD') {}
    x = "GOOD";
    App.Alert (x);
    }
    }

    }

    Good luck!

    Stephen

  • Provide a default value for the page

    With the help of JHeadstart/JDeveloper 11 g I'm looking for the best way to achieve the following objectives:

    Entity: expedition
    Show items (both based on the expedition): DispatchShipment & ReceiveShipment

    The two objects of different point of view are displayed on two separate pages (regions). I want to be able to see my custom ShipmentImpl class logic, but I'm not sure how know what view object has been used. Among other things, mandatory change that must be made to the shipping for each page table is updated the status of the shipment: the page DispatchShipment "DISPATCHED", for the ReceiveShipment page to 'RECEIPT '. I thought that if I could fix the State (through a property or programmatically) when the user has entered every page, then once the record had been pressed, in my method of doDML of ShipmentImpl, I could query the status field and if changed to one of them I know the appropriate action.

    Of course I could also simply create two methods in the AppModule, one for the reception and the other for shipping and the wire until save it button for each of these methods, but I was hoping there was a way I could (sensibly) do this without creating custom buttons templates.

    One option I tried was to generate the class RowImpl of the view object, and when one of the values is the value, update the State at the same time. This does not work well if the user doesn't change a field in the page (or will trigger the methods doDML or beforeCommit entity). That's why I was hoping to change the status value at the entrance to the page via the links field or through the view object.

    Proposals and guidance is greatly appreciated :)

    See you soon,.
    Brent

    Brent,

    How about this approach:

    -create an attribute of the transient state in the EO
    -Add this transitional attribute to two vo
    -Replace CommitBean for both groups and change the attribute of State of transition to the correct value, just before calling super.execute
    -in the doDml of your OS, you can read the value of the State transitional attr and take appropriate action

    Steven Davelaar,
    JHeadstart team.

  • How to restrict the user to enter not same value in a table

    Greetings!

    I m asking a second time the upfront because I did not answer preivously, so please don't mind if it's a double.

    It was: I have created a table, as shown in the example.

    I want to validate the user name that you see in my example to restrict the user to enter the same value in the user name field before submitting page.

    for example when the user enters data as u see test in user name in the first row, when it goes to the second row and type same username as test "message will appear or restrict the user who has already typed or in use"...

    http://Apex.Oracle.com/pls/Apex/f?p=45296:1:22797340776918:

    It's all done on typing submit prior to registration.

    Please drivers

    Hello

    I m asking a second time the upfront because I did not answer preivously, so please don't mind if it's a double.

    It was: I have created a table, as shown in the example.

    I want to validate the user name that you see in my example to restrict the user to enter the same value in the user name field before submitting page.

    for example when the user enters data as u see test in user name in the first row, when it goes to the second row and type same username as test "message will appear or restrict the user who has already typed or in use"...

    http://Apex.Oracle.com/pls/Apex/f?p=45296:1:22797340776918:

    It's all done on typing submit prior to registration. >

    Stick the code below into the Page header > Javascript > run when loading the Page field.

    $('[input[name="f03"]').blur(function(){
      if ($('input[name="f03"][id!="'+$(this).attr('id')+'"]').val() == $(this).val()) {
         alert('Duplicate Entry.');
         var x = $(this).attr('id');
         setTimeout("(function(p){$('#'+p).focus();})('"+x+"')",100);
      }
    })
    

    Note:
    a.F03 is the 'name' of your column of username in the form of tables.
    b. This only valid values. If your tabular presentation has multiple pages then all of the rows are not currently displayed will be ignored.

    See you soon,.

  • Windows Installer error only by the installation of the machine is allowed. Please make sure that the user has the appropriate rights to do so.

    Trouble with trying to install an MSI Package. Receive the error message only by the installation of the machine is allow. It's when you try to run manually. When you try to run msiexec cmd

    msiexec /i "C:\Mimecast Services for Outlook 4.0.411.5287 (32 bit) GPO.msi" /qb/log "C:\install.log.

    = Recording started: 04/09/2013-10:36:27 Build type: SHIP UNICODE 5.00.7601.00 appeal process: C:\windows\system32\msiexec.exe =.
    MSI (c) (58:C0) [10:36:27:087]: established police.  Charset: Req = 0, Ret = 0, fonts: Req = MS Shell Dlg, Ret = MS Shell Dlg

    MSI (c) (58:C0) [10:36:27:087]: established police.  Charset: Req = 0, Ret = 0, fonts: Req = MS Shell Dlg, Ret = MS Shell Dlg

    MSI (c) (58:88) [10:36:27:107]: Resetting cached policy values
    MSI (c) (58:88) [10:36:27:107]: value of strategy Machine 'Debug' is 0
    MSI (c) (58:88) [10:36:27:107]: * RunEngine:
    Product: C:\Mimecast Services for Outlook 4.0.411.5287 (32-bit) GPO.msi
    Action:
    Command line:
    MSI (c) (58:88) [10:36:27:107]: Client and UI is none or basic: full installation running on the server.
    MSI (c) (58:88) [10:36:27:107]: grabbed execution mutex.
    MSI (c) (58:88) [10:36:27:147]: Cloaking enabled.
    MSI (c) (58:88) [10:36:27:147]: attempt of activation of all disabled privileges before calling install on server
    MSI (c) (58:88) [10:36:27:147]: meter is incremented to disable the stop. Counter after increment: 0
    MSI (s) (C 54:4) [10:36:27:157]: running the installation inside the multi-package transaction Services C:\Mimecast for Outlook 4.0.411.5287 (32-bit) GPO.msi
    MSI (s) (C 54:4) [10:36:27:157]: grabbed execution mutex.
    MSI (s) (54:F8) [10:36:27:157]: Resetting cached policy values
    MSI (s) (54:F8) [10:36:27:157]: value of strategy Machine 'Debug' is 0
    MSI (s) (54:F8) [10:36:27:157]: * RunEngine:
    Product: C:\Mimecast Services for Outlook 4.0.411.5287 (32-bit) GPO.msi
    Action:
    Command line:
    MSI (s) (54:F8) [10:36:27:477]: value of strategy Machine 'DisableUserInstalls' is 0
    MSI (s) (54:F8) [10:36:27:477]: value 'SearchOrder' user policy is 'nmu '.
    MSI (s) (54:F8) [10:36:27:477]: "DisableMedia" user policy value is 0
    MSI (s) (54:F8) [10:36:27:477]: value of strategy Machine 'AllowLockdownMedia' is 0
    MSI (s) (54:F8) [10:36:27:477]: SOURCEMGMT: Media enabled only if the package is safe.
    MSI (s) (54:F8) [10:36:27:477]: SOURCEMGMT: looking for sourcelist for product {C28136F7-F2C7-4426-B26F-F7E03922B34B}
    MSI (s) (54:F8) [10:36:27:477]: SOURCEMGMT: added {C28136F7-F2C7-4426-B26F-F7E03922B34B}; for the potential sourcelist (pcode; disc; relpath) list.
    MSI (s) (54:F8) [10:36:27:477]: SOURCEMGMT: check now product {C28136F7-F2C7-4426-B26F-F7E03922B34B}
    MSI (s) (54:F8) [10:36:27:477]: SOURCEMGMT: Media is enabled for the product.
    MSI (s) (54:F8) [10:36:27:477]: SOURCEMGMT: attempting to use LastUsedSource from source list.
    MSI (s) (54:F8) [10:36:27:477]: SOURCEMGMT: source C:\windows\ccmcache\4\ by train.
    MSI (s) (54:F8) [10:36:27:787]: entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (54:F8) [10:36:27:787]: source specified is already in a list.
    MSI (s) (54:F8) [10:36:27:787]: value 'SearchOrder' user policy is 'nmu '.
    MSI (s) (54:F8) [10:36:27:787]: value of strategy Machine 'DisableBrowse' is 0
    MSI (s) (54:F8) [10:36:27:787]: value of strategy Machine 'AllowLockdownBrowse' is 0
    MSI (s) (54:F8) [10:36:27:787]: adding new sources is allowed.
    MSI (s) (54:F8) [10:36:27:787]: the LastUsedSource value: C:\windows\ccmcache\4\.
    MSI (s) (54:F8) [10:36:27:787]: value LastUsedType: n.
    MSI (s) (54:F8) [10:36:27:787]: A LastUsedIndex: 1.
    MSI (s) (54:F8) [10:36:27:787]: SOURCEMGMT: resolved source: 'C:\windows\ccmcache\4\ '.
    MSI (s) (54:F8) [10:36:27:787]: value of strategy Machine 'LimitSystemRestoreCheckpointing' is 0
    MSI (s) (54:F8) [10:36:27:787]: Note: 1: 1715 2: Services for 32-bit Outlook Mimecast
    MSI (s) (54:F8) [10:36:27:787]: SRSetRestorePoint API call. dwRestorePtType: 0, dwEventType: 102, llSequenceNumber: 0, szDescription: «Installed it Services for Outlook 32-bit»
    MSI (s) (54:F8) [10:36:27:787]: the system restore service is disabled. Referred State: 1058. GetLastError() returned: 1058
    MSI (s) (54:F8) [10:36:28:117]: file will have the applied safety of OpCode.
    MSI (s) (54:F8) [10:36:28:147]: STRATEGY of RESTRICTION SOFTWARE: Verifying package--> ' C:\Mimecast Services for Outlook 4.0.411.5287 (32 bit) GPO.msi ' against the software restriction policy
    MSI (s) (54:F8) [10:36:28:147]: STRATEGY of RESTRICTION SOFTWARE: Services C:\Mimecast for Outlook 4.0.411.5287 (32-bit) GPO.msi has a digital signature
    MSI (s) (54:F8) [10:36:28:547]: STRATEGY of RESTRICTION SOFTWARE: C:\Mimecast Services for Outlook 4.0.411.5287 (32-bit) GPO.msi is allowed to run at the level of authorization 'unlimited '.
    MSI (s) (54:F8) [10:36:28:547]: dialogue of end not activated
    MSI (s) (54:F8) [10:36:28:547]: ==> C:\windows\ccmcache\4\Mimecast4.0.msi original packaging
    MSI (s) (54:F8) [10:36:28:547]: we're running out of ==> C:\windows\Installer\14b48052.msi package
    MSI (s) (54:F8) [10:36:28:547]: APPCOMPAT: looking for entry with ProductCode '{C28136F7-F2C7-4426-B26F-F7E03922B34B}' appcompat database
    MSI (s) (54:F8) [10:36:28:547]: APPCOMPAT: no matching ProductCode found in the database.
    MSI (s) (54:F8) [10:36:28:557]: MSCOREE not loaded loading copy from system32
    MSI (s) (54:F8) [10:36:28:557]: value of strategy Machine 'DisablePatch' is 0
    MSI (s) (54:F8) [10:36:28:557]: value of strategy Machine 'AllowLockdownPatch' is 0
    MSI (s) (54:F8) [10:36:28:557]: value of strategy Machine 'DisableLUAPatching' is 0
    MSI (s) (54:F8) [10:36:28:557]: value of strategy Machine 'DisableFlyWeightPatching' is 0
    MSI (s) (54:F8) [10:36:28:557]: APPCOMPAT: looking for entry with ProductCode '{C28136F7-F2C7-4426-B26F-F7E03922B34B}' appcompat database
    MSI (s) (54:F8) [10:36:28:557]: APPCOMPAT: no matching ProductCode found in the database.
    MSI (s) (54:F8) [10:36:28:557]: transformations are not secure.
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: adding MsiLogFileLocation property. Its value is 'C:\install.log.
    MSI (s) (54:F8) [10:36:28:557]: command line: MSIINSTALLPERUSER = 3 CURRENTDIRECTORY = C: \ CLIENTUILEVEL = 2 CLIENTPROCESSID = 3672
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: adding PackageCode property. Its value is '{6C9809C5-9DBC-4683-AE5F-3E05D53939EA} '.
    MSI (s) (54:F8) [10:36:28:557]: Product Code spent in Engine.Initialize: "{C28136F7-F2C7-4426-B26F-F7E03922B34B}".
    MSI (s) (54:F8) [10:36:28:557]: the Product Code of the table of properties before transformations: "{C28136F7-F2C7-4426-B26F-F7E03922B34B}".
    MSI (s) (54:F8) [10:36:28:557]: the Product Code of the table of properties after transformations: "{C28136F7-F2C7-4426-B26F-F7E03922B34B}".
    MSI (s) (54:F8) [10:36:28:557]: unregistered product: first start installation
    MSI (s) (54:F8) [10:36:28:557]: has determined that the existing product (this product or the product being upgraded with a patch) is installed by user.
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: adding MSIINSTALLPERUSER property. Its value is '3'.
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: deleting ALLUSERS property. Its current value is '1 '.
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: deleting MSIINSTALLPERUSER property. Its current value is '3'.
    MSI (s) (54:F8) [10:36:28:557]: product {C28136F7-F2C7-4426-B26F-F7E03922B34B} is assigned admin: LocalSystem has the key to publish.
    MSI (s) (54:F8) [10:36:28:557]: product {C28136F7-F2C7-4426-B26F-F7E03922B34B} is managed.
    MSI (s) (54:F8) [10:36:28:557]: MSI_LUA: invites of credentials not required, the user is an administrator
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: adding ProductState property. Its value is '1 '.
    MSI (s) (54:F8) [10:36:28:557]: entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (54:F8) [10:36:28:557]: source specified is already in a list.
    MSI (s) (54:F8) [10:36:28:557]: value 'SearchOrder' user policy is 'nmu '.
    MSI (s) (54:F8) [10:36:28:557]: adding new sources is allowed.
    MSI (s) (54:F8) [10:36:28:557]: the Package name from the configuration data: "Mimecast4.0.msi."
    MSI (s) (54:F8) [10:36:28:557]: Note: 2 1: 2262: AdminProperties 3:-2147287038
    MSI (s) (54:F8) [10:36:28:557]: Machine policy value 'DisableMsi' is 0
    MSI (s) (54:F8) [10:36:28:557]: value of strategy Machine 'AlwaysInstallElevated' is 0
    MSI (s) (54:F8) [10:36:28:557]: "AlwaysInstallElevated" user policy value is 0
    MSI (s) (54:F8) [10:36:28:557]: product {C28136F7-F2C7-4426-B26F-F7E03922B34B} is assigned admin: LocalSystem has the key to publish.
    MSI (s) (54:F8) [10:36:28:557]: product {C28136F7-F2C7-4426-B26F-F7E03922B34B} is managed.
    MSI (s) (54:F8) [10:36:28:557]: the product '{C28136F7-F2C7-4426-B26F-F7E03922B34B}' is running with elevated privileges: product is affected.
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: adding MSIINSTALLPERUSER property. Its value is '3'.
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: adding CURRENTDIRECTORY property. Its value is "C:\". ».
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: adding CLIENTUILEVEL property. Its value is '2'.
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: adding CLIENTPROCESSID property. Its value is '3672'.
    MSI (s) (54:F8) [10:36:28:557]: value of strategy Machine 'DisableAutomaticApplicationShutdown' is 0
    MSI (s) (54:F8) [10:36:28:567]: PROPERTY CHANGE: adding MsiRestartManagerSessionKey property. Its value is 'b9237eca8dffb44583db9105bf61f283 '.
    MSI (s) (54:F8) [10:36:28:567]: MANAGER of REBOOT: logon.
    MSI (s) (54:F8) [10:36:28:567]: PROPERTY CHANGE: adding MsiSystemRebootPending property. Its value is '1 '.
    MSI (s) (54:F8) [10:36:28:567]: PROPERTY CHANGE: deleting MSIINSTALLPERUSER property. Its current value is '3'.
    MSI (s) (54:F8) [10:36:28:567]: TRANSFORMS property is now:
    MSI (s) (54:F8) [10:36:28:567]: PROPERTY CHANGE: adding PRODUCTLANGUAGE property. Its value is "1033".
    MSI (s) (54:F8) [10:36:28:567]: PROPERTY CHANGE: adding VersionDatabase property. Its value is "200".
    MSI (s) (54:F8) [10:36:28:567]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application data
    MSI (s) (54:F8) [10:36:28:567]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Favorites
    MSI (s) (54:F8) [10:36:28:567]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Network shortcuts
    MSI (s) (54:F8) [10:36:28:567]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Documents
    MSI (s) (54:F8) [10:36:28:567]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Printer shortcuts
    MSI (s) (54:F8) [10:36:28:567]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Recent
    MSI (s) (54:F8) [10:36:28:577]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\SendTo
    MSI (s) (54:F8) [10:36:28:577]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Templates
    MSI (s) (54:F8) [10:36:28:577]: SHELL32::SHGetFolderPath returned: C:\ProgramData
    MSI (s) (54:F8) [10:36:28:577]: SHELL32::SHGetFolderPath returned: C:\Users\tech.support\AppData\Local
    MSI (s) (54:F8) [10:36:28:577]: SHELL32::SHGetFolderPath returned: C:\Users\tech.support\Pictures
    MSI (s) (54:F8) [10:36:28:577]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application Menu\Programs\Administrative of Directors Data\Microsoft\Windows\Start
    MSI (s) (54:F8) [10:36:28:577]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (54:F8) [10:36:28:577]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application start\program Data\Microsoft\Windows\Start
    MSI (s) (54:F8) [10:36:28:587]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Start Menu
    MSI (s) (54:F8) [10:36:28:587]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Desktop
    MSI (s) (54:F8) [10:36:28:587]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative of Directors
    MSI (s) (54:F8) [10:36:28:587]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (54:F8) [10:36:28:587]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start start\program
    MSI (s) (54:F8) [10:36:28:587]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
    MSI (s) (54:F8) [10:36:28:587]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
    MSI (s) (54:F8) [10:36:28:587]: SHELL32::SHGetFolderPath returned: C:\windows\Fonts
    MSI (s) (54:F8) [10:36:28:587]: Note: 1: 2898 2: MS without Serif 3: MS without Serif 4: 0 05:16
    MSI (s) (54:F8) [10:36:28:597]: MSI_LUA: the MsiRunningElevated of the parameter property to 1 because the installation is already running high.
    MSI (s) (54:F8) [10:36:28:597]: PROPERTY CHANGE: adding MsiRunningElevated property. Its value is '1 '.
    MSI (s) (54:F8) [10:36:28:597]: PROPERTY CHANGE: adding privileged property. Its value is '1 '.
    MSI (s) (54:F8) [10:36:28:597]: Note: 1: 1402 2: HKEY_CURRENT_USER Software Microsoft MS Setup (ACME) \User Info 3:2
    MSI (s) (54:F8) [10:36:28:597]: PROPERTY CHANGE: adding USERNAME property. Its value is "Oriel securities user".
    MSI (s) (54:F8) [10:36:28:597]: Note: 1: 1402 2: HKEY_CURRENT_USER Software Microsoft MS Setup (ACME) \User Info 3:2
    MSI (s) (54:F8) [10:36:28:597]: PROPERTY CHANGE: adding COMPANYNAME property. Its value is "Oriel Securities Ltd.".
    MSI (s) (54:F8) [10:36:28:597]: PROPERTY CHANGE: adding a DATABASE property. Its value is 'C:\windows\Installer\14b48052.msi '.
    MSI (s) (54:F8) [10:36:28:597]: PROPERTY CHANGE: adding OriginalDatabase property. Its value is 'C:\windows\ccmcache\4\Mimecast4.0.msi '.
    MSI (s) (54:F8) [10:36:28:597]: value of strategy Machine 'MsiDisableEmbeddedUI' is 0
    MSI (s) (54:F8) [10:36:28:597]: Note: 1: 2205 2:3: Package_correctif
    MSI (s) (54:F8) [10:36:28:597]: policy value 'DisableRollback' Machine is 0
    MSI (s) (54:F8) [10:36:28:597]: strategy user 'DisableRollback' is 0
    MSI (s) (54:F8) [10:36:28:597]: PROPERTY CHANGE: adding UILevel property. Its value is '3'.
    = Logging started: 04/09/2013-10:36:28 =.
    MSI (s) (54:F8) [10:36:28:597]: PROPERTY CHANGE: adding ACTION property. Its value is 'INSTALL '.
    MSI (s) (54:F8) [10:36:28:597]: doing action: INSTALL
    Action start 10:36:28: INSTALL.
    MSI (s) (54:F8) [10:36:28:597]: ExecuteSequence running
    MSI (s) (54:F8) [10:36:28:597]: action driving: FindRelatedProducts
    Action start 10:36:28: FindRelatedProducts.
    MSI (s) (54:F8) [10:36:28:597]: action driving: AppSearch
    Action ended at 10:36:28: FindRelatedProducts. Returns the value 1.
    Action start 10:36:28: AppSearch.
    MSI (s) (54:F8) [10:36:28:597]: Note: 2 1: 2262: Signature 3:-2147287038
    MSI (s) (54:F8) [10:36:28:597]: PROPERTY CHANGE: adding NETFRAMEWORK40FULL property. Its value is '#1 '.
    MSI (s) (54:F8) [10:36:28:597]: Note: 2 1: 2262: Signature 3:-2147287038
    MSI (s) (54:F8) [10:36:28:597]: action driving: OutlookVersionCheck
    Action ended at 10:36:28: AppSearch. Returns the value 1.
    MSI (s) (54:C8) [10:36:28:627]: call for a custom action to distance. DLL: C:\windows\Installer\MSI837D.tmp, point of entry: OutlookVersionCheck
    MSI (s) (54:B8) [10:36:28:627]: generation random cookie.
    MSI (s) (54:B8) [10:36:28:637]: created server custom with PID 4656 (0 x 1230) Action.
    MSI (s) (54:80) [10:36:28:667]: running as a service.
    MSI (s) (54:80) [10:36:28:667]: Hello, I am your 32-bit custom action Server Impersonated.
    Action start 10:36:28: OutlookVersionCheck.
    SFXCA: Extraction of a custom action to the temporary directory: C:\windows\Installer\MSI837D.tmp-\
    SFXCA: Link to the CLR version v4.0.30319
    Call to the custom action CustomAction_OutlookCheck! CustomAction_OutlookCheck.CustomActions.OutlookVersionCheck
    BEGIN OutlookVersionCheck
    OUTLOOK BITNESS IS: x 86
    Key checking: Software\Microsoft\Office\11.0\Outlook
    Key checking: Software\Wow6432Node\Microsoft\Office\11.0\Outlook
    Key checking: Software\Microsoft\Office\12.0\Outlook\InstallRoot
    Key checking: Software\Wow6432Node\Microsoft\Office\12.0\Outlook\InstallRoot
    MSI (s) (54. 68) [10:36:28:827]: PROPERTY CHANGE: adding OUTLOOK_INSTALLED property. Its value is 'TRUE '.
    Key checking: Software\Microsoft\Office\14.0\Outlook\InstallRoot
    Found version: Outlook 2010
    Key checking: Software\Wow6432Node\Microsoft\Office\14.0\Outlook\InstallRoot
    MSI (s) (54. 68) [10:36:28:827]: PROPERTY CHANGE: property to change OUTLOOK_VERSION. Its current value is 'NONE '. Its new value: "Outlook 2010".
    Found version: Outlook 2010
    OUTLOOK_INSTALLED is: TRUE
    IS THE VERSION of OUTLOOK: Outlook 2010
    MSI (s) (54:F8) [10:36:28:830]: action driving: LaunchConditions
    Action ended at 10:36:28: OutlookVersionCheck. Returns the value 1.
    Action start 10:36:28: LaunchConditions.
    MSI (s) (54:F8) [10:38:26:502]: product: service Mimecast for 32-bit Outlook - only by the installation of the machine is allowed. Please make sure that the user has the appropriate rights to do so.

    MSI (c) (58:C0) [10:36:28:850]: established police.  Charset: Req = 0, Ret = 0, fonts: Req = MS Shell Dlg, Ret = MS Shell Dlg

    Installation is allowed only by the machine. Please make sure that the user has the appropriate rights to do so.
    Action ended at 10:38:26: LaunchConditions. Return value 3.
    Action ended at 10:38:26: INSTALL. Return value 3.
    Property (S): UpgradeCode = {586A589B-D6D5-48D3-9B6D-571EF230ED6A}
    Property (S): NETFRAMEWORK40FULL = 1 #.
    Property (S): LAUNCHOUTLOOKONEXIT = 1
    Property (S): WIXUI_INSTALLDIR = INSTALLDIR
    Property (S): OutlookOpen = false
    Property (S): ProgramFilesFolder = C:\Program Files (x 86).
    Property (S): VersionNT = 601
    Property (S): Manufacturer = Mimecast Ltd
    Property (S): ProductCode = {C28136F7-F2C7-4426-B26F-F7E03922B34B}
    Property (S): ProductLanguage = 1033
    Property (S): ProductName = Mimecast Services for 32-bit Outlook
    Property (S): ProductVersion = 4.0.348.5166
    Property (S): ARPPRODUCTICON = MainIcon.exe
    Property (S): ARPHELPLINK = * address email is removed from the privacy *
    Property (S): ARPNOMODIFY = 0
    Property (S): Platform = *.
    Property (S): ROOTDRIVE = C:\\
    Property (S): MsiBitness = x 86
    Property (S): MimecastInstaller = *.
    Property (S): CAP_Common = *.
    Property (S): CAP_Common.Options = *.
    Property (S): CAP_Common.Options.Credentials = *.
    Property (S): CAP_Common.Options.ChangePassword = *.
    Property (S): CAP_Common.Options.Network = *.
    Property (S): CAP_Common.Options.Network.Read = *.
    Property (S): CAP_Common.Options.Network.Update = *.
    Property (S): CAP_Common.Options.Capabilities = *.
    Property (S): CAP_Common.Update.Manual = *.
    Property (S): CAP_Archive = *.
    Property (S): CAP_Archive.Search = *.
    Property (S): CAP_Archive.Search.Quick = *.
    Property (S): CAP_Archive.Search.Basic = *.
    Property (S): CAP_Archive.Search.Builder = *.
    Property (S): CAP_Archive.Search.Context = *.
    Property (S): CAP_Archive.Search.Recent = *.
    Property (S): CAP_Archive.Search.Favourite = *.
    Property (S): CAP_Archive.Search.Manage = *.
    Property (S): CAP_Gateway = *.
    Property (S): CAP_Gateway.Block = *.
    Property (S): CAP_Gateway.Block.Address = *.
    Property (S): CAP_Gateway.Block.Domain = *.
    Property (S): CAP_Gateway.Block.ReportSpam = *.
    Property (S): CAP_Gateway.Block.ManagedSenders = *.
    Property (S): CAP_Gateway.OnHoldItems = *.
    Property (S): CAP_Gateway.OnHoldItems.Personal = *.
    Property (S): CAP_Gateway.OnHoldItems.Moderated = *.
    Property (S): CAP_Gateway.OnHoldItems.Release = *.
    Property (S): CAP_Gateway.OnHoldItems.Block = *.
    Property (S): CAP_Gateway.Track = *.
    Property (S): CAP_Gateway.Transport = *.
    Property (S): CAP_Gateway.Transport.Secure = *.
    Property (S): CAP_Gateway.Transport.CCM = *.
    Property (S): CAP_Gateway.Transport.Stationery = *.
    Property (S): CAP_Gateway.Transport.Stationery.None = *.
    Property (S): CAP_Gateway.Transport.Stationery.Select = *.
    Property (S): CAP_Gateway.Transport.Attachments = *.
    Property (S): CAP_Gateway.Transport.Attachments.Convert = *.
    Property (S): CAP_Gateway.Transport.Attachments.Metadata = *.
    Property (S): CAP_Gateway.Transport.Attachments.StripLink = *.
    Property (S): CAP_Continuity = *.
    Property (S): CAP_Continuity.Mailbox = *.
    Property (S): CAP_Continuity.Mailbox.ReceivedItems = *.
    Property (S): CAP_Continuity.Mailbox.SentItems = *.
    Property (S): CAP_Continuity.Monitor = *.
    Property (S): CAP_Continuity.Monitor.Auto = *.
    Property (S): CAP_Continuity.Monitor.User = *.
    Property (S): CAP_Continuity.Monitor.Admin = *.
    Property (S): CAP_Continuity.Enable = *.
    Property (S): CAP_Continuity.Enable.Auto = *.
    Property (S): CAP_Continuity.Enable.Admin = *.
    Property (S): CAP_Piits = *.
    Property (S): CAP_Piits.Management = *.
    Property (S): CAP_Piits.AutoMount = *.
    Property (S): Global.Service.AccountType = *.
    Property (S): Global.Service.Username = *.
    Property (S): Global.Service.Password = *.
    Property (S): Global.WebProxy.Enable = *.
    Property (S): Global.WebProxy.Type = *.
    Property (S): Global.WebProxy.URL = *.
    Property (S): Global.WebProxy.Username = *.
    Property (S): Global.WebProxy.Password = *.
    Property (S): Global.Settings.IgnoreLocal = *.
    Property (S): Global.AutoUpdate.URL = *.
    Property (S): Global.AutoUpdate.Enable = *.
    Property (S): Global.Logging.LogDirectory = *.
    Property (S): Global.Logging.MaxFileSize = *.
    Property (S): Global.Service.MaxRolls = *.
    Property (S): Global.Logging.Level = *.
    Property (S): Session.Pits.FolderSyncInterval = *.
    Property (S): Global.Piits.MaxMessagesPerFolder = *.
    Property (S): Global.Service.InstallDirectory = *.
    Property (S): Global.Service.DataCacheSize = *.
    Property (S): Session.Continuity.PreDupeDuration = *.
    Property (S): Session.Continuity.PostDupeDuration = *.
    Property (S): Session.Continuity.HardFrequency = *.
    Property (S): Session.Continuity.SoftDuration = *.
    Property (S): Session.Continuity.EndContinuityExchangeAvailable = *.
    Property (S): Session.Continuity.EndContinuityMimecastUnavailable = *.
    Property (S): Global.Feedback.Recipients = *.
    Property (S): DefaultUIFont = *.
    Property (S): MSIRESTARTMANAGERCONTROL = DisableShutdown
    Property (S): REBOOT = ReallySuppress
    Property (S): OUTLOOK_VERSION = Outlook 2010
    Property (S): OUTLOOK_BITNESS = x 86
    Property (S): ErrorDialog = ErrorDlg
    Property (S): SERVICE_DIR = Windows Service Mimecast
    Property (S): SecureCustomProperties = NETFRAMEWORK40FULL; NEWERPRODUCTFOUND; OLDAPPFOUND; PREVIOUSVERSIONSINSTALLED; WIX_DOWNGRADE_DETECTED; WIX_UPGRADE_DETECTED
    Property (S): MsiHiddenProperties = _LicenseAgreed; CAP_Archive; CAP_Archive.search; CAP_Archive.search.Basic; CAP_Archive.search.Builder; CAP_Archive.search.context; CAP_Archive.search.favourite; CAP_Archive.search.manage; CAP_Archive.search.quick; CAP_Archive.search.recent; CAP_Common; CAP_Common.options; CAP_Common.options.capabilities; CAP_Common.options.ChangePassword; CAP_Common.options.credentials; CAP_Common.options.network; CAP_Common.options.network.read; CAP_Common.options.network.Update; CAP_Common.update.manual; CAP_Continuity; CAP_Continuity.enable; CAP_Continuity.enable.admin; CAP_Continuity.enable.Auto; CAP_Continuity.mailbox; CAP_Continuity.mailbox.ReceivedItems; CAP_Continuity.mailbox.SentItems; CAP_Continuity.monitor; CAP_Continuity.monitor.admin; CAP_Continuity.monitor.Auto; CAP_Continuity.monitor.user; CAP_Gateway; CAP_Gateway.block; CAP_Gateway.block.address; CAP_Gateway.block.domain; CAP_Gateway.block.ManagedSenders; CAP_Gateway.block.ReportSpam; CAP_Gateway.OnHoldItems; CAP_Gateway.OnHoldItems.block; CAP_Gateway.OnHoldItems.moderated; CAP_Gateway.OnHoldItems.personal; CAP_Gateway.OnHoldItems.release; CAP_Gateway.track; CAP_Gateway.transport; CAP_Gateway.transport.attachments; CAP_Gateway.transport.attachments.convert; CAP_Gateway.transport.attachments.metadata; CAP_Gateway.transport.attachments.StripLink; CAP_Gateway.transport.CCM; CAP_Gateway.transport.secure; CAP_Gateway.transport.stationery; CAP_Gateway.transport.stationery.None; CAP_Gateway.transport.stationery.Select; CAP_Piits; CAP_Piits.automount; CAP_Piits.Management; DefaultUIFont; Global.AutoUpdate.Enable; Global.AutoUpdate.URL; Global.Feedback.Recipients; Global.Logging.Level; Global.Logging.LogDirectory; Global.Logging.MaxFileSize; Global.Piits.MaxMessagesPerFolder; Global.Service.AccountType; Global.Service.DataCacheSize; Global.Service.InstallDirectory; Global.Service.MaxRolls; Global.Service.Password; Global.Service.Username; Global.Settings.IgnoreLocal; Global.WebProxy.Enable; Global.WebProxy.Password; Global.WebProxy.Type; Global.WebProxy.URL; Global.WebProxy.Username; MimecastInstaller; PLATFORM; Session.Continuity.EndContinuityExchangeAvailable; Session.Continuity.EndContinuityMimecastUnavailable; Session.Continuity.HardFrequency; Session.Continuity.PostDupeDuration; Session.Continuity.PreDupeDuration; Session.Continuity.SoftDuration; Session.Pits.FolderSyncInterval
    Property (S): MsiLogFileLocation = C:\install.log
    Property (S): PackageCode = {6C9809C5-9DBC-4683-AE5F-3E05D53939EA}
    Property (S): ProductState = 1
    Property (S): PRODUCTLANGUAGE = 1033
    Property (S): CURRENTDIRECTORY = C:\
    Property (S): CLIENTUILEVEL = 2
    Property (S): CLIENTPROCESSID = 3672
    Property (S): MsiRestartManagerSessionKey = b9237eca8dffb44583db9105bf61f283
    Property (S): VersionDatabase = 200
    Property (S): MsiSystemRebootPending = 1
    Property (S): VersionMsi = 5.00
    Property (S): VersionNT64 = 601
    Property (S): WindowsBuild = 7601
    Property (S): ServicePackLevel = 1
    Property (S): ServicePackLevelMinor = 0
    Property (S): MsiNTProductType = 1
    Property (S): WindowsFolder = C:\windows\
    Property (S): WindowsVolume = C:\
    Property (S): System64Folder = C:\windows\system32\
    Property (S): SystemFolder = C:\windows\SysWOW64\
    Property (S): RemoteAdminTS = 1
    Property (S): TempFolder = C:\Users\TECH~1.SUP\AppData\Local\Temp\
    Property (S): CommonFilesFolder directory = C:\Program Files (x 86) \Common Files\
    Property (S): ProgramFiles64Folder = C:\Program Files\
    Property (S): CommonFiles64Folder = C:\Program Files\ Files\Fichiers
    Property (S): AppDataFolder = \\gblon-v-fp001\users$\tech.support\Application Data\
    Property (S): FavoritesFolder = \\gblon-v-fp001\users$\tech.support\Favorites\
    Property (S): NetHoodFolder = \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Network Shortcuts\
    Property (S): PersonalFolder = \\gblon-v-fp001\users$\tech.support\Documents\
    Property (S): PrintHoodFolder = \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Printer Shortcuts\
    Property (S): RecentFolder = \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Recent\
    Property (S): SendToFolder = \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\SendTo\
    Property (S): TemplateFolder = \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Templates\
    Property (S): CommonAppDataFolder = C:\ProgramData\
    Property (S): LocalAppDataFolder = C:\Users\tech.support\AppData\Local\
    Property (S): MyPicturesFolder = C:\Users\tech.support\Pictures\
    Property (S): AdminToolsFolder = \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Start administration Tools\
    Property (S): StartupFolder = \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Start demarrer\programmes\demarrage\
    Property (S): ProgramMenuFolder = \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Start Menu\Programs\
    Property (S): StartMenuFolder = \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Start Menu\
    Property (S): DesktopFolder = \\gblon-v-fp001\users$\tech.support\Desktop\
    Property (S): Font = C:\windows\Fonts\
    Property (S): GPTSupport = 1
    Property (S): OLEAdvtSupport = 1
    Property (S): ShellAdvtSupport = 1
    Property (S): MsiAMD64 = 6
    Property (S): Msix64 = 6
    Property (S): Intel = 6
    Property (S): PhysicalMemory = 4027
    Property (S): VirtualMemory = 5339
    Property (S): AdminUser = 1
    Property (S): MsiTrueAdminUser = 1
    Property (S): LogonUser = tech.support
    Property (S): UserSID = S-1-5-21-583907252-2049760794-725345543-5685
    Property (S): UserLanguageID = 2057
    Property (S): ComputerName = OSLLONPC052
    Property (S): SystemLanguageID = 2057
    Property (S): ScreenX = 1024
    Property (S): ScreenY = 768
    Property (S): CaptionHeight = 22
    Property (S): BorderTop = 1
    Property (S): BorderSide = 1
    Property (S): TextHeight = 16
    Property (S): TextInternalLeading = 3
    Property (S): ColorBits = 32
    Property (S): TTCSupport = 1
    Property (S): Time = 10:38:26
    Property (S): Date = 04/09/2013
    Property (S): MsiNetAssemblySupport = 4.0.30319.1
    Property (S): MsiWin32AssemblySupport = 6.1.7601.17514
    Property (S): RedirectedDllSupport = 2
    Property (S): MsiRunningElevated = 1
    Property (S): The privilege = 1
    Property (S): Name of USER = Oriel securities user
    Property (S): COMPANYNAME = Oriel Securities Ltd.
    Property (S): basis of DATA = C:\windows\Installer\14b48052.msi
    Property (S): OriginalDatabase = C:\windows\ccmcache\4\Mimecast4.0.msi
    Property (S): UILevel = 3
    Property (S): ACTION = INSTALL
    Property (S): OUTLOOK_INSTALLED = TRUE
    MSI (s) (54:F8) [10:38:26:532]: see clean files/packages, if there
    MSI (s) (54:F8) [10:38:26:532]: MainEngineThread returned 1603
    MSI (s) (C 54:4) [10:38:26:542]: RESTART MANAGER: closed Session.
    MSI (s) (C 54:4) [10:38:26:542]: sequence number number for this installation system restore.
    = Logging stopped: 04/09/2013-10:38:26 =.
    MSI (s) (C 54:4) [10:38:26:542]: strategy user 'DisableRollback' is 0
    MSI (s) (C 54:4) [10:38:26:542]: policy value 'DisableRollback' Machine is 0
    MSI (s) (C 54:4) [10:38:26:542]: meter is incremented to disable the stop. Counter after increment: 0
    MSI (s) (C 54:4) [10:38:26:542]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3:2
    MSI (s) (C 54:4) [10:38:26:542]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3:2
    MSI (s) (C 54:4) [10:38:26:542]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\InProgress 3:2
    MSI (s) (C 54:4) [10:38:26:542]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\InProgress 3:2
    MSI (s) (C 54:4) [10:38:26:542]: disable the stop against the decrement. If counter > = 0, will be denied the stop.  Counter after decrement:-1
    MSI (s) (C 54:4) [10:38:26:542]: restoration of the environment variables
    MSI (s) (C 54:4) [10:38:26:542]: object to destroy RemoteAPI.
    MSI (s) (54:B8) [10:38:26:542]: end of thread Custom Action Manager.
    MSI (c) (58:88) [10:38:26:542]: disable the stop against the decrement. If counter > = 0, will be denied the stop.  Counter after decrement:-1
    MSI (c) (58:88) [10:38:26:542]: MainEngineThread returned 1603
    = Recording stopped: 04/09/2013-10:38:26 =.

    Appreciate that any direction. Seems that maybe the MSI package might have broken this machine

    Hi Dan,

    This computer is on a domain network?

    I suggest that post you the question in Mimecast forums for more information support:

    Support community-powered Mimecast

    https://community.Mimecast.com/Mimecast

    Hope this information helps.

  • Another user has modified the line containing oracle.jbo.Key primary key

    Hello

    In jdev 12 c

    I have a jsf page in a BTF, and there is a display of master(A:readonly table)-detail(B1:readonly table)-detail(B2:editable form) this page

    The (readonly table) B1 and B2 (editable form) are created on the same data control. There is no other layout compicated or functions on this page.

    The B2 (editable form) was based on a VO whose id is a type of DBSequence, and the new value has been created by a database trigger.

    I put

    All the columns that are updated by a database trigger or a PL/SQL call, are enabled for "Refersh on Insert" (for the case of the insertion) or "Refresh update" (for the case of update) or both in the entity object xml file.

    But when I submit/validate the page (form B2), the error msg 'another user has changed the line containing oracle.jbo.Key primary key' was always held randonly.

    And after the error msg, I can commit the data successfully by press the button validate again.

    How can I solve this problem?

    Thank you.

    The problem is that you use the pl/sql code. It is run out of the box. When a change is made in a row in this way, the framework removes upward, neither knowing that the change was done rightly and throws an error message.

    The code (which I copied from the other thread for reference) intercepts the error and re executs the lock in the case of the specific error.

    /*** customizing locking management:

    * Because attribute values can change 'outside' ADF standard life cycle,

    * when optimistic locking executes, the exception "Another User Changed the Row" is thrown.

    * In this case, we execute locking again, ignoring the exception

    */

    public void lock()

    {

    try

    {

      super.lock();

    } catch (oracle.jbo.RowInconsistentException e)

    {

      if (e.getErrorCode().equals("25014"))

      {

      super.lock();

      }

      else throw e;

    }

    }


    Timo

  • How do you use BER if the value that you want the user to enter is 0?

    I have several TEB on a slide, but the value of input from the user to one of the ETB must be 0.  If the user clicks on the button submit without entering any value in the TEB, which is equal to zero, it will mark it as correct. I tried to set the value of the variable of the ETB 1 and then in the conditional action that I when the variable of the ETB is 0 perform different actions, but I get the same result.  I use 8 Captivate.  Any help would be appreciated!

    Well, I thought that out, but just in case someone already has this problem I'll explain what I did.  I did a tip for the slide action on enter and set the variables TEB 1 requiring the user to enter 0.  So if the user clicks on submit without entering values, the TEBs equal 0 would be marked wrong.

  • How can I validate a form if at least one of the three text fields is selected

    Hi all

    My form has many fields but 3 text fields here that I need to have the Viewer to enter text in a text field before hitting the submit button.

    Don't know how to do in this regard.

    Thank you

    Courier says:

    I can't understand how to ensure at least a field is selected by the Viewer on the three text fields, any thoughts?

    Yes, I played a bit with this idea earlier today, but got distracted by other things.

    What follows is based on the following:

    • There is only one form on the page
    • No validation is involved
    • Each of these fields in the group that needs at least a field has "data-req1" (without the quotes) in its opening tag

    For example, if you have a form like this:

    Add the following just before the closing on the page tag:

    If you try to send the form without find out the name or the email field, you will get an alert dialog box and will refuse to submit the form. But if one or the other or both fields have values, the form will appear.

    In other words, it will work with any number of fields that have "data-req1" in the opening tag. So much that one of these fields has value, submits the form.

  • Forms of CS4, user to enter an e-mail address to send the form to

    Is it possible for a user to complete a line on form in the only part of my website members and then enter an e-mail address to send the form.

    It seems that most forms have a default e-mail address that the form is sent to when the user clicks on the button submit, I would like the user to enter any address email that they like to send information to and the default e-mail address.

    I use windows 7, Dreamweaver CS4 and server pages ASP connection members to the members only section.

    Thanks for any help

    Concerning

    John

    Is it possible for a user to complete a line on form in the only part of my website members and then enter an e-mail address to send the form.

    Sure.

    It seems that most forms have a default e-mail address that the form is sent to when the user clicks on the submit button

    Why do you think so?  This is not the case.

    Just treat the form and use the contents of the field in which the visitor has placed the target address desired (properly purified, of course to avoid problems of electronic fuel injection) as the "to:" address in your call to the mail server.

  • reports / intranet / in detail, the user will enter a date range of and 2 and will be out to put the records in the int

    Hello

    I'm totally green in web development.

    My goal is, to the user will enter a range of dates of and to and will be out to put the records in the intranet when they press a button.

    However, the good news is: I have experience in programming. I wrote in VB desktop applications > NET and I am aware of the RDBMS SQL concepts.
    But CF and WEB development is new to me.

    My current projects involves the DB connection and test it. (it works fine)
    And the output of the reports to an intranet page. (records)

    I need help on how to start this as soon as possible. I'll even do some practice at home.

    Tools, I have to work
    • Development server (test)
    • Place of origin.
    • Toad for db connection.
    • Html reference guide
    • Cf dummies book.

    How can start my projects.
    (e.g. Create cf, outputpage?)
    seriously, I'm new on this.
    Thank you.

    has expired and I lost everything! Thanks for your efforts.
    See. I'm really new to this.
    I wanted to start the practice of home.
    Well, if you find some time

    POP me an email?
    great!
    [email protected]

  • Document pages block for another user has the file open

    Hello

    I'm using Pages 5.6.2

    In our society, we begin using pages for the edition of our records. We use a shared network of synology to quickly access our files. It's a DS-209 + II.

    Now, we had several issues where a user still had a file open and open another file.

    My question: is it possible to have pages or finder or what ever tells me that the file is open by another user?

    I think something like Microsoft Word has set up: "the document is locked for editing by another user.

    Please let me know if there is a way to have this feature in place or to have a sort of work around.

    Thank you very much!

    N ° not a feature of the Pages, or configurable one or the other. The work is to use Word only (a safer bet), or an edit shared management of the users of the document will be closing their documents Pages and exit Pages to release the locks on files - when they are done with the document.

  • Search bar on the Macbook Air doesn't work, will allow me to load the pages of Favorites and links to these pages, but not let me google from the bar or manually enter Web sites, however, it works perfectly on the guest user

    Search bar on the Macbook Air doesn't work, will allow me to load the pages of Favorites and links to these pages, but not let me google from the bar or manually enter Web sites, however, it works perfectly fine on the guest user. Have you tried restarting and it still does not work.

    The problem should be solved now.

    Otherwise:

    OS X

    iOS

    Workaround for problems with the Safari address bar

    http://osxdaily.com/2016/01/05/fix-Safari-freezing-address-bar-use/

  • Detect if the time information dialog box controls user has been activated

    Hello

    I have to make a few changes to my project. I can't edit existing program blocks, so I have to find a way to detect if the user has pressed icon for user dialog box to set up (control type is Time Stamp). I have now, I can compare the current values with the values from the previous loop pass, but this isn't an option.

    I'm looking for some kind of property as active control node or something similar.

    It does not exist.  You can create your own time stamp control (like an XControl), or you can simply watch to see if the window is displayed. You can do the last using VI server functions or you can use the API of the operating system. For Windows, you can use the LabVIEW Windows utilities library.

Maybe you are looking for