"/>
|
|
|
<%
if (fld1 != null) {
String value1 = null;
try {
value1 = SLAState.getSlsValue1();
}
catch (FieldNotInitializedException fnie) {
}
FieldBean fld = dictionary.getFieldByID(fld1);
String display = null;
String fldDisplayLabel = null;
try {
fldDisplayLabel = fld.getFldDisplayLabel();
}
catch (FieldNotInitializedException fnie) {
}
String fldDisplay = null;
try {
fldDisplay = fld.getFldDisplay();
}
catch (FieldNotInitializedException fnie) {
}
if (fldDisplayLabel != null)
display = Utils.getMessage(session, fldDisplayLabel, false, true, fldDisplay);
else
display = fldDisplay;
String refDisp = null;
if (value1 != null)
refDisp = (String)dictionary.getRefDisp(fld.getFldSql(), value1);
%> <%= Utils.formatToWeb(display, false) %> : <%= value1 != null ? Utils.formatToWeb(refDisp, false) : " "%>
<% }
%><%
if (fld2 != null) {
String value1 = null;
try {
value1 = SLAState.getSlsValue2();
}
catch (FieldNotInitializedException fnie) {
}
FieldBean fld = dictionary.getFieldByID(fld2);
String display = null;
String fldDisplayLabel = null;
try {
fldDisplayLabel = fld.getFldDisplayLabel();
}
catch (FieldNotInitializedException fnie) {
}
String fldDisplay = null;
try {
fldDisplay = fld.getFldDisplay();
}
catch (FieldNotInitializedException fnie) {
}
if (fldDisplayLabel != null)
display = Utils.getMessage(session, fldDisplayLabel, false, true, fldDisplay);
else
display = fldDisplay;
String refDisp = null;
if (value1 != null)
refDisp = (String)dictionary.getRefDisp(fld.getFldSql(), value1);
%> <%= Utils.formatToWeb(display, false) %> : <%= value1 != null ? Utils.formatToWeb(refDisp, false) : " "%>
<% }
%><%
if (fld3 != null) {
String value1 = null;
try {
value1 = SLAState.getSlsValue3();
}
catch (FieldNotInitializedException fnie) {
}
FieldBean fld = dictionary.getFieldByID(fld3);
String display = null;
String fldDisplayLabel = null;
try {
fldDisplayLabel = fld.getFldDisplayLabel();
}
catch (FieldNotInitializedException fnie) {
}
String fldDisplay = null;
try {
fldDisplay = fld.getFldDisplay();
}
catch (FieldNotInitializedException fnie) {
}
if (fldDisplayLabel != null)
display = Utils.getMessage(session, fldDisplayLabel, false, true, fldDisplay);
else
display = fldDisplay;
String refDisp = null;
if (value1 != null)
refDisp = (String)dictionary.getRefDisp(fld.getFldSql(), value1);
%> <%= Utils.formatToWeb(display, false) %> : <%= value1 != null ? Utils.formatToWeb(refDisp, false) : " "%>
<% }
%> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|