public static String formatDoubleColRqstDeleteByNextIdx(
     String separator, Long argNextTenantId, Long argNextId) {
   String retval =
       "<RqstDoubleColDeleteByNextIdx "
           + CFLibXmlUtil.formatOptionalInt64(null, "NextTenantId", argNextTenantId)
           + CFLibXmlUtil.formatOptionalInt64(separator, "NextId", argNextId)
           + " />";
   return (retval);
 }
 public static String formatDoubleColRqstReadByPrevIdx(
     String separator, Long argPrevTenantId, Long argPrevId) {
   String retval =
       "<RqstDoubleColReadByPrevIdx "
           + CFLibXmlUtil.formatOptionalInt64(null, "PrevTenantId", argPrevTenantId)
           + CFLibXmlUtil.formatOptionalInt64(separator, "PrevId", argPrevId)
           + " />";
   return (retval);
 }
 public static String formatPOItemRqstDeleteByVUnitIdx(
     String separator,
     Long argVendorUnitTenantId,
     Long argVendorUnitAccountId,
     Integer argVendorUnitId) {
   String retval =
       "<RqstPOItemDeleteByVUnitIdx "
           + CFLibXmlUtil.formatOptionalInt64(null, "VendorUnitTenantId", argVendorUnitTenantId)
           + CFLibXmlUtil.formatOptionalInt64(
               separator, "VendorUnitAccountId", argVendorUnitAccountId)
           + CFLibXmlUtil.formatOptionalInt32(separator, "VendorUnitId", argVendorUnitId)
           + " />";
   return (retval);
 }
 public static String formatDoubleColRqstDeleteByContPrevIdx(
     String separator, long argTenantId, long argScopeId, Long argPrevId) {
   String retval =
       "<RqstDoubleColDeleteByContPrevIdx "
           + CFLibXmlUtil.formatRequiredInt64(null, "TenantId", argTenantId)
           + CFLibXmlUtil.formatRequiredInt64(separator, "ScopeId", argScopeId)
           + CFLibXmlUtil.formatOptionalInt64(separator, "PrevId", argPrevId)
           + " />";
   return (retval);
 }
 public static String formatPOItemBuffAttributes(String separator, CFAccPOItemBuff buff) {
   String retval =
       CFAccXMsgPOItemMessageFormatter.formatPOItemPKeyAttributes(separator, buff)
           + CFLibXmlUtil.formatRequiredInt32(separator, "Revision", buff.getRequiredRevision())
           + CFLibXmlUtil.formatOptionalUuid(separator, "CreatedBy", buff.getCreatedByUserId())
           + CFLibXmlUtil.formatOptionalTimestamp(separator, "CreatedAt", buff.getCreatedAt())
           + CFLibXmlUtil.formatOptionalUuid(separator, "UpdatedBy", buff.getUpdatedByUserId())
           + CFLibXmlUtil.formatOptionalTimestamp(separator, "UpdatedAt", buff.getUpdatedAt())
           + CFLibXmlUtil.formatRequiredInt64(
               separator, "PurchaseOrderId", buff.getRequiredPurchaseOrderId())
           + CFLibXmlUtil.formatRequiredXmlString(
               separator, "Description", buff.getRequiredDescription())
           + CFLibXmlUtil.formatRequiredNumber(
               separator, "NumOrdered", buff.getRequiredNumOrdered())
           + CFLibXmlUtil.formatOptionalInt64(
               separator, "VendorUnitTenantId", buff.getOptionalVendorUnitTenantId())
           + CFLibXmlUtil.formatOptionalInt64(
               separator, "VendorUnitAccountId", buff.getOptionalVendorUnitAccountId())
           + CFLibXmlUtil.formatOptionalInt32(
               separator, "VendorUnitId", buff.getOptionalVendorUnitId());
   return (retval);
 }