/**
  * Prepare ScalarCondition as lessEqual. <br>
  * {where FOO &lt;= (select max(BAR) from ...)
  *
  * <pre>
  * cb.query().<span style="color: #FD4747">scalar_LessEqual()</span>.max(new SubQuery&lt;ServiceRankCB&gt;() {
  *     public void query(ServiceRankCB subCB) {
  *         subCB.specify().setFoo... <span style="color: #3F7E5E">// derived column for function</span>
  *         subCB.query().setBar...
  *     }
  * });
  * </pre>
  *
  * @return The object to set up a function. (NotNull)
  */
 public HpSSQFunction<ServiceRankCB> scalar_LessEqual() {
   return xcreateSSQFunction(CK_LE.getOperand());
 }
 /**
  * Prepare ScalarCondition as lessEqual. <br>
  * {where FOO &lt;= (select max(BAR) from ...)
  *
  * <pre>
  * cb.query().<span style="color: #FD4747">scalar_LessEqual()</span>.max(new SubQuery&lt;RegionCB&gt;() {
  *     public void query(RegionCB subCB) {
  *         subCB.specify().setFoo... <span style="color: #3F7E5E">// derived column for function</span>
  *         subCB.query().setBar...
  *     }
  * });
  * </pre>
  *
  * @return The object to set up a function. (NotNull)
  */
 public HpSSQFunction<RegionCB> scalar_LessEqual() {
   return xcreateSSQFunction(CK_LE.getOperand());
 }