65 lines
2.2 KiB
OpenEdge ABL
65 lines
2.2 KiB
OpenEdge ABL
' ============================================================
|
|
' Module Name: Master_222
|
|
' Module Desc: Z1 master data management (222)
|
|
' Module Methods:
|
|
' - Validate
|
|
' ============================================================
|
|
'
|
|
Public Sub Validate(ws As Worksheet, ByVal rowNum As Long, ByVal lastDataRow As Long)
|
|
|
|
Dim sheetConfDict As Object: Set sheetConfDict = GetSheetConfig()
|
|
Dim sheetConf As Object: Set sheetConf = sheetConfDict(ws.CodeName)
|
|
|
|
Dim startCol As String: startCol = sheetConf("StartCol")
|
|
Dim endCol As String: endCol = sheetConf("EndCol")
|
|
Dim errorCol As String: errorCol = sheetConf("ErrorCol")
|
|
|
|
' clear C~I columns background color
|
|
Dim clearRange As Range: Set clearRange = ws.Range(ws.Cells(rowNum, startCol), ws.Cells(rowNum, endCol))
|
|
clearRange.Interior.Color = vbWhite
|
|
|
|
Dim checkResult As Boolean: checkResult = False
|
|
|
|
' C column check
|
|
checkResult = CheckRequired(ws, rowNum, 3, errorCol)
|
|
If checkResult = False Then Exit Sub
|
|
|
|
checkResult = CheckChar(ws, rowNum, 3, 3, errorCol)
|
|
If checkResult = False Then Exit Sub
|
|
|
|
checkResult = CheckAlphanumeric(ws, rowNum, 3, 3, errorCol)
|
|
If checkResult = False Then Exit Sub
|
|
|
|
checkResult = CheckDuplicate(ws, rowNum, 3, errorCol)
|
|
If checkResult = False Then Exit Sub
|
|
|
|
' D column check
|
|
checkResult = CheckRequired(ws, rowNum, 4, errorCol)
|
|
If checkResult = False Then Exit Sub
|
|
|
|
checkResult = CheckVarcharOver(ws, rowNum, 4, 80, errorCol)
|
|
If checkResult = False Then Exit Sub
|
|
|
|
' E column check
|
|
checkResult = CheckVarcharOver(ws, rowNum, 5, 80, errorCol)
|
|
If checkResult = False Then Exit Sub
|
|
|
|
' F column check
|
|
checkResult = CheckVarcharOver(ws, rowNum, 6, 80, errorCol)
|
|
If checkResult = False Then Exit Sub
|
|
|
|
' G column check
|
|
checkResult = CheckVarcharOver(ws, rowNum, 7, 80, errorCol)
|
|
If checkResult = False Then Exit Sub
|
|
|
|
' H column check
|
|
checkResult = Check01(ws, rowNum, 8, errorCol)
|
|
If checkResult = False Then Exit Sub
|
|
|
|
' I column check
|
|
checkResult = CheckVarcharOver(ws, rowNum, 9, 80, errorCol)
|
|
If checkResult = False Then Exit Sub
|
|
|
|
ws.Cells(rowNum, errorCol).ClearContents
|
|
End Sub
|