Purpose: Different options in Liquid UI Table columns
Syntax:Numeric Input:
"numeric":trueRead-Only Column Field:
"readonly":trueUppercase:
"uppercase":trueSearchhelp options- SearchHelp: "searchhelp":
- SearchHelp Selection Name:"shselname1":
- SearchHelp Selection Value: "shselvalue1":
- SearchHelp Name: "shname1":
- SearchHelp Destination: "shdest1":
table([15,1], [25,150], {"name":"z_engr_bomtable", "title":"Create BOM", "rows":10});
// Liquid UI Table Generationcolumn("Item", {"table":"z_engr_bomtable", "name":"item_no", "position":1, "size":4,
"numerical":true});
// Liquid UI Column accepting only Numeric Valuescolumn("Document", {"table":"z_engr_bomtable", "name":"doc_no", "position":2, "size":25,
"searchhelp":"CV01",
"shselname1":"DOKAR",
"shselvalue1":"DES",
"shname1":"DOKAR",
"shdest1":"cell[z_engr_bomtable,Type,row]","uppercase":true});
column("Type", {"table":"z_engr_bomtable", "name":"doc_type", "position":3, "size":3,
"readonly":true});
// Liquid UI Column Read-Onlycolumn("Part", {"table":"z_engr_bomtable", "name":"doc_part", "position":4, "size":3, "searchhelp":"CV01", "fname0":"DOKTL",
"uppercase":true});
// Liquid UI Column changing the input to UPPERCASEcolumn("Version", {"table":"z_engr_bomtable", "name":"doc_version", "position":5, "size":2, "searchhelp":"CV01", "fname0":"DOKVR", "uppercase":true});