Rocket Uniface Support Resources

 View Only

Rocket Uniface 10.4.01-016 Released

  Thread closed by the administrator, not accepting new replies.
  • 1.  Rocket Uniface 10.4.01-016 Released

    ROCKETEER
    Posted 04-28-2022 03:46
    No replies, thread closed.

    Downloads

    Product availability Matrix (PAM)
    Downloads of this patch are available from the Rocket Customer Support Portal.
    Further explanation can be found here.

    New Feature(s)

    License activation Support link is corrected to bring you to our Rocket Community website.

    Fixes

    UNI-28199Service Instance not implicitly deleted anymore since patch 007 when calling the EXEC operation
    UNI-27720Executing $ude from component that is started with ide.exe /bat /tst throws error
    UNI-6636Property Inspector labels inconsistent for presentation of component and frames
    UNI-2142SQL proc statement on Oracle: field names for small fields truncated



    UNI-28199  -  Service Instance not implicitly deleted anymore since patch 007 when calling the EXEC operation

    Solution available in patch(es):      10.3.03-016, 10.4.01-016

    Description:

    Calling the EXEC operation of a service component should implicitly delete the instance once the operation is finished (even if it only contains a 'return(0)'). This is not the case anymore since the (version 10.3.03 and 10.4.01) patch 007. The service instance will remain active and needs to be explicitly deleted.

    Environment:

    + Uniface version: 10.3.03.007
    + Platforms: ALL

    Workaround:

    None.

    Notes:

    This problem is solved.

    Back to top



    UNI-27720  -  Executing $ude from component that is started with ide.exe /bat /tst throws error

    Solution available in patch(es):      10.3.03-016, 10.4.01-016

    Description:

    Executing $ude multiple times from a component that is started by the IDE test mode in batch mode (ide.exe /bat /tst ...) will cause an error.

    Environment:

    + Uniface version: 10.x
    + Platform: ALL

    Workaround:

    Do not use this combination of /bat /tst.

    Notes:

    This problem is solved.

    Back to top



    UNI-6636  -  Property Inspector labels inconsistent for presentation of component and frames

    Solution available in patch(es):      10.3.03-016, 10.4.01-016

    Description:

    The presentation properties of a component and frames (such as e.g. entities, fields, ...) are labelled inconsistently in the Property Inspector.
    
    On component level the Property Inspector shows the properties: Top, Left, Height, Width.
    For frame types it shows the properties : X-Position, Y-Position, X-size, Y-size.

    Environment:

    + Uniface Version : 10.x
    + Operating System : ALL

    Workaround:

    None.

    Notes:

    This problem is solved.

    Back to top



    UNI-2142  -  SQL proc statement on Oracle: field names for small fields truncated

    Solution available in patch(es):      10.3.03-016, 10.4.01-016

    Description:

    The field names for small fields are truncated in the output of the sql/print and sql/data/fieldname ProcScript statement when using Oracle. The truncation depends on the field size in characters and the used character set ($def_charset).
    
    Example:
    CREATE TABLE "EDATA"(
    "PK" CHAR(3),
    "C1A4567890123456" CHAR(1),
    "C2A4567890123456" CHAR(2),
    "C4A4567890123456" CHAR(4),
    "C8A4567890123456" CHAR(8),
    "C16A567890123456" CHAR(16),
    CONSTRAINT "EDATAP1" PRIMARY KEY(
    "PK" ))
    /
    
    sql/data/fieldname "select * from edata","ORA"
    
    will give for $def_charset=CP1252
    
    PK!;C!;C2!;C4A4!;C8A45678!;C16A567890123456
    
    and for $DEF_CHARSET=UTF8
    
    PK!;C1A4!;C2A456!;C4A4567890!;C8A4567890123456!;C16A567890123456
    
    sql/print shows the same truncation for field names.
    
    When using SQLite or SQL Server (MSS) then this problem does not occur.

    Environment:

    + Uniface Version : 10.x
    + Operating System : ALL
    + Database : Oracle

    Workaround:

    None.

    Notes:

    This problem is solved.

    Back to top