if (window.isc == undefined || window.isc.DataSource == undefined){  alert("Can't load DataSources - SmartClient runtime not loaded");}isc.DataSource.create({
    allowAdvancedCriteria:true,
    linkedDataMethods:"getPkid;getPlatform;getRevision;getCreationDate;getName",
    mappedBeanClass:"com.paceap.eden.jpa.main.WrapperBinary",
    mappedEnumClasses:"PLATFORM|com.paceap.eden.jpa.enums.PlatformType",
    ID:"wrapBinaries_DS_HibernateORM",
    dropExtraFields:true,
    fields:[
        {
            name:"PKID",
            type:"integer",
            hiden:"true",
            primaryKey:true
        },
        {
            name:"PLATFORM",
            type:"text",
            canEdit:false
        },
        {
            name:"VERSION",
            type:"text",
            canEdit:false
        },
        {
            name:"REVISION",
            type:"text",
            canEdit:false
        },
        {
            name:"CREATIONDATE",
            type:"date",
            canEdit:false
        },
        {
            name:"NAME",
            type:"text"
        }
    ]
})
