{"attrs":"{\"custom-publish-status\":\"publish\",\"custom-publish-time\":\"1757940408820\",\"custom-expires\":\"0\",\"custom-slug\":\"\"}","title":"MC_冯亚星_总结笔记","editorDom":"
学习小记
根据客户或计划的需求日期,依据产品BOM(物料清单)分解出所需物料种类、数量及要求到货日期,查询现有库存,待验和已下出的PR,PO,判断可用资源,找出缺料的的部分,根据MOQ以及L/T倒推,下PR的日期和数量,以产品的仓储成本和价格对相关物料进行排程or只控制交期,同步给到采购知会供应商,持续跟踪交货状态,能否能达到交期,如不能达成交期,协调生管能否调整开工日,无法处理则上报,物料到货后,由IQC(来料质量控制)进行质量检验。
日常关注各各工单生产计划MPS,缺料情况
按ECN变更方式处理换料消化旧料
提报重点欠料表在OP欠料中上报追踪
每周二,周四,下午四点开会处理OP重点欠料表
注意事项
大料排程,小料追交期
提前7天外加厂商L&T
每周二做一个月后的排程
日期最好在 1 ,3, 5日
注意避开节假日
港车周二,周四
海外物料报关注意香港节假日
MS ACCESS学习
尝试用Excel复刻
Excel版
MS_shujuku 0214_week1 - 複製.xlsx·
问题:BOM表过大EXCEL无法运算,若BOM有6000行,按数据库60列,四张表,每次计算和打开需计算140万行数据,excel无法搞定如此大的计算。
替代方案
access数据库开源替代产品 LibreOffice Base(待验证,需资管帮忙安装应用)
该数据库的设计逻辑
资料表两表
材料的BOM表,
主建料号,材料料号,用量
\"image\"
FORECAST
主建料号,LIC ,需求计划的日期
\"image\"
查询三表
无BOM,链接两表,查询BOM表中是否有FORECAST中的主键料号
\"image\"
\"image\"
表MS塑料件,
链接两表,主键料号,LIC,材料号,需求计划的日期x用量xLIC,为总计做预处理,因为有些料是共用的
\"image\"
\"image\"
表MS塑料件总计
材料料号,需求计划的日期的材料用量,主要是对材料料号进行一个分组计数
\"image\"
\"image\"
​\t​
SAP操作_三表单查询学习
ONE_
YPPW1610 工单缺料表查询
在SAP主面左上角窗口输入 YPPW1610 指令,进入工单缺料表,
厂别Plant:1301
选择以元件筛选
在Component 中输入物料号
\"image\"
读出工单缺料表(主要看当前材料,多个工单下的累计欠料,以及工单的开工日期)
导出成excel,
\"image\"
用VBA去除“小计"行
VBA代码
VBA
Sub DeleteSubtotalRows()\n ' Declare variables\n Dim ws As Worksheet\n Dim rng As Range\n Dim cell As Range\n Dim lastRow As Long\n Dim i As Long\n Dim deleteCount As Integer\n Dim colToCheck As Integer ' Column number to check (1 for column A, 2 for column B, etc.)\n\n On Error GoTo ErrorHandler\n Application.ScreenUpdating = False ' Turn off screen updating for faster execution\n Application.Calculation = xlCalculationManual ' Set calculation to manual mode\n\n ' Set the worksheet to operate on (default is active sheet)\n Set ws = ActiveSheet\n \n ' Set the column to check (Column A = 1)\n colToCheck = 1\n \n ' Find the last row in the worksheet\n lastRow = ws.Cells(ws.Rows.Count, colToCheck).End(xlUp).Row\n \n deleteCount = 0 ' Initialize counter\n \n ' Loop from last row to first row (to avoid affecting loop when deleting rows)\n For i = lastRow To 1 Step -1\n ' Check if cell contains "小計"\n If InStr(1, ws.Cells(i, colToCheck).Value, "小計") > 0 Then\n ' Delete entire row\n ws.Rows(i).Delete\n deleteCount = deleteCount + 1\n End If\n Next i\n\n Application.ScreenUpdating = True ' Restore screen updating\n Application.Calculation = xlCalculationAutomatic ' Restore automatic calculation\n \n ' Display processing result\n MsgBox "Process completed! Deleted " & deleteCount & " rows containing '小計'.", vbInformation, "Completed"\n \n Exit Sub\n\nErrorHandler:\n Application.ScreenUpdating = True\n Application.Calculation = xlCalculationAutomatic\n MsgBox "Error occurred: " & Err.Description, vbCritical, "Error"\nEnd Sub\n
TWO_
ZPP006 料号供需明细
在SAP主面左上角窗口输入 ZPP006 指令,进入料号供需明细
RMA Location 3140
厂别Plant:1301
Material ; 料号
\"image\"
读出料号供需明细表(主要看库存,待验,PO, PR, ATP结余)
\"image\"
THREE_
ZQM003 进料查询
Plant 厂别 1301
Material Number:料号
选定收料时间
\"image\"
读出進料查詢表(主要看何種材料在何時收貨)
\"image\"
Excel
Vlookup学习
常用表格
\"image\"
从sap导出的 料号供需明细表,工单缺料表,ACESS导出的需求表,,以及MPS,获取庫存 待驗 需求 PO PR 天数 MOQ 结余量,缺料工单开工日期,日产能
\"image\"
"}