Detailed Explanation

For certain external applications the information given by the REST interface referent to the fields is insufficient to be able to order them on screen by their order defined in the application and also about complete information about their type.

Before this patch the information returned looked like this:

{"name":"firstname",
"label":"First Name",
"mandatory":false,
"type":{"name":"string"},
"nullable":true,
"editable":true,
"default":""}

After the patch we get this structure:

{"name":"firstname",
"label":"First Name",
"mandatory":false,
"type":{"name":"string"},
"nullable":true,
"editable":true,
"uitype":"55",
"typeofdata":"V~O",
"sequence":"2",
"block":{
   "blockid":"4",
   "blocksequence":"1",
   "blocklabel":"LBL_CONTACT_INFORMATION",
   "blockname":"Contact Information"
},
"default":""}

Using the coreBOSwsBrowser this change looks like this:

Updates

Table of Contents